diff --git a/LANGUAGE.md b/LANGUAGE.md index b068053..3a53ec7 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -27,7 +27,7 @@ roadmap and milestone history. - exact-width integers, concrete pointer-sized `isize` / `usize`, `f32`, `f64`, `bool`, `void`, and `anyopaque`; contextual `int` accepts the whole integer family, while `uint` accepts only unsigned native and target-classified C integers - target-dependent C scalar primitives from `c_char` through `c_longdouble`, kept semantically distinct from native scalars -- contextual integer/float/character literals, backward type-demand inference through names and arithmetic, and compile-time folding for numeric constant expressions +- contextual integer/float/character literals, backward type-demand inference through names and arithmetic/bitwise expressions, and typed compile-time evaluation for numeric constant expressions - strict numeric conversion by default, widening where valid, C scalar coercions at C boundaries, and explicit scalar keyword casts such as `i32(x)` / `c_float(x)` - compile-time `minval!(T)` and `maxval!(T)` bounds for concrete native and C integer scalar types - arrays `[N]T`, inferred-count arrays `[_]T`, sentinel arrays `[N;S]T`, compile-time expression array counts, slices `[]T` / `[;S]T`, single-item pointers `@T`, many-item pointers `*T`, and sentinel many-item pointers `[*;S]T` @@ -90,7 +90,8 @@ fields. `_` is not a keyword member name. ### expressions and control flow - checked integer `+ - *`, unary `-`, float-only `/`, IEEE float arithmetic, comparisons, `!`, `and`, and `or` -- assignments and compound assignments `+= -= *= /=` with single evaluation of complex lvalues; `/=` is float-only +- Zig-style integer bitwise complement `~`, binary `&`, `|`, `xor`, shifts `<<` / `>>`, and saturating left shift `<<|`; postfix `^` remains pointer dereference +- assignments and compound assignments `+= -= *= /= &= |= xor= <<= >>= <<|=` with single evaluation of complex lvalues; `/=` is float-only and `xor=` is contiguous - field access through struct values and pointers, index/slice bounds contextually coerced to `usize`, and unsigned narrower index support - boolean `if` / `else if` / `else` and `for` loops with braceless single-statement bodies when the preceding expression is parenthesized or a function call - `while` loops with optional post-iteration update clauses @@ -103,6 +104,34 @@ fields. `_` is not a keyword member name. - fallible `try`, fallback `catch`, and `catch |e| { ... }` handler blocks - direct `return match ...` and `yield match ...` value-control-flow operands +#### bitwise operations + +Bitwise operands must be concrete integers. `~` preserves its operand type. `&`, `xor`, and `|` +use the ordinary common-integer widening rules; incompatible fixed integer families remain errors. +Shifts preserve the left operand type and require a concrete unsigned count. `>>` is arithmetic for +signed integers and logical for unsigned integers. + +Ordinary `<<` and `>>` reject compile-time-known counts at least as large as the left type's bit +width and trap for such runtime counts. `<<` discards shifted-out bits. Saturating `<<|` permits any +unsigned count: zero remains zero, unsigned nonzero values clamp to the type maximum, and signed +values clamp to the minimum or maximum according to their sign. + +Binary precedence, from tightest to loosest, is: + +```text +* / ++ - +<< >> <<| +& xor | +== != < > <= >= +and +or +``` + +Each level is left-associative. Because `|` also delimits `if` and `for` captures, a bitwise-OR +header expression must be parenthesized before a capture list, for example +`if (flags | mask) |value| { ... }`. + #### division Compiler intrinsics use direct unqualified `name!(...)` syntax. The `!` marks the call as an diff --git a/README.md b/README.md index 7948eb3..a707353 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,8 @@ Current prototype features: - Arrays, sentinel arrays, single-item pointers, many-item pointers, sentinel many-item pointers, slices, sentinel slices, strings, character literals, optionals, and native structs - String literals as immutable pointers to static zero-terminated byte arrays - Pointer-preserving `.ptr`/`.len`, pointer-to-array indexing and slicing, postfix pointer dereference and optional unwrap, and keyed struct literals -- Contextual integer constants and compile-time folding of addition and unary negation trees +- Contextual integer constants and typed compile-time evaluation of arithmetic and Zig-style bitwise expressions +- Integer `~`, `&`, `|`, `xor`, guarded `<<` / `>>`, saturating `<<|`, and their compound assignments; postfix `^` remains pointer dereference - Directory packages with merged declarations and file-local relative imports - Relative C header imports as synthetic package namespaces - Plain imported C structs/unions, fixed arrays, and C function pointer typedefs, including keyed literals, field access, callbacks, and Apple Silicon by-value ABI lowering diff --git a/compiler/ast/ast.odin b/compiler/ast/ast.odin index d96e914..a6ccada 100644 --- a/compiler/ast/ast.odin +++ b/compiler/ast/ast.odin @@ -97,10 +97,17 @@ Expr_Kind :: enum u8 { Comptime, Negate, Not, + Bit_Not, Add, Sub, Mul, Div, + Bit_And, + Bit_Or, + Bit_Xor, + Shift_Left, + Shift_Right, + Shift_Left_Saturating, Eq, Ne, Lt, @@ -165,6 +172,12 @@ Assignment_Op :: enum u8 { Sub, Mul, Div, + Bit_And, + Bit_Or, + Bit_Xor, + Shift_Left, + Shift_Right, + Shift_Left_Saturating, } Stmt :: struct { @@ -184,7 +197,7 @@ Stmt :: struct { error_only: bool, // Assignments store the lvalue in `target`, the right-hand side in `expr`, // and the source operator in `assignment_op`. `Set` is ordinary `=`; - // the arithmetic variants are `+=`, `-=`, `*=`, and `/=`. + // the remaining variants preserve their corresponding compound operator. assignment_op: Assignment_Op, target: Expr_Id, expr: Expr_Id, diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index 609e859..c0dcedb 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -372,7 +372,7 @@ block_reads_name :: proc(checker: ^Checker, statements: []ast.Stmt_Id, name: sym case .Call, .Array, .Struct_Literal, .Slice: append(&expr_stack, ..expr.args) append(&expr_stack, expr.left) - case .Negate, .Not, .Address, .Deref, .Field, .Unwrap, .Try, .Keyed, .Enum_Literal, .Cast: + case .Negate, .Not, .Bit_Not, .Address, .Deref, .Field, .Unwrap, .Try, .Keyed, .Enum_Literal, .Cast: append(&expr_stack, expr.left) case .Comptime: append(&expr_stack, expr.left) @@ -380,7 +380,8 @@ block_reads_name :: proc(checker: ^Checker, statements: []ast.Stmt_Id, name: sym case .Catch: append(&expr_stack, expr.left, expr.right) append(&statement_stack, ..expr.body) - case .Add, .Sub, .Mul, .Div, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: + case .Add, .Sub, .Mul, .Div, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, + .Shift_Left_Saturating, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: append(&expr_stack, expr.left, expr.right) case .Invalid, .Integer, .Float, .String, .Bool, .None, .Undefined, .Inference_Hole, .Type, .Name, .Function_Literal, .Anonymous_Struct_Type: @@ -1243,6 +1244,23 @@ is_numeric_constant_expr :: proc(checker: ^Checker, expr_id: ast.Expr_Id) -> boo return eval_constant(checker, expr_id).kind == .Value || is_float_constant_expr(checker, expr_id) } +is_typed_integer_fold_candidate :: proc(checker: ^Checker, expr_id: ast.Expr_Id, depth := 0) -> bool { + if depth > 64 || expr_id == ast.INVALID_EXPR || int(expr_id) >= len(checker.ast_module.exprs) { + return false + } + expr := checker.ast_module.exprs[expr_id] + #partial switch expr.kind { + case .Integer: + return true + case .Negate, .Bit_Not, .Cast: + return is_typed_integer_fold_candidate(checker, expr.left, depth+1) + case .Add, .Sub, .Mul, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, .Shift_Left_Saturating: + return is_typed_integer_fold_candidate(checker, expr.left, depth+1) && + is_typed_integer_fold_candidate(checker, expr.right, depth+1) + } + return false +} + is_numeric_demand :: proc(value: types.Type, selected := target.DEFAULT) -> bool { return types.is_concrete_scalar(value) && !types.is_bool(value) || types.is_float(value, selected) @@ -3249,7 +3267,7 @@ mark_expr_imports_used :: proc(checker: ^Checker, expr_id: ast.Expr_Id, file: as if expr.left != ast.INVALID_EXPR { append(&stack, expr.left) } - case .Negate, .Not, .Address, .Deref, .Field, .Unwrap, .Try, .Keyed, .Enum_Literal, .Cast: + case .Negate, .Not, .Bit_Not, .Address, .Deref, .Field, .Unwrap, .Try, .Keyed, .Enum_Literal, .Cast: append(&stack, expr.left) case .Comptime: if expr.left != ast.INVALID_EXPR { @@ -3268,7 +3286,8 @@ mark_expr_imports_used :: proc(checker: ^Checker, expr_id: ast.Expr_Id, file: as function := checker.ast_module.functions[function_id] mark_block_imports_used(checker, function.body, function.file) } - case .Add, .Sub, .Mul, .Div, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: + case .Add, .Sub, .Mul, .Div, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, + .Shift_Left_Saturating, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: append(&stack, expr.left, expr.right) case .Invalid, .Integer, .Float, .String, .Bool, .None, .Undefined, .Inference_Hole, .Type, .Name, .Anonymous_Struct_Type: } @@ -4290,6 +4309,29 @@ infer_compound_expr :: proc( case .Not: _ = infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types) return types.BOOL + case .Bit_Not: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + operand := infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, hint) + return operand if types.is_concrete_integer(operand) else types.INVALID + case .Bit_And, .Bit_Or, .Bit_Xor: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + left_const := is_numeric_constant_expr(checker, expr.left) + right_const := is_numeric_constant_expr(checker, expr.right) + left, right := types.INVALID, types.INVALID + if left_const && !right_const && !types.is_valid(hint) { + right = infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types) + left = infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, right) + } else { + left = infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, hint) + right = infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types, hint if types.is_valid(hint) else left) + } + result := types.widest(left, right) + return result if types.is_concrete_integer(result) else types.INVALID + case .Shift_Left, .Shift_Right, .Shift_Left_Saturating: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + left := infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, hint) + right := infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types, types.U64) + return left if types.is_concrete_integer(left) && types.is_unsigned(right, checker.target) else types.INVALID case .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or: _ = infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types) _ = infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types) @@ -4599,7 +4641,8 @@ infer_expr :: proc( _ = pop(&stack) case .String, .Array, .None, .Undefined, .Address, .Deref, .Index, .Slice, .Field, .Unwrap, .Orelse, .Try, .Catch, .Struct_Literal, .Keyed, .Enum_Literal, .Cast, - .Comptime, .Bool, .Not, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: + .Comptime, .Bool, .Not, .Bit_Not, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, + .Shift_Right, .Shift_Left_Saturating, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: last = infer_compound_expr(checker, expr, locals, pkg, file, demanded, local_types, frame.expected) _ = pop(&stack) case .Function_Literal: @@ -7758,6 +7801,88 @@ build_compound_expr :: proc( kind=.Not, span=expr.span, type=types.BOOL, left=operand, target=hir.INVALID_REF, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) + case .Bit_Not: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + operand := build_nested_expr(checker, expr.left, locals, global_reads, calls, hint, pkg, file) + if invalid, propagated := propagate_invalid_expr(checker, expr.span, operand); propagated { + return invalid + } + operand_type := checker.module.exprs[operand].type + if !types.is_concrete_integer(operand_type) { + id := source.add(checker.diagnostics, expr.span, "'~' requires a concrete integer operand") + return invalid_hir_expr(checker, expr.span, id, operand_type) + } + return add_hir_expr(checker, hir.Expr{ + kind=.Bit_Not, span=expr.span, type=operand_type, left=operand, + target=hir.INVALID_REF, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, + }) + case .Bit_And, .Bit_Or, .Bit_Xor: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + left_const := is_numeric_constant_expr(checker, expr.left) + right_const := is_numeric_constant_expr(checker, expr.right) + left, right: hir.Expr_Id + if left_const && !right_const && !types.is_valid(hint) { + right = build_nested_expr(checker, expr.right, locals, global_reads, calls, types.INVALID, pkg, file) + left = build_nested_expr(checker, expr.left, locals, global_reads, calls, checker.module.exprs[right].type, pkg, file) + } else { + left = build_nested_expr(checker, expr.left, locals, global_reads, calls, hint, pkg, file) + right_hint := hint if types.is_valid(hint) else checker.module.exprs[left].type + right = build_nested_expr(checker, expr.right, locals, global_reads, calls, right_hint, pkg, file) + } + if invalid, propagated := propagate_invalid_expr(checker, expr.span, left, right); propagated { + return invalid + } + result_type := types.widest(checker.module.exprs[left].type, checker.module.exprs[right].type) + if !types.is_concrete_integer(result_type) { + id := source.add(checker.diagnostics, expr.span, "bitwise operation requires compatible concrete integer operands") + return invalid_hir_expr(checker, expr.span, id) + } + left = coerce_expr(checker, left, result_type, checker.module.exprs[left].span) + right = coerce_expr(checker, right, result_type, checker.module.exprs[right].span) + kind := hir.Expr_Kind.Bit_And + #partial switch expr.kind { + case .Bit_Or: kind = .Bit_Or + case .Bit_Xor: kind = .Bit_Xor + } + return add_hir_expr(checker, hir.Expr{ + kind=kind, span=expr.span, type=result_type, left=left, right=right, + target=hir.INVALID_REF, diagnostic=source.INVALID_DIAGNOSTIC, + }) + case .Shift_Left, .Shift_Right, .Shift_Left_Saturating: + hint := expected if types.is_concrete_integer(expected) else types.INVALID + left := build_nested_expr(checker, expr.left, locals, global_reads, calls, hint, pkg, file) + right := build_nested_expr(checker, expr.right, locals, global_reads, calls, types.U64, pkg, file) + if invalid, propagated := propagate_invalid_expr(checker, expr.span, left, right); propagated { + return invalid + } + left_type := checker.module.exprs[left].type + right_type := checker.module.exprs[right].type + if !types.is_concrete_integer(left_type) { + id := source.add(checker.diagnostics, checker.module.exprs[left].span, "shifted value must be a concrete integer") + return invalid_hir_expr(checker, expr.span, id, left_type) + } + if !types.is_unsigned(right_type, checker.target) { + id := source.add(checker.diagnostics, checker.module.exprs[right].span, "shift count must be an unsigned integer") + return invalid_hir_expr(checker, expr.span, id, left_type) + } + if constant := eval_integer_constant_in_context(checker, expr.right, pkg, file); + constant.kind == .Value && expr.kind != .Shift_Left_Saturating && + constant.value >= i128(types.bits(left_type, checker.target)) { + id := source.addf( + checker.diagnostics, checker.module.exprs[right].span, + "shift count %d exceeds %s width", constant.value, types.name(left_type), + ) + return invalid_hir_expr(checker, expr.span, id, left_type) + } + kind := hir.Expr_Kind.Shift_Left + #partial switch expr.kind { + case .Shift_Right: kind = .Shift_Right + case .Shift_Left_Saturating: kind = .Shift_Left_Saturating + } + return add_hir_expr(checker, hir.Expr{ + kind=kind, span=expr.span, type=left_type, left=left, right=right, + target=hir.INVALID_REF, diagnostic=source.INVALID_DIAGNOSTIC, + }) case .And, .Or: left := build_nested_expr(checker, expr.left, locals, global_reads, calls, types.BOOL, pkg, file) right := build_nested_expr(checker, expr.right, locals, global_reads, calls, types.BOOL, pkg, file) @@ -8096,6 +8221,14 @@ build_expr :: proc( continue } } + if expr.kind == .Bit_Not || expr.kind == .Bit_And || expr.kind == .Bit_Or || expr.kind == .Bit_Xor || + expr.kind == .Shift_Left || expr.kind == .Shift_Right || expr.kind == .Shift_Left_Saturating { + if folded, ok := try_fold_typed_integer_expr(checker, frame.expr, frame.expected, pkg, file); ok { + last = folded + _ = pop(&stack) + continue + } + } constant := Constant{} _, static_name := current_static_binding(checker, expr.name) if expr.kind != .Name || symbol.is_valid(expr.qualifier) || !static_name { @@ -8109,7 +8242,8 @@ build_expr :: proc( switch expr.kind { case .String, .Array, .None, .Undefined, .Address, .Deref, .Index, .Slice, .Field, .Unwrap, .Orelse, .Try, .Catch, .Struct_Literal, .Keyed, - .Bool, .Cast, .Comptime, .Not, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range, + .Bool, .Cast, .Comptime, .Not, .Bit_Not, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, + .Shift_Right, .Shift_Left_Saturating, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range, .Enum_Literal: last = build_compound_expr( checker, expr, locals, global_reads, calls, frame.expected, pkg, file, @@ -9792,6 +9926,10 @@ build_block :: proc( rhs_expected := target_type if types.is_many_pointer(target_type, &checker.module.types) { rhs_expected = types.USIZE if statement.assignment_op == .Add else types.INVALID + } else if statement.assignment_op == .Shift_Left || + statement.assignment_op == .Shift_Right || + statement.assignment_op == .Shift_Left_Saturating { + rhs_expected = types.U64 } value = build_expr( checker, statement.expr, ctx.locals^[:], ctx.global_reads, ctx.calls, @@ -9824,10 +9962,42 @@ build_block :: proc( case .Sub: assignment_op = .Sub case .Mul: assignment_op = .Mul case .Div: assignment_op = .Div + case .Bit_And: assignment_op = .Bit_And + case .Bit_Or: assignment_op = .Bit_Or + case .Bit_Xor: assignment_op = .Bit_Xor + case .Shift_Left: assignment_op = .Shift_Left + case .Shift_Right: assignment_op = .Shift_Right + case .Shift_Left_Saturating: assignment_op = .Shift_Left_Saturating } rhs_type := checker.module.exprs[value].type + is_shift := statement.assignment_op == .Shift_Left || + statement.assignment_op == .Shift_Right || + statement.assignment_op == .Shift_Left_Saturating + is_bitwise := statement.assignment_op == .Bit_And || + statement.assignment_op == .Bit_Or || + statement.assignment_op == .Bit_Xor result_type := types.widest(target_type, rhs_type) - if statement.assignment_op == .Div && types.is_concrete_integer(result_type) { + if is_shift { + if !types.is_concrete_integer(target_type) || !types.is_unsigned(rhs_type, checker.target) { + id := source.add(checker.diagnostics, statement.span, "shift assignment requires an integer target and unsigned integer count") + value = invalid_hir_expr(checker, statement.span, id, target_type) + } else if constant := eval_integer_constant_in_context(checker, statement.expr, ctx.pkg, ctx.file); + constant.kind == .Value && statement.assignment_op != .Shift_Left_Saturating && + constant.value >= i128(types.bits(target_type, checker.target)) { + id := source.addf( + checker.diagnostics, statement.span, + "shift count %d exceeds %s width", constant.value, types.name(target_type), + ) + value = invalid_hir_expr(checker, statement.span, id, target_type) + } + } else if is_bitwise { + if !types.is_concrete_integer(result_type) { + id := source.add(checker.diagnostics, statement.span, "bitwise assignment requires compatible concrete integer operands") + value = invalid_hir_expr(checker, statement.span, id, target_type) + } else { + value = coerce_expr(checker, value, target_type, statement.span) + } + } else if statement.assignment_op == .Div && types.is_concrete_integer(result_type) { id := source.add( checker.diagnostics, statement.span, diff --git a/compiler/checker/comptime.odin b/compiler/checker/comptime.odin index 8f68f26..22e96e4 100644 --- a/compiler/checker/comptime.odin +++ b/compiler/checker/comptime.odin @@ -1270,14 +1270,18 @@ ct_eval_expr :: proc( return ct_add_value(state, Ct_Value{ kind=.Range, type=types.range(store, child_type), start=start, count=2, active=i64(expr.integer), }), ct_flow(.Normal), true - case .Negate, .Not: + case .Negate, .Not, .Bit_Not: value, flow, ok := ct_eval_expr(state, expr.left, expected, depth+1) if !ok || flow.kind != .Normal { return INVALID_CT_VALUE, flow, ok } return ct_eval_unary(state, expr.kind, value, expr.span) - case .Add, .Sub, .Mul, .Div, .Eq, .Ne, .Lt, .Le, .Gt, .Ge: + case .Add, .Sub, .Mul, .Div, .Bit_And, .Bit_Or, .Bit_Xor, .Eq, .Ne, .Lt, .Le, .Gt, .Ge: left_expected := expected if expr.kind == .Div && types.is_float(expected, checker.target) else types.INVALID + if (expr.kind == .Bit_And || expr.kind == .Bit_Or || expr.kind == .Bit_Xor) && + types.is_concrete_integer(expected) { + left_expected = expected + } left, flow, ok := ct_eval_expr(state, expr.left, left_expected, depth+1) if !ok || flow.kind != .Normal { return INVALID_CT_VALUE, flow, ok @@ -1287,6 +1291,16 @@ ct_eval_expr :: proc( return INVALID_CT_VALUE, right_flow, right_ok } return ct_eval_binary(state, expr.kind, left, right, expr.span) + case .Shift_Left, .Shift_Right, .Shift_Left_Saturating: + left, flow, ok := ct_eval_expr(state, expr.left, expected, depth+1) + if !ok || flow.kind != .Normal { + return INVALID_CT_VALUE, flow, ok + } + right, right_flow, right_ok := ct_eval_expr(state, expr.right, types.U64, depth+1) + if !right_ok || right_flow.kind != .Normal { + return INVALID_CT_VALUE, right_flow, right_ok + } + return ct_eval_binary(state, expr.kind, left, right, expr.span) case .And, .Or: left, flow, ok := ct_eval_expr(state, expr.left, types.BOOL, depth+1) if !ok || flow.kind != .Normal { @@ -2033,6 +2047,19 @@ ct_unwrap_optional :: proc(state: ^Ct_State, id: Ct_Value_Id, span: source.Span) return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "postfix '?' requires an optional") } +ct_normalize_integer :: proc(state: ^Ct_State, value: i128, type: types.Type) -> i128 { + bits := types.bits(type, state.checker.target) + mask := (i128(1) << u32(bits))-1 + raw := value & mask + if types.is_signed(type, state.checker.target) { + sign := i128(1) << u32(bits-1) + if raw & sign != 0 { + return raw-(i128(1) << u32(bits)) + } + } + return raw +} + ct_eval_unary :: proc(state: ^Ct_State, op: ast.Expr_Kind, id: Ct_Value_Id, span: source.Span) -> (Ct_Value_Id, Ct_Flow, bool) { if id == INVALID_CT_VALUE || int(id) >= len(state.values) { return INVALID_CT_VALUE, ct_flow(.Normal), false @@ -2044,6 +2071,13 @@ ct_eval_unary :: proc(state: ^Ct_State, op: ast.Expr_Kind, id: Ct_Value_Id, span } return ct_add_value(state, Ct_Value{kind=.Bool, type=types.BOOL, integer=1 if value.integer == 0 else 0}), ct_flow(.Normal), true } + if op == .Bit_Not { + if value.kind != .Integer || !types.is_concrete_integer(value.type) { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "'~' requires a concrete integer operand") + } + value.integer = ct_normalize_integer(state, ~value.integer, value.type) + return ct_add_value(state, value), ct_flow(.Normal), true + } if value.kind == .Integer { result, overflow := intrinsics.overflow_sub(i128(0), value.integer) if overflow { @@ -2125,6 +2159,62 @@ ct_eval_binary :: proc(state: ^Ct_State, op: ast.Expr_Kind, left_id, right_id: C "integer '/' is not allowed; use divtrunc!, divfloor!, divexact!, or divceil!", ) } + if op == .Bit_And || op == .Bit_Or || op == .Bit_Xor { + result_type := types.widest(left.type, right.type) + if !types.is_concrete_integer(result_type) { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "bitwise operation requires compatible concrete integer operands") + } + value := left.integer & right.integer + #partial switch op { + case .Bit_Or: value = left.integer | right.integer + case .Bit_Xor: value = left.integer ~ right.integer + } + value = ct_normalize_integer(state, value, result_type) + return ct_add_value(state, Ct_Value{kind=.Integer, type=result_type, integer=value}), ct_flow(.Normal), true + } + if op == .Shift_Left || op == .Shift_Right || op == .Shift_Left_Saturating { + if !types.is_concrete_integer(left.type) || !types.is_unsigned(right.type, state.checker.target) || right.integer < 0 { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "shift requires a concrete integer value and unsigned integer count") + } + bits := types.bits(left.type, state.checker.target) + if right.integer >= i128(bits) { + if op != .Shift_Left_Saturating { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "shift count exceeds integer width") + } + endpoint := i128(0) + if left.integer != 0 { + if types.is_signed(left.type, state.checker.target) { + endpoint = -(i128(1) << u32(bits-1)) if left.integer < 0 else (i128(1) << u32(bits-1))-1 + } else { + endpoint = (i128(1) << u32(bits))-1 + } + } + return ct_add_value(state, Ct_Value{kind=.Integer, type=left.type, integer=endpoint}), ct_flow(.Normal), true + } + count := u32(right.integer) + if op == .Shift_Right { + value := left.integer >> count + if !types.is_signed(left.type, state.checker.target) { + value = ct_normalize_integer(state, left.integer, left.type) >> count + } + return ct_add_value(state, Ct_Value{kind=.Integer, type=left.type, integer=value}), ct_flow(.Normal), true + } + if op == .Shift_Left_Saturating { + factor := i128(1) << count + value := left.integer*factor + if types.is_signed(left.type, state.checker.target) { + minimum := -(i128(1) << u32(bits-1)) + maximum := (i128(1) << u32(bits-1))-1 + value = max(minimum, min(maximum, value)) + } else { + maximum := (i128(1) << u32(bits))-1 + value = min(maximum, ct_normalize_integer(state, left.integer, left.type)*factor) + } + return ct_add_value(state, Ct_Value{kind=.Integer, type=left.type, integer=value}), ct_flow(.Normal), true + } + value := ct_normalize_integer(state, ct_normalize_integer(state, left.integer, left.type) << count, left.type) + return ct_add_value(state, Ct_Value{kind=.Integer, type=left.type, integer=value}), ct_flow(.Normal), true + } value: i128 overflow := false #partial switch op { @@ -3478,7 +3568,12 @@ ct_exec_assignment :: proc(state: ^Ct_State, statement: ast.Stmt, depth: int) -> flow = ct_flow(.Normal) } } else { - value, flow, ok = ct_eval_expr(state, statement.expr, expected, depth+1) + value_expected := expected + if statement.assignment_op == .Shift_Left || statement.assignment_op == .Shift_Right || + statement.assignment_op == .Shift_Left_Saturating { + value_expected = types.U64 + } + value, flow, ok = ct_eval_expr(state, statement.expr, value_expected, depth+1) } if !ok || flow.kind != .Normal { return flow, ok @@ -3493,6 +3588,12 @@ ct_exec_assignment :: proc(state: ^Ct_State, statement: ast.Stmt, depth: int) -> case .Sub: op = .Sub case .Mul: op = .Mul case .Div: op = .Div + case .Bit_And: op = .Bit_And + case .Bit_Or: op = .Bit_Or + case .Bit_Xor: op = .Bit_Xor + case .Shift_Left: op = .Shift_Left + case .Shift_Right: op = .Shift_Right + case .Shift_Left_Saturating: op = .Shift_Left_Saturating case: op = .Add } bin_flow: Ct_Flow @@ -4046,6 +4147,26 @@ eval_integer_constant_in_context :: proc( return Constant{kind=.Value, value=integer} } +try_fold_typed_integer_expr :: proc( + checker: ^Checker, + expr_id: ast.Expr_Id, + expected: types.Type, + pkg: ast.Package_Id, + file: ast.File_Id, +) -> (hir.Expr_Id, bool) { + if !is_typed_integer_fold_candidate(checker, expr_id) { + return hir.INVALID_EXPR, false + } + state := ct_state_make(checker, pkg, file, diagnose=false) + defer ct_state_destroy(&state) + value, flow, ok := ct_eval_expr(&state, expr_id, expected) + if !ok || flow.kind != .Normal || value == INVALID_CT_VALUE || int(value) >= len(state.values) || + state.values[value].kind != .Integer { + return hir.INVALID_EXPR, false + } + return ct_materialize_value(&state, value, checker.ast_module.exprs[expr_id].span, expected), true +} + eval_comptime_statements :: proc( checker: ^Checker, statements: []ast.Stmt_Id, diff --git a/compiler/hir/hir.odin b/compiler/hir/hir.odin index 1f1038e..7bcf481 100644 --- a/compiler/hir/hir.odin +++ b/compiler/hir/hir.odin @@ -110,6 +110,7 @@ Expr_Kind :: enum u8 { Decay_Array_Pointer, Negate, Not, + Bit_Not, Add, Sub, Mul, @@ -121,6 +122,12 @@ Expr_Kind :: enum u8 { Rem, Mod, Pointer_Add, + Bit_And, + Bit_Or, + Bit_Xor, + Shift_Left, + Shift_Right, + Shift_Left_Saturating, Eq, Ne, Lt, @@ -192,6 +199,12 @@ Assignment_Op :: enum u8 { Mul, Div, Pointer_Add, + Bit_And, + Bit_Or, + Bit_Xor, + Shift_Left, + Shift_Right, + Shift_Left_Saturating, } Stmt :: struct { @@ -206,7 +219,7 @@ Stmt :: struct { expr: Expr_Id, iterator_type: types.Type, pointer_capture: bool, - // Assignments carry their operation explicitly. Arithmetic operations lower + // Assignments carry their operation explicitly. Compound operations lower // by computing the target address once, loading its current value, applying // the operation to `expr`, and storing through the original address. assignment_op: Assignment_Op, diff --git a/compiler/ir/ir.odin b/compiler/ir/ir.odin index 6ac7ef4..fa7f9a0 100644 --- a/compiler/ir/ir.odin +++ b/compiler/ir/ir.odin @@ -117,6 +117,13 @@ Opcode :: enum u8 { Mod_Checked, Pointer_Add, Not, + Bit_Not, + Bit_And, + Bit_Or, + Bit_Xor, + Shift_Left, + Shift_Right, + Shift_Left_Saturating, Compare, Label, Br, diff --git a/compiler/lexer/lexer.odin b/compiler/lexer/lexer.odin index 6339d93..4ebea30 100644 --- a/compiler/lexer/lexer.odin +++ b/compiler/lexer/lexer.odin @@ -35,6 +35,7 @@ keyword_kind :: proc(text: string) -> token.Kind { case "orelse": return .Keyword_Orelse case "and": return .Keyword_And case "or": return .Keyword_Or + case "xor": return .Keyword_Xor case "if": return .Keyword_If case "while": return .Keyword_While case "for": return .Keyword_For @@ -156,7 +157,23 @@ lex :: proc( case '<': start := cursor cursor += 1 - if cursor < len(bytes) && bytes[cursor] == '=' { + if cursor < len(bytes) && bytes[cursor] == '<' { + cursor += 1 + if cursor < len(bytes) && bytes[cursor] == '|' { + cursor += 1 + if cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + append_token(&stream, source_file, .Less_Less_Pipe_Equal, start, cursor) + } else { + append_token(&stream, source_file, .Less_Less_Pipe, start, cursor) + } + } else if cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + append_token(&stream, source_file, .Less_Less_Equal, start, cursor) + } else { + append_token(&stream, source_file, .Less_Less, start, cursor) + } + } else if cursor < len(bytes) && bytes[cursor] == '=' { cursor += 1 append_token(&stream, source_file, .Less_Equal, start, cursor) } else { @@ -165,7 +182,15 @@ lex :: proc( case '>': start := cursor cursor += 1 - if cursor < len(bytes) && bytes[cursor] == '=' { + if cursor < len(bytes) && bytes[cursor] == '>' { + cursor += 1 + if cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + append_token(&stream, source_file, .Greater_Greater_Equal, start, cursor) + } else { + append_token(&stream, source_file, .Greater_Greater, start, cursor) + } + } else if cursor < len(bytes) && bytes[cursor] == '=' { cursor += 1 append_token(&stream, source_file, .Greater_Equal, start, cursor) } else { @@ -231,11 +256,20 @@ lex :: proc( append_token(&stream, source_file, .Slash, start, cursor) } case '&': - append_token(&stream, source_file, .Ampersand, cursor, cursor+1) + start := cursor cursor += 1 + if cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + append_token(&stream, source_file, .Ampersand_Equal, start, cursor) + } else { + append_token(&stream, source_file, .Ampersand, start, cursor) + } case '^': append_token(&stream, source_file, .Caret, cursor, cursor+1) cursor += 1 + case '~': + append_token(&stream, source_file, .Tilde, cursor, cursor+1) + cursor += 1 case '?': append_token(&stream, source_file, .Question, cursor, cursor+1) cursor += 1 @@ -261,8 +295,14 @@ lex :: proc( append_token(&stream, source_file, .Comma, cursor, cursor+1) cursor += 1 case '|': - append_token(&stream, source_file, .Pipe, cursor, cursor+1) + start := cursor cursor += 1 + if cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + append_token(&stream, source_file, .Pipe_Equal, start, cursor) + } else { + append_token(&stream, source_file, .Pipe, start, cursor) + } case '"': start := cursor cursor += 1 @@ -370,6 +410,10 @@ lex :: proc( } text := source_file.text[start:cursor] kind := keyword_kind(text) + if kind == .Keyword_Xor && cursor < len(bytes) && bytes[cursor] == '=' { + cursor += 1 + kind = .Xor_Equal + } id := symbol.INVALID if kind == .Identifier || kind == .Underscore { id = symbol.intern(symbols, text) diff --git a/compiler/llvm/llvm.odin b/compiler/llvm/llvm.odin index 06cee92..047832f 100644 --- a/compiler/llvm/llvm.odin +++ b/compiler/llvm/llvm.odin @@ -260,7 +260,8 @@ valid_value :: proc( .Neg_Checked, .Add_Checked, .Sub_Checked, .Mul_Checked, .Div_Checked, .Div_Trunc_Checked, .Div_Floor_Checked, .Div_Exact_Checked, .Div_Ceil_Checked, .Rem_Checked, .Mod_Checked, - .Pointer_Add, .Not, .Compare, .Call: + .Pointer_Add, .Not, .Bit_Not, .Bit_And, .Bit_Or, .Bit_Xor, + .Shift_Left, .Shift_Right, .Shift_Left_Saturating, .Compare, .Call: return true case .Address_Global, .Alloca, .Index_Address, .Field_Address, .Orelse_Begin, .Store, .Fill, .Trap, .Label, .Br, .Cond_Br, .Return, .Return_Void: @@ -814,6 +815,94 @@ emit_division_builtin :: proc( } } +emit_shift :: proc( + emitter: ^Emitter, + instructions: []ir.Instruction, + instruction_index: int, + instruction: ir.Instruction, +) { + count_type := types.INVALID + if valid_instruction(instructions, instruction.b) { + count_type = instructions[instruction.b].type + } + if !types.is_concrete_integer(instruction.type) || + !valid_value(instructions, instruction.a, instruction.type, &emitter.module.types) || + !types.is_concrete_integer(count_type) || !types.is_unsigned(count_type, emitter.module.target) || + !valid_value(instructions, instruction.b, count_type, &emitter.module.types) { + emit_recovery_value(emitter, instruction_index, instruction, "invalid shift operands") + return + } + type_name := llvm_type(instruction.type, &emitter.module.types) + bits := types.bits(instruction.type, emitter.module.target) + count_bits := types.bits(count_type, emitter.module.target) + if count_bits < 64 { + fmt.sbprintf(&emitter.builder, " %%shift_count64_%d = zext %s ", instruction_index, llvm_type(count_type, &emitter.module.types)) + write_operand(&emitter.builder, instructions, instruction.b, count_type, &emitter.module.types) + strings.write_string(&emitter.builder, " to i64\n") + } else { + fmt.sbprintf(&emitter.builder, " %%shift_count64_%d = select i1 true, i64 ", instruction_index) + write_operand(&emitter.builder, instructions, instruction.b, count_type, &emitter.module.types) + strings.write_string(&emitter.builder, ", i64 0\n") + } + fmt.sbprintf(&emitter.builder, " %%shift_in_range%d = icmp ult i64 %%shift_count64_%d, %d\n", instruction_index, instruction_index, bits) + + if instruction.op != .Shift_Left_Saturating { + fmt.sbprintf( + &emitter.builder, + " br i1 %%shift_in_range%d, label %%shift_continue%d, label %%shift_trap%d\nshift_trap%d:\n", + instruction_index, instruction_index, instruction_index, instruction_index, + ) + message := diagnostic_message(emitter, source.INVALID_DIAGNOSTIC, instruction.span, "shift count exceeds integer width") + emit_trap_call(emitter, message) + fmt.sbprintf(&emitter.builder, " unreachable\nshift_continue%d:\n", instruction_index) + if bits < 64 { + fmt.sbprintf(&emitter.builder, " %%shift_count%d = trunc i64 %%shift_count64_%d to %s\n", instruction_index, instruction_index, type_name) + } + operation := "shl" + if instruction.op == .Shift_Right { + operation = "ashr" if types.is_signed(instruction.type, emitter.module.target) else "lshr" + } + fmt.sbprintf(&emitter.builder, " %%v%d = %s %s ", instruction_index, operation, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + if bits < 64 { + fmt.sbprintf(&emitter.builder, ", %%shift_count%d\n", instruction_index) + } else { + fmt.sbprintf(&emitter.builder, ", %%shift_count64_%d\n", instruction_index) + } + return + } + + // LLVM's saturating shift intrinsics produce poison for oversized counts. + // Select zero before narrowing, then explicitly select the Zig endpoint. + fmt.sbprintf(&emitter.builder, " %%shift_safe64_%d = select i1 %%shift_in_range%d, i64 %%shift_count64_%d, i64 0\n", instruction_index, instruction_index, instruction_index) + if bits < 64 { + fmt.sbprintf(&emitter.builder, " %%shift_safe%d = trunc i64 %%shift_safe64_%d to %s\n", instruction_index, instruction_index, type_name) + } + signed := types.is_signed(instruction.type, emitter.module.target) + intrinsic := "sshl" if signed else "ushl" + fmt.sbprintf(&emitter.builder, " %%shift_saturated%d = call %s @llvm.%s.sat.%s(%s ", instruction_index, type_name, intrinsic, type_name, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + if bits < 64 { + fmt.sbprintf(&emitter.builder, ", %s %%shift_safe%d)\n", type_name, instruction_index) + } else { + fmt.sbprintf(&emitter.builder, ", i64 %%shift_safe64_%d)\n", instruction_index) + } + fmt.sbprintf(&emitter.builder, " %%shift_nonzero%d = icmp ne %s ", instruction_index, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + strings.write_string(&emitter.builder, ", 0\n") + if signed { + minimum := -(i128(1) << u32(bits-1)) + maximum := (i128(1) << u32(bits-1))-1 + fmt.sbprintf(&emitter.builder, " %%shift_negative%d = icmp slt %s ", instruction_index, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + fmt.sbprintf(&emitter.builder, ", 0\n %%shift_nonzero_endpoint%d = select i1 %%shift_negative%d, %s %d, %s %d\n", instruction_index, instruction_index, type_name, minimum, type_name, maximum) + fmt.sbprintf(&emitter.builder, " %%shift_endpoint%d = select i1 %%shift_nonzero%d, %s %%shift_nonzero_endpoint%d, %s 0\n", instruction_index, instruction_index, type_name, instruction_index, type_name) + } else { + fmt.sbprintf(&emitter.builder, " %%shift_endpoint%d = select i1 %%shift_nonzero%d, %s -1, %s 0\n", instruction_index, instruction_index, type_name, type_name) + } + fmt.sbprintf(&emitter.builder, " %%v%d = select i1 %%shift_in_range%d, %s %%shift_saturated%d, %s %%shift_endpoint%d\n", instruction_index, instruction_index, type_name, instruction_index, type_name, instruction_index) +} + emit_instruction_stream :: proc( emitter: ^Emitter, instructions: []ir.Instruction, @@ -1818,6 +1907,36 @@ emit_instruction_stream :: proc( fmt.sbprintf(&emitter.builder, " %%v%d = getelementptr %s, ptr %%v%d, i64 ", instruction_index, llvm_type(result_item.child, &emitter.module.types), instruction.a) write_operand(&emitter.builder, instructions, instruction.b, types.USIZE, &emitter.module.types) strings.write_string(&emitter.builder, "\n") + case .Bit_Not: + if !types.is_concrete_integer(instruction.type) || + !valid_value(instructions, instruction.a, instruction.type, &emitter.module.types) { + emit_recovery_value(emitter, instruction_index, instruction, "invalid bitwise complement operand") + continue + } + type_name := llvm_type(instruction.type, &emitter.module.types) + fmt.sbprintf(&emitter.builder, " %%v%d = xor %s ", instruction_index, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + strings.write_string(&emitter.builder, ", -1\n") + case .Bit_And, .Bit_Or, .Bit_Xor: + if !types.is_concrete_integer(instruction.type) || + !valid_value(instructions, instruction.a, instruction.type, &emitter.module.types) || + !valid_value(instructions, instruction.b, instruction.type, &emitter.module.types) { + emit_recovery_value(emitter, instruction_index, instruction, "invalid bitwise operands") + continue + } + operation := "and" + #partial switch instruction.op { + case .Bit_Or: operation = "or" + case .Bit_Xor: operation = "xor" + } + type_name := llvm_type(instruction.type, &emitter.module.types) + fmt.sbprintf(&emitter.builder, " %%v%d = %s %s ", instruction_index, operation, type_name) + write_operand(&emitter.builder, instructions, instruction.a, instruction.type, &emitter.module.types) + strings.write_string(&emitter.builder, ", ") + write_operand(&emitter.builder, instructions, instruction.b, instruction.type, &emitter.module.types) + strings.write_string(&emitter.builder, "\n") + case .Shift_Left, .Shift_Right, .Shift_Left_Saturating: + emit_shift(emitter, instructions, instruction_index, instruction) case .Call: function_id := ir.as_function(instruction.target) if function_id == ir.INVALID_FUNCTION { @@ -2488,6 +2607,8 @@ emit_declarations :: proc(emitter: ^Emitter) { strings.write_string(&emitter.builder, ".with.overflow.i") fmt.sbprintf(&emitter.builder, "%d(i%d, i%d)\n", bits, bits, bits) } + fmt.sbprintf(&emitter.builder, "declare i%d @llvm.sshl.sat.i%d(i%d, i%d)\n", bits, bits, bits, bits) + fmt.sbprintf(&emitter.builder, "declare i%d @llvm.ushl.sat.i%d(i%d, i%d)\n", bits, bits, bits, bits) } strings.write_string( &emitter.builder, diff --git a/compiler/lower/lower.odin b/compiler/lower/lower.odin index fead20b..8c70044 100644 --- a/compiler/lower/lower.odin +++ b/compiler/lower/lower.odin @@ -720,11 +720,12 @@ lower_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instruction_Id { case .Widen, .Sum_Widen, .C_Coerce, .C_Vararg_Promote, .Retype, .Scalar_Cast, .Pointer_Cast, .Weaken_Pointer, .Weaken_Slice, .Decay_Array_Pointer: stack[frame_index].stage = 1 append(&stack, Lower_Expr_Frame{expr=expr.left}) - case .Negate: + case .Negate, .Bit_Not: stack[frame_index].stage = 5 append(&stack, Lower_Expr_Frame{expr=expr.left}) case .Add, .Sub, .Mul, .Div, .Div_Trunc, .Div_Floor, .Div_Exact, .Div_Ceil, - .Rem, .Mod, .Pointer_Add: + .Rem, .Mod, .Pointer_Add, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, + .Shift_Right, .Shift_Left_Saturating: stack[frame_index].stage = 2 append(&stack, Lower_Expr_Frame{expr=expr.left}) case .Call: @@ -762,8 +763,12 @@ lower_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instruction_Id { continue } if frame.stage == 5 { + op := ir.Opcode.Neg_Checked + if expr.kind == .Bit_Not { + op = .Bit_Not + } last = append_instruction(state, ir.Instruction{ - op=.Neg_Checked, span=expr.span, type=expr.type, target=ir.INVALID_REF, + op=op, span=expr.span, type=expr.type, target=ir.INVALID_REF, a=last, b=ir.INVALID_INSTRUCTION, diagnostic=source.INVALID_DIAGNOSTIC, }) _ = pop(&stack) @@ -810,6 +815,12 @@ lower_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instruction_Id { case .Rem: op = .Rem_Checked case .Mod: op = .Mod_Checked case .Pointer_Add: op = .Pointer_Add + case .Bit_And: op = .Bit_And + case .Bit_Or: op = .Bit_Or + case .Bit_Xor: op = .Bit_Xor + case .Shift_Left: op = .Shift_Left + case .Shift_Right: op = .Shift_Right + case .Shift_Left_Saturating: op = .Shift_Left_Saturating } last = append_instruction(state, ir.Instruction{ op=op, @@ -916,6 +927,12 @@ lower_statements :: proc(state: ^State, statements: []hir.Stmt_Id) { case .Mul: op = .Mul_Checked case .Div: op = .Div_Checked case .Pointer_Add: op = .Pointer_Add + case .Bit_And: op = .Bit_And + case .Bit_Or: op = .Bit_Or + case .Bit_Xor: op = .Bit_Xor + case .Shift_Left: op = .Shift_Left + case .Shift_Right: op = .Shift_Right + case .Shift_Left_Saturating: op = .Shift_Left_Saturating } value := append_instruction(state, ir.Instruction{ op=op, span=statement.span, type=target_type, diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index f7550f1..c1b5383 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -26,6 +26,9 @@ Parser :: struct { // struct literal. Nested `(`/`[`/call-arg contexts (delimiter_depth > 0) still // allow struct literals. no_struct_literal: bool, + // At the top level of if/for headers, `|` begins captures. Bitwise OR in + // those headers remains available inside parentheses. + capture_pipe: bool, hidden_names: [dynamic]symbol.Id, } @@ -1105,10 +1108,14 @@ infix_binding_power :: proc(kind: token.Kind) -> (left, right: int, ok: bool) { return 6, 7, true case .Equal_Equal, .Bang_Equal, .Less, .Less_Equal, .Greater, .Greater_Equal: return 8, 9, true - case .Plus, .Minus: + case .Ampersand, .Keyword_Xor, .Pipe: return 10, 11, true - case .Star, .Slash: + case .Less_Less, .Greater_Greater, .Less_Less_Pipe: return 12, 13, true + case .Plus, .Minus: + return 14, 15, true + case .Star, .Slash: + return 16, 17, true } return 0, 0, false } @@ -1126,6 +1133,12 @@ infix_expr_kind :: proc(kind: token.Kind) -> ast.Expr_Kind { case .Less_Equal: return .Le case .Greater: return .Gt case .Greater_Equal: return .Ge + case .Ampersand: return .Bit_And + case .Pipe: return .Bit_Or + case .Keyword_Xor: return .Bit_Xor + case .Less_Less: return .Shift_Left + case .Greater_Greater: return .Shift_Right + case .Less_Less_Pipe: return .Shift_Left_Saturating case .Plus: return .Add case .Minus: return .Sub case .Star: return .Mul @@ -1140,6 +1153,12 @@ compound_assignment_op :: proc(kind: token.Kind) -> (ast.Assignment_Op, bool) { case .Minus_Equal: return .Sub, true case .Star_Equal: return .Mul, true case .Slash_Equal: return .Div, true + case .Ampersand_Equal: return .Bit_And, true + case .Pipe_Equal: return .Bit_Or, true + case .Xor_Equal: return .Bit_Xor, true + case .Less_Less_Equal: return .Shift_Left, true + case .Greater_Greater_Equal: return .Shift_Right, true + case .Less_Less_Pipe_Equal: return .Shift_Left_Saturating, true } return .Set, false } @@ -1158,7 +1177,7 @@ is_simple_range_bound :: proc(expr: ast.Expr) -> bool { prefix_binding_power :: proc(kind: token.Kind) -> (right: int, ok: bool) { #partial switch kind { - case .Minus, .Ampersand, .Bang, .Dollar, .Keyword_Try: + case .Minus, .Ampersand, .Bang, .Tilde, .Dollar, .Keyword_Try: return 20, true } return 0, false @@ -1196,6 +1215,7 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int #partial switch operator.kind { case .Ampersand: prefix_kind = .Address case .Bang: prefix_kind = .Not + case .Tilde: prefix_kind = .Bit_Not case .Dollar: prefix_kind = .Comptime case .Keyword_Try: prefix_kind = .Try } @@ -1352,6 +1372,9 @@ parse_expression_bp :: proc(parser: ^Parser, minimum_binding_power, nesting: int }) continue } + if parser.capture_pipe && parser.delimiter_depth == 0 && current(parser).kind == .Pipe { + break + } left_power, right_power, ok := infix_binding_power(current(parser).kind) if ok && (current(parser).kind == .Range || current(parser).kind == .Range_Inclusive) && parser.range_disabled > 0 { @@ -2031,7 +2054,10 @@ parse_if :: proc(parser: ^Parser) -> ast.Stmt_Id { skip_newlines(parser) saved := parser.no_struct_literal parser.no_struct_literal = true + saved_capture_pipe := parser.capture_pipe + parser.capture_pipe = true condition := parse_expression(parser) + parser.capture_pipe = saved_capture_pipe parser.no_struct_literal = saved captures: [dynamic]symbol.Id captures.allocator = parser.module.allocator @@ -2060,7 +2086,10 @@ parse_if :: proc(parser: ^Parser) -> ast.Stmt_Id { } else { saved = parser.no_struct_literal parser.no_struct_literal = true + saved_capture_pipe = parser.capture_pipe + parser.capture_pipe = true guard = parse_expression(parser) + parser.capture_pipe = saved_capture_pipe parser.no_struct_literal = saved } } @@ -2166,6 +2195,8 @@ parse_match_arm :: proc(parser: ^Parser) -> ast.Stmt_Id { } else if _, is_else := allow(parser, .Keyword_Else); !is_else { saved := parser.no_struct_literal parser.no_struct_literal = true + saved_capture_pipe := parser.capture_pipe + parser.capture_pipe = true append(&patterns, parse_expression(parser)) for { if _, ok := allow(parser, .Comma); !ok { @@ -2174,6 +2205,7 @@ parse_match_arm :: proc(parser: ^Parser) -> ast.Stmt_Id { skip_newlines(parser) append(&patterns, parse_expression(parser)) } + parser.capture_pipe = saved_capture_pipe parser.no_struct_literal = saved if _, ok := allow(parser, .Pipe); ok { if _, at_ok := allow(parser, .At); at_ok { @@ -2324,7 +2356,10 @@ parse_for :: proc(parser: ^Parser) -> ast.Stmt_Id { skip_newlines(parser) saved := parser.no_struct_literal parser.no_struct_literal = true + saved_capture_pipe := parser.capture_pipe + parser.capture_pipe = true iterable := parse_expression(parser) + parser.capture_pipe = saved_capture_pipe parser.no_struct_literal = saved skip_newlines(parser) diff --git a/compiler/token/token.odin b/compiler/token/token.odin index 90f5fcd..6177ffc 100644 --- a/compiler/token/token.odin +++ b/compiler/token/token.odin @@ -22,8 +22,14 @@ Kind :: enum u8 { Bang_Equal, Less, Less_Equal, + Less_Less, + Less_Less_Equal, + Less_Less_Pipe, + Less_Less_Pipe_Equal, Greater, Greater_Equal, + Greater_Greater, + Greater_Greater_Equal, Plus, Minus, Slash, @@ -39,7 +45,10 @@ Kind :: enum u8 { Dollar, Star, Ampersand, + Ampersand_Equal, Caret, + Tilde, + Xor_Equal, Question, Semicolon, Left_Bracket, @@ -50,6 +59,7 @@ Kind :: enum u8 { Right_Brace, Comma, Pipe, + Pipe_Equal, Keyword_Test, Keyword_Func, Keyword_C_Func, @@ -71,6 +81,7 @@ Kind :: enum u8 { Keyword_Orelse, Keyword_And, Keyword_Or, + Keyword_Xor, Keyword_If, Keyword_While, Keyword_For, diff --git a/compiler_tests.odin b/compiler_tests.odin index a400f08..78f98bf 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -177,6 +177,240 @@ lexer_preserves_newlines_and_skips_comments :: proc(t: ^testing.T) { testing.expect_value(t, stream.items[1].kind, token.Kind.Identifier) } +@(test) +lexer_recognizes_bitwise_operators_with_longest_match :: proc(t: ^testing.T) { + source_file := source.Source{path="test.bro", text="~ & &= | |= xor xor= << <<= >> >>= <<| <<|= ^"} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + + expected := [?]token.Kind{ + .Tilde, .Ampersand, .Ampersand_Equal, .Pipe, .Pipe_Equal, .Keyword_Xor, .Xor_Equal, + .Less_Less, .Less_Less_Equal, .Greater_Greater, .Greater_Greater_Equal, + .Less_Less_Pipe, .Less_Less_Pipe_Equal, .Caret, .Eof, + } + testing.expect_value(t, len(diagnostics.items), 0) + testing.expect_value(t, len(stream.items), len(expected)) + for kind, index in expected { + testing.expect_value(t, stream.items[index].kind, kind) + } +} + +@(test) +parser_applies_bitwise_precedence_and_preserves_capture_and_deref_pipes :: proc(t: ^testing.T) { + text := `main func() void { + _ = 1 + 2 << 1 & 7 xor 3 | 4 == 5 and true or false + value i32 = 1 + pointer *i32 = &value + _ = pointer^ & 1 + if (none | none) |captured| { _ = captured } +} +` + source_file := source.Source{path="test.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&module) + + root := module.exprs[module.statements[module.functions[0].body[0]].expr] + and_expr := module.exprs[root.left] + equality := module.exprs[and_expr.left] + bit_or := module.exprs[equality.left] + bit_xor := module.exprs[bit_or.left] + bit_and := module.exprs[bit_xor.left] + shift := module.exprs[bit_and.left] + addition := module.exprs[shift.left] + deref_and := module.exprs[module.statements[module.functions[0].body[3]].expr] + if_statement := module.statements[module.functions[0].body[4]] + + testing.expect_value(t, len(diagnostics.items), 0) + testing.expect_value(t, root.kind, ast.Expr_Kind.Or) + testing.expect_value(t, and_expr.kind, ast.Expr_Kind.And) + testing.expect_value(t, equality.kind, ast.Expr_Kind.Eq) + testing.expect_value(t, bit_or.kind, ast.Expr_Kind.Bit_Or) + testing.expect_value(t, bit_xor.kind, ast.Expr_Kind.Bit_Xor) + testing.expect_value(t, bit_and.kind, ast.Expr_Kind.Bit_And) + testing.expect_value(t, shift.kind, ast.Expr_Kind.Shift_Left) + testing.expect_value(t, addition.kind, ast.Expr_Kind.Add) + testing.expect_value(t, deref_and.kind, ast.Expr_Kind.Bit_And) + testing.expect_value(t, module.exprs[deref_and.left].kind, ast.Expr_Kind.Deref) + testing.expect_value(t, module.exprs[if_statement.expr].kind, ast.Expr_Kind.Bit_Or) + testing.expect_value(t, len(if_statement.captures), 1) +} + +@(test) +bitwise_operations_lower_to_guarded_llvm_integer_instructions :: proc(t: ^testing.T) { + text := `ops func(a i32, b i32, count u8) i32 { + _ = ~a + _ = a & b + _ = a | b + _ = a xor b + _ = a << count + _ = a >> count + return a <<| count +} +uops func(a u32, count u8) u32 { + _ = a >> count + return a <<| count +} +main func() i32 { + _ = uops(4, 1) + return ops(1, 2, 1) +} +` + source_file := source.Source{path="test.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + ast_module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&ast_module) + hir_module := checker.check(&ast_module, &diagnostics, &symbols) + defer hir.destroy_module(&hir_module) + ir_module := lower.lower(&hir_module) + defer ir.destroy_module(&ir_module) + llvm_text := llvm.emit(&ir_module, &diagnostics, &symbols) + defer delete(llvm_text) + + found: [7]bool + for function in ir_module.functions { + for instruction in function.instructions { + #partial switch instruction.op { + case .Bit_Not: found[0] = true + case .Bit_And: found[1] = true + case .Bit_Or: found[2] = true + case .Bit_Xor: found[3] = true + case .Shift_Left: found[4] = true + case .Shift_Right: found[5] = true + case .Shift_Left_Saturating: found[6] = true + } + } + } + testing.expect_value(t, len(diagnostics.items), 0) + for present in found { + testing.expect(t, present) + } + testing.expect(t, strings.contains(llvm_text, " = and i32 ")) + testing.expect(t, strings.contains(llvm_text, " = or i32 ")) + testing.expect(t, strings.contains(llvm_text, " = xor i32 ")) + testing.expect(t, strings.contains(llvm_text, " = shl i32 ")) + testing.expect(t, strings.contains(llvm_text, " = ashr i32 ")) + testing.expect(t, strings.contains(llvm_text, " = lshr i32 ")) + testing.expect(t, strings.contains(llvm_text, "@llvm.sshl.sat.i32")) + testing.expect(t, strings.contains(llvm_text, "@llvm.ushl.sat.i32")) + testing.expect(t, strings.contains(llvm_text, "shift_in_range")) + testing.expect(t, strings.contains(llvm_text, "shift_trap")) +} + +@(test) +typed_bitwise_constants_fold_in_runtime_expressions :: proc(t: ^testing.T) { + text := `main func() void { + _ = ~u8(0) + _ = (u8(240) & u8(204)) xor u8(15) + _ = u8(129) << 1 + _ = i8(-4) >> 1 + _ = u8(1) <<| 8 +} +` + source_file := source.Source{path="test.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + ast_module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&ast_module) + hir_module := checker.check(&ast_module, &diagnostics, &symbols) + defer hir.destroy_module(&hir_module) + + testing.expect_value(t, len(diagnostics.items), 0) + for statement_id in hir_module.functions[0].body { + statement := hir_module.statements[statement_id] + testing.expect(t, statement.expr != hir.INVALID_EXPR) + testing.expect_value(t, hir_module.exprs[statement.expr].kind, hir.Expr_Kind.Integer) + } +} + +@(test) +bitwise_checker_rejects_invalid_operands_and_known_overshifts :: proc(t: ^testing.T) { + text := `D :: distinct u8 +E :: enum { one } +main func() void { + p *u8 = none + d D = D(1) + e E = .one + signed_count i8 = 1 + _ = true & false + _ = 1.0 | 2.0 + _ = ~p + _ = ~d + _ = ~e + _ = u8(1) & i8(1) + _ = u8(1) << signed_count + _ = u8(1) << 8 + _ = p >> u8(1) +} +` + source_file := source.Source{path="test.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + ast_module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&ast_module) + hir_module := checker.check(&ast_module, &diagnostics, &symbols) + defer hir.destroy_module(&hir_module) + + found_bitwise := false + found_shift := false + found_overshift := false + for diagnostic in diagnostics.items { + found_bitwise = found_bitwise || strings.contains(diagnostic.message, "bitwise") || strings.contains(diagnostic.message, "'~'") + found_shift = found_shift || strings.contains(diagnostic.message, "shift count") || strings.contains(diagnostic.message, "shifted value") + found_overshift = found_overshift || strings.contains(diagnostic.message, "exceeds u8 width") + } + testing.expect(t, found_bitwise) + testing.expect(t, found_shift) + testing.expect(t, found_overshift) +} + +@(test) +runtime_ordinary_overshift_traps :: proc(t: ^testing.T) { + directory := "/tmp/brolang-test-bitwise-overshift" + main_path := "/tmp/brolang-test-bitwise-overshift/main.bro" + output := "/tmp/brolang-test-bitwise-overshift-output" + text := `shift func(value u8, count u8) u8 { return value << count } +main func() i32 { + _ = shift(1, 8) + return 0 +} +` + _ = 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, stdout, stderr, err := os2.process_exec(os2.Process_Desc{command=[]string{output}}, context.allocator) + defer delete(stdout) + defer delete(stderr) + testing.expect(t, err == nil) + testing.expect(t, state.exit_code != 0) + testing.expect(t, strings.contains(string(stderr), "shift count exceeds integer width")) +} + @(test) parser_accepts_grouped_params_and_multiline_statements :: proc(t: ^testing.T) { text := `sum func(a, @@ -5236,6 +5470,16 @@ yield_compiles_and_runs :: proc(t: ^testing.T) { testing.expect_value(t, state.exit_code, 42) } +@(test) +bitwise_example_compiles_and_runs :: proc(t: ^testing.T) { + output := "/tmp/brolang-test-bitwise" + defer _ = os.remove(output) + status := compiler_core.compile_package("examples/programs/bitwise", output) + testing.expect_value(t, status, 0) + state := run_executable(output) + testing.expect_value(t, state.exit_code, 42) +} + @(test) value_loop_label_does_not_shadow_own_yield_target :: proc(t: ^testing.T) { text := `main func() i32 { diff --git a/examples/programs/bitwise/main.bro b/examples/programs/bitwise/main.bro new file mode 100644 index 0000000..cc7a274 --- /dev/null +++ b/examples/programs/bitwise/main.bro @@ -0,0 +1,62 @@ +fold_bits func(value u8) u8 { + return (~value & 255) xor 15 +} + +folded u8 :: fold_bits(240) +contextual u8 :: ~0 & 255 +contextual_shift u8 :: 1 << 7 +Buffer :: alias [u8(1) << 3]u8 + +runtime_left func(value u16, count u8) u16 { + return value << count +} + +c_count_shift func(value u8, count c_uint) u8 { + return value << count +} + +c_count_fold u8 :: c_count_shift(3, 2) + +main func() i32 { + buffer Buffer = undefined + if (folded != 0) return 1 + if (contextual != 255) return 28 + if (contextual_shift != 128) return 29 + if (buffer.len != 8) return 2 + if ((u8(240) & u8(204)) != 192) return 3 + if ((u8(240) | u8(15)) != 255) return 4 + if ((u8(240) xor u8(255)) != 15) return 5 + if ((u8(129) << 1) != 2) return 6 + if ((i8(-4) >> 1) != -2) return 7 + if ((u8(128) >> 1) != 64) return 8 + if ((u8(64) <<| 2) != 255) return 9 + if ((i8(64) <<| 2) != 127) return 10 + if ((i8(-64) <<| 2) != -128) return 11 + if ((u8(1) <<| 8) != 255) return 12 + if ((u8(0) <<| 80) != 0) return 13 + if (runtime_left(3, 4) != 48) return 14 + if (c_count_shift(3, 2) != 12) return 30 + if (c_count_fold != 12) return 31 + if (~u16(0) != 65535) return 16 + if ((i16(-2) >> 1) != -1) return 17 + if ((u32(2147483648) >> 31) != 1) return 18 + if ((i32(-2147483647) << 1) != 2) return 19 + if ((~u64(0) >> 63) != 1) return 20 + if ((i64(-2) >> 1) != -1) return 21 + if ((c_uchar(128) >> 7) != 1) return 22 + if ((c_int(-2) >> 1) != -1) return 23 + if ((c_uint(3) << 4) != 48) return 24 + if ((c_ulonglong(1) <<| 64) != ~c_ulonglong(0)) return 25 + if ((c_ushort(240) xor c_ushort(255)) != 15) return 26 + if ((c_longlong(64) <<| 60) != maxval!(c_longlong)) return 27 + + value u8 = 3 + value <<= 2 + value |= 1 + value xor= 5 + value &= 15 + value >>= 1 + value <<|= 7 + if (value != 255) return 15 + return 42 +} diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 73f4935..7a1e8e9 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -7,10 +7,12 @@ const PREC = { OR: 3, AND: 4, COMPARE: 5, - SUM: 6, - PRODUCT: 7, - PREFIX: 8, - POSTFIX: 9, + BITWISE: 6, + SHIFT: 7, + SUM: 8, + PRODUCT: 9, + PREFIX: 10, + POSTFIX: 11, }; module.exports = grammar({ @@ -33,6 +35,9 @@ module.exports = grammar({ [$.block, $.tuple_literal], [$.field_initializer, $.expression], [$.tuple_literal], + [$.capture_list, $.expression], + [$.for_statement, $.expression], + [$.match_capture, $.expression], ], rules: { @@ -278,7 +283,7 @@ module.exports = grammar({ assignment_statement: $ => seq( field('left', $.expression), - field('operator', choice('=', '+=', '-=', '*=', '/=')), + field('operator', choice('=', '+=', '-=', '*=', '/=', '&=', '|=', 'xor=', '<<=', '>>=', '<<|=')), repeat($._newline), field('right', $._value), ), @@ -454,6 +459,8 @@ module.exports = grammar({ 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))), + prec.left(PREC.BITWISE, seq(field('left', $.expression), field('operator', choice('&', 'xor', '|')), repeat($._newline), field('right', $.expression))), + prec.left(PREC.SHIFT, seq(field('left', $.expression), field('operator', choice('<<', '>>', '<<|')), repeat($._newline), field('right', $.expression))), prec.left(PREC.SUM, seq(field('left', $.expression), field('operator', choice('+', '-')), repeat($._newline), field('right', $.expression))), prec.left(PREC.PRODUCT, seq(field('left', $.expression), field('operator', choice('*', '/')), repeat($._newline), field('right', $.expression))), ), @@ -469,7 +476,7 @@ module.exports = grammar({ )), unary_expression: $ => prec(PREC.PREFIX, seq( - field('operator', choice('-', '&', '!', '$', 'try')), + field('operator', choice('-', '&', '!', '~', '$', 'try')), repeat($._newline), field('operand', $.expression), )), diff --git a/tree-sitter-brolang/queries/highlights.scm b/tree-sitter-brolang/queries/highlights.scm index ca70bb4..df1e46c 100644 --- a/tree-sitter-brolang/queries/highlights.scm +++ b/tree-sitter-brolang/queries/highlights.scm @@ -91,6 +91,12 @@ "-=" "*=" "/=" + "&=" + "|=" + "xor=" + "<<=" + ">>=" + "<<|=" "==" "!=" "<" @@ -101,6 +107,11 @@ "-" "*" "/" + "~" + "xor" + "<<" + ">>" + "<<|" "!" "&" "@" diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index f6feb0c..1ba2aaa 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -1830,6 +1830,30 @@ { "type": "STRING", "value": "/=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "|=" + }, + { + "type": "STRING", + "value": "xor=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "<<|=" } ] } @@ -3306,6 +3330,112 @@ { "type": "PREC_LEFT", "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "STRING", + "value": "|" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "STRING", + "value": ">>" + }, + { + "type": "STRING", + "value": "<<|" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_newline" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, "content": { "type": "SEQ", "members": [ @@ -3354,7 +3484,7 @@ }, { "type": "PREC_LEFT", - "value": 7, + "value": 9, "content": { "type": "SEQ", "members": [ @@ -3466,7 +3596,7 @@ }, "unary_expression": { "type": "PREC", - "value": 8, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -3488,6 +3618,10 @@ "type": "STRING", "value": "!" }, + { + "type": "STRING", + "value": "~" + }, { "type": "STRING", "value": "$" @@ -3519,7 +3653,7 @@ }, "field_expression": { "type": "PREC_LEFT", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3557,7 +3691,7 @@ }, "intrinsic_call_expression": { "type": "PREC", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3590,7 +3724,7 @@ }, "call_expression": { "type": "PREC_LEFT", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3615,7 +3749,7 @@ }, "argument_list": { "type": "PREC", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3721,7 +3855,7 @@ }, "index_expression": { "type": "PREC_LEFT", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3768,7 +3902,7 @@ }, "slice_expression": { "type": "PREC_LEFT", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3843,7 +3977,7 @@ }, "postfix_expression": { "type": "PREC_LEFT", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -3877,7 +4011,7 @@ }, "struct_literal": { "type": "PREC", - "value": 9, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -4803,6 +4937,18 @@ ], [ "tuple_literal" + ], + [ + "capture_list", + "expression" + ], + [ + "for_statement", + "expression" + ], + [ + "match_capture", + "expression" ] ], "precedences": [], diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index bdadd8f..2fa9fb0 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -111,6 +111,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "&=", + "named": false + }, { "type": "*=", "named": false @@ -127,9 +131,29 @@ "type": "/=", "named": false }, + { + "type": "<<=", + "named": false + }, + { + "type": "<<|=", + "named": false + }, { "type": "=", "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "xor=", + "named": false + }, + { + "type": "|=", + "named": false } ] }, @@ -191,6 +215,10 @@ "type": "!=", "named": false }, + { + "type": "&", + "named": false + }, { "type": "*", "named": false @@ -219,6 +247,14 @@ "type": "<", "named": false }, + { + "type": "<<", + "named": false + }, + { + "type": "<<|", + "named": false + }, { "type": "<=", "named": false @@ -235,6 +271,10 @@ "type": ">=", "named": false }, + { + "type": ">>", + "named": false + }, { "type": "catch", "named": false @@ -242,6 +282,14 @@ { "type": "orelse", "named": false + }, + { + "type": "xor", + "named": false + }, + { + "type": "|", + "named": false } ] }, @@ -2187,6 +2235,10 @@ { "type": "try", "named": false + }, + { + "type": "~", + "named": false } ] } @@ -2422,6 +2474,10 @@ "type": "&", "named": false }, + { + "type": "&=", + "named": false + }, { "type": "(", "named": false @@ -2498,6 +2554,22 @@ "type": "<", "named": false }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<<|", + "named": false + }, + { + "type": "<<|=", + "named": false + }, { "type": "<=", "named": false @@ -2518,6 +2590,14 @@ "type": ">=", "named": false }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, { "type": "?", "named": false @@ -2839,6 +2919,14 @@ "type": "while", "named": false }, + { + "type": "xor", + "named": false + }, + { + "type": "xor=", + "named": false + }, { "type": "yield", "named": false @@ -2851,8 +2939,16 @@ "type": "|", "named": false }, + { + "type": "|=", + "named": false + }, { "type": "}", "named": false + }, + { + "type": "~", + "named": false } ] \ No newline at end of file diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index f55bf23..4c731d7 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -7,11 +7,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2376 -#define LARGE_STATE_COUNT 1305 -#define SYMBOL_COUNT 209 +#define STATE_COUNT 3552 +#define LARGE_STATE_COUNT 1723 +#define SYMBOL_COUNT 220 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 115 +#define TOKEN_COUNT 126 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 16 @@ -89,145 +89,156 @@ enum ts_symbol_identifiers { anon_sym_DASH_EQ = 67, anon_sym_STAR_EQ = 68, anon_sym_SLASH_EQ = 69, - anon_sym_return = 70, - anon_sym_yield = 71, - anon_sym_COLON = 72, - anon_sym_break = 73, - anon_sym_continue = 74, - anon_sym_defer = 75, - anon_sym_errdefer = 76, - anon_sym_if = 77, - anon_sym_else = 78, - anon_sym_while = 79, - anon_sym_expand = 80, - anon_sym_for = 81, - anon_sym_match = 82, - anon_sym_DOT_DOT = 83, - anon_sym_DOT_DOT_EQ = 84, - anon_sym_orelse = 85, - anon_sym_catch = 86, - anon_sym_or = 87, - anon_sym_and = 88, - anon_sym_EQ_EQ = 89, - anon_sym_BANG_EQ = 90, - anon_sym_LT = 91, - anon_sym_LT_EQ = 92, - anon_sym_GT = 93, - anon_sym_GT_EQ = 94, - anon_sym_PLUS = 95, - anon_sym_SLASH = 96, - anon_sym_AMP = 97, - anon_sym_try = 98, - anon_sym_DOT = 99, - anon_sym_CARET = 100, - anon_sym_true = 101, - anon_sym_false = 102, - sym_none = 103, - sym_undefined = 104, - sym_sink = 105, - sym_integer = 106, - sym_float = 107, - anon_sym_DQUOTE = 108, - sym_string_content = 109, - sym_escape_sequence = 110, - sym_multiline_string = 111, - sym_character = 112, - sym_comment = 113, - sym__newline = 114, - sym_source_file = 115, - sym__top_level_declaration = 116, - sym_import_declaration = 117, - sym_test_import_declaration = 118, - sym_test_declaration = 119, - sym_function_declaration = 120, - sym_type_declaration = 121, - sym_global_constant_declaration = 122, - sym_global_variable_declaration = 123, - sym_struct_type = 124, - sym_c_struct_type = 125, - sym_distinct_type = 126, - sym_alias_type = 127, - sym_union_type = 128, - sym_enum_type = 129, - sym_record_body = 130, - sym_record_field = 131, - sym_enum_body = 132, - sym_enum_member = 133, - sym_parameter_list = 134, - sym_parameter = 135, - sym_type = 136, - sym__type_atom = 137, - sym_named_type = 138, - sym_optional_type = 139, - sym_pointer_type = 140, - sym_array_type = 141, - sym_function_type = 142, - sym__error_type = 143, - sym__type_constant = 144, - sym_builtin_type = 145, - sym_block = 146, - sym_statement = 147, - sym_constant_declaration = 148, - sym_variable_declaration = 149, - sym_assignment_statement = 150, - sym_expression_statement = 151, - sym_return_statement = 152, - sym_yield_statement = 153, - sym_break_statement = 154, - sym_continue_statement = 155, - sym_defer_statement = 156, - sym_error_capture = 157, - sym_labeled_block = 158, - sym_if_statement = 159, - sym_capture_list = 160, - sym_while_statement = 161, - sym_for_statement = 162, - sym_match_statement = 163, - sym_match_arm = 164, - sym_match_capture = 165, - sym_expand_match_capture = 166, - sym__branch_body = 167, - sym__value = 168, - sym_expression = 169, - sym_binary_expression = 170, - sym_catch_expression = 171, - sym_unary_expression = 172, - sym_field_expression = 173, - sym_intrinsic_call_expression = 174, - sym_call_expression = 175, - sym_argument_list = 176, - sym_index_expression = 177, - sym_slice_expression = 178, - sym_postfix_expression = 179, - sym_struct_literal = 180, - sym_initializer_list = 181, - sym_field_initializer = 182, - sym_tuple_literal = 183, - sym_enum_literal = 184, - sym_variant_payload = 185, - sym_keyed_field_initializer = 186, - sym_array_literal = 187, - sym_parenthesized_expression = 188, - sym_comptime_block = 189, - sym_function_literal = 190, - sym_qualified_identifier = 191, - sym_boolean = 192, - sym_string = 193, - aux_sym_source_file_repeat1 = 194, - aux_sym_import_declaration_repeat1 = 195, - aux_sym_record_body_repeat1 = 196, - aux_sym_enum_body_repeat1 = 197, - aux_sym_parameter_list_repeat1 = 198, - aux_sym_parameter_repeat1 = 199, - aux_sym_type_repeat1 = 200, - aux_sym_block_repeat1 = 201, - aux_sym_capture_list_repeat1 = 202, - aux_sym_match_statement_repeat1 = 203, - aux_sym_match_arm_repeat1 = 204, - aux_sym_initializer_list_repeat1 = 205, - aux_sym_tuple_literal_repeat1 = 206, - aux_sym_variant_payload_repeat1 = 207, - aux_sym_string_repeat1 = 208, + anon_sym_AMP_EQ = 70, + anon_sym_PIPE_EQ = 71, + anon_sym_xor_EQ = 72, + anon_sym_LT_LT_EQ = 73, + anon_sym_GT_GT_EQ = 74, + anon_sym_LT_LT_PIPE_EQ = 75, + anon_sym_return = 76, + anon_sym_yield = 77, + anon_sym_COLON = 78, + anon_sym_break = 79, + anon_sym_continue = 80, + anon_sym_defer = 81, + anon_sym_errdefer = 82, + anon_sym_if = 83, + anon_sym_else = 84, + anon_sym_while = 85, + anon_sym_expand = 86, + anon_sym_for = 87, + anon_sym_match = 88, + anon_sym_DOT_DOT = 89, + anon_sym_DOT_DOT_EQ = 90, + anon_sym_orelse = 91, + anon_sym_catch = 92, + anon_sym_or = 93, + anon_sym_and = 94, + anon_sym_EQ_EQ = 95, + anon_sym_BANG_EQ = 96, + anon_sym_LT = 97, + anon_sym_LT_EQ = 98, + anon_sym_GT = 99, + anon_sym_GT_EQ = 100, + anon_sym_AMP = 101, + anon_sym_xor = 102, + anon_sym_LT_LT = 103, + anon_sym_GT_GT = 104, + anon_sym_LT_LT_PIPE = 105, + anon_sym_PLUS = 106, + anon_sym_SLASH = 107, + anon_sym_TILDE = 108, + anon_sym_try = 109, + anon_sym_DOT = 110, + anon_sym_CARET = 111, + anon_sym_true = 112, + anon_sym_false = 113, + sym_none = 114, + sym_undefined = 115, + sym_sink = 116, + sym_integer = 117, + sym_float = 118, + anon_sym_DQUOTE = 119, + sym_string_content = 120, + sym_escape_sequence = 121, + sym_multiline_string = 122, + sym_character = 123, + sym_comment = 124, + sym__newline = 125, + sym_source_file = 126, + sym__top_level_declaration = 127, + sym_import_declaration = 128, + sym_test_import_declaration = 129, + sym_test_declaration = 130, + sym_function_declaration = 131, + sym_type_declaration = 132, + sym_global_constant_declaration = 133, + sym_global_variable_declaration = 134, + sym_struct_type = 135, + sym_c_struct_type = 136, + sym_distinct_type = 137, + sym_alias_type = 138, + sym_union_type = 139, + sym_enum_type = 140, + sym_record_body = 141, + sym_record_field = 142, + sym_enum_body = 143, + sym_enum_member = 144, + sym_parameter_list = 145, + sym_parameter = 146, + sym_type = 147, + sym__type_atom = 148, + sym_named_type = 149, + sym_optional_type = 150, + sym_pointer_type = 151, + sym_array_type = 152, + sym_function_type = 153, + sym__error_type = 154, + sym__type_constant = 155, + sym_builtin_type = 156, + sym_block = 157, + sym_statement = 158, + sym_constant_declaration = 159, + sym_variable_declaration = 160, + sym_assignment_statement = 161, + sym_expression_statement = 162, + sym_return_statement = 163, + sym_yield_statement = 164, + sym_break_statement = 165, + sym_continue_statement = 166, + sym_defer_statement = 167, + sym_error_capture = 168, + sym_labeled_block = 169, + sym_if_statement = 170, + sym_capture_list = 171, + sym_while_statement = 172, + sym_for_statement = 173, + sym_match_statement = 174, + sym_match_arm = 175, + sym_match_capture = 176, + sym_expand_match_capture = 177, + sym__branch_body = 178, + sym__value = 179, + sym_expression = 180, + sym_binary_expression = 181, + sym_catch_expression = 182, + sym_unary_expression = 183, + sym_field_expression = 184, + sym_intrinsic_call_expression = 185, + sym_call_expression = 186, + sym_argument_list = 187, + sym_index_expression = 188, + sym_slice_expression = 189, + sym_postfix_expression = 190, + sym_struct_literal = 191, + sym_initializer_list = 192, + sym_field_initializer = 193, + sym_tuple_literal = 194, + sym_enum_literal = 195, + sym_variant_payload = 196, + sym_keyed_field_initializer = 197, + sym_array_literal = 198, + sym_parenthesized_expression = 199, + sym_comptime_block = 200, + sym_function_literal = 201, + sym_qualified_identifier = 202, + sym_boolean = 203, + sym_string = 204, + aux_sym_source_file_repeat1 = 205, + aux_sym_import_declaration_repeat1 = 206, + aux_sym_record_body_repeat1 = 207, + aux_sym_enum_body_repeat1 = 208, + aux_sym_parameter_list_repeat1 = 209, + aux_sym_parameter_repeat1 = 210, + aux_sym_type_repeat1 = 211, + aux_sym_block_repeat1 = 212, + aux_sym_capture_list_repeat1 = 213, + aux_sym_match_statement_repeat1 = 214, + aux_sym_match_arm_repeat1 = 215, + aux_sym_initializer_list_repeat1 = 216, + aux_sym_tuple_literal_repeat1 = 217, + aux_sym_variant_payload_repeat1 = 218, + aux_sym_string_repeat1 = 219, }; static const char * const ts_symbol_names[] = { @@ -301,6 +312,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_EQ] = "-=", [anon_sym_STAR_EQ] = "*=", [anon_sym_SLASH_EQ] = "/=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_xor_EQ] = "xor=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_LT_LT_PIPE_EQ] = "<<|=", [anon_sym_return] = "return", [anon_sym_yield] = "yield", [anon_sym_COLON] = ":", @@ -326,9 +343,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_EQ] = "<=", [anon_sym_GT] = ">", [anon_sym_GT_EQ] = ">=", + [anon_sym_AMP] = "&", + [anon_sym_xor] = "xor", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_LT_LT_PIPE] = "<<|", [anon_sym_PLUS] = "+", [anon_sym_SLASH] = "/", - [anon_sym_AMP] = "&", + [anon_sym_TILDE] = "~", [anon_sym_try] = "try", [anon_sym_DOT] = ".", [anon_sym_CARET] = "^", @@ -513,6 +535,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_xor_EQ] = anon_sym_xor_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_LT_LT_PIPE_EQ] = anon_sym_LT_LT_PIPE_EQ, [anon_sym_return] = anon_sym_return, [anon_sym_yield] = anon_sym_yield, [anon_sym_COLON] = anon_sym_COLON, @@ -538,9 +566,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_GT] = anon_sym_GT, [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_xor] = anon_sym_xor, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_LT_LT_PIPE] = anon_sym_LT_LT_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_try] = anon_sym_try, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_CARET] = anon_sym_CARET, @@ -935,6 +968,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_xor_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_PIPE_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_return] = { .visible = true, .named = false, @@ -1035,6 +1092,26 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_PIPE] = { + .visible = true, + .named = false, + }, [anon_sym_PLUS] = { .visible = true, .named = false, @@ -1043,7 +1120,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AMP] = { + [anon_sym_TILDE] = { .visible = true, .named = false, }, @@ -3829,1032 +3906,1032 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 3, [13] = 2, [14] = 3, - [15] = 3, - [16] = 2, + [15] = 2, + [16] = 3, [17] = 2, [18] = 3, [19] = 2, [20] = 20, [21] = 21, [22] = 22, - [23] = 20, - [24] = 20, + [23] = 23, + [24] = 24, [25] = 25, [26] = 26, [27] = 27, - [28] = 26, + [28] = 28, [29] = 29, [30] = 30, - [31] = 20, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 26, + [31] = 30, + [32] = 26, + [33] = 27, + [34] = 29, + [35] = 28, [36] = 36, - [37] = 26, + [37] = 36, [38] = 38, - [39] = 20, - [40] = 20, - [41] = 26, - [42] = 20, - [43] = 26, - [44] = 26, - [45] = 20, - [46] = 20, - [47] = 26, - [48] = 26, + [39] = 39, + [40] = 40, + [41] = 41, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 45, + [46] = 46, + [47] = 38, + [48] = 48, [49] = 49, [50] = 50, [51] = 51, - [52] = 49, - [53] = 53, - [54] = 54, + [52] = 52, + [53] = 38, + [54] = 52, [55] = 55, - [56] = 56, + [56] = 52, [57] = 57, [58] = 58, [59] = 59, [60] = 60, [61] = 61, - [62] = 62, - [63] = 63, + [62] = 52, + [63] = 51, [64] = 64, [65] = 65, [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, + [67] = 38, + [68] = 51, + [69] = 38, [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, + [71] = 51, + [72] = 51, + [73] = 52, + [74] = 38, + [75] = 52, + [76] = 51, [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, + [78] = 38, + [79] = 52, + [80] = 52, + [81] = 38, [82] = 82, [83] = 83, - [84] = 84, - [85] = 85, + [84] = 52, + [85] = 38, [86] = 86, [87] = 87, [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 51, - [93] = 49, - [94] = 53, - [95] = 54, - [96] = 55, - [97] = 56, - [98] = 57, - [99] = 58, - [100] = 59, - [101] = 60, - [102] = 61, - [103] = 63, - [104] = 64, - [105] = 65, - [106] = 66, - [107] = 67, - [108] = 68, - [109] = 69, - [110] = 74, - [111] = 75, - [112] = 76, - [113] = 77, - [114] = 78, - [115] = 79, - [116] = 80, - [117] = 85, - [118] = 86, - [119] = 87, - [120] = 88, - [121] = 90, - [122] = 51, - [123] = 49, - [124] = 53, - [125] = 54, - [126] = 55, - [127] = 56, - [128] = 57, - [129] = 58, - [130] = 59, - [131] = 60, - [132] = 61, - [133] = 63, - [134] = 64, - [135] = 65, - [136] = 66, - [137] = 67, - [138] = 68, - [139] = 69, - [140] = 74, - [141] = 75, - [142] = 76, - [143] = 77, - [144] = 78, - [145] = 79, - [146] = 80, - [147] = 85, - [148] = 86, - [149] = 87, - [150] = 88, - [151] = 90, - [152] = 51, - [153] = 53, - [154] = 54, - [155] = 55, - [156] = 56, - [157] = 57, - [158] = 58, - [159] = 59, - [160] = 60, - [161] = 61, - [162] = 63, - [163] = 64, - [164] = 65, - [165] = 66, - [166] = 67, - [167] = 68, - [168] = 69, - [169] = 74, - [170] = 75, - [171] = 76, - [172] = 77, - [173] = 78, - [174] = 79, - [175] = 80, - [176] = 85, - [177] = 86, - [178] = 87, - [179] = 88, - [180] = 90, - [181] = 51, - [182] = 49, - [183] = 53, - [184] = 55, - [185] = 56, - [186] = 60, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, + [109] = 109, + [110] = 110, + [111] = 111, + [112] = 110, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 118, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 91, + [137] = 137, + [138] = 111, + [139] = 139, + [140] = 140, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 95, + [157] = 96, + [158] = 97, + [159] = 102, + [160] = 105, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 115, + [173] = 116, + [174] = 117, + [175] = 118, + [176] = 119, + [177] = 120, + [178] = 121, + [179] = 179, + [180] = 180, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, [187] = 187, - [188] = 51, - [189] = 49, - [190] = 53, - [191] = 55, - [192] = 56, - [193] = 60, - [194] = 51, - [195] = 49, - [196] = 53, - [197] = 55, - [198] = 56, - [199] = 60, - [200] = 51, - [201] = 49, - [202] = 53, - [203] = 55, - [204] = 56, - [205] = 90, - [206] = 54, - [207] = 57, - [208] = 58, - [209] = 59, - [210] = 61, - [211] = 63, - [212] = 64, - [213] = 65, - [214] = 66, - [215] = 67, - [216] = 68, - [217] = 69, - [218] = 74, - [219] = 75, - [220] = 76, - [221] = 77, - [222] = 78, - [223] = 79, - [224] = 80, - [225] = 85, - [226] = 86, - [227] = 87, - [228] = 88, - [229] = 90, - [230] = 54, - [231] = 57, - [232] = 58, - [233] = 59, - [234] = 61, - [235] = 63, - [236] = 64, - [237] = 65, - [238] = 66, - [239] = 67, - [240] = 68, - [241] = 69, - [242] = 74, - [243] = 75, - [244] = 76, - [245] = 77, - [246] = 78, - [247] = 79, - [248] = 80, - [249] = 85, - [250] = 86, - [251] = 87, - [252] = 88, - [253] = 90, - [254] = 54, - [255] = 57, - [256] = 58, - [257] = 59, - [258] = 61, - [259] = 63, - [260] = 64, - [261] = 65, - [262] = 66, - [263] = 67, - [264] = 68, - [265] = 69, - [266] = 74, - [267] = 75, - [268] = 76, - [269] = 77, - [270] = 78, - [271] = 79, - [272] = 80, - [273] = 85, - [274] = 86, - [275] = 87, - [276] = 88, - [277] = 90, - [278] = 51, - [279] = 49, - [280] = 53, - [281] = 55, - [282] = 56, - [283] = 60, - [284] = 54, - [285] = 57, - [286] = 58, - [287] = 59, - [288] = 61, - [289] = 63, - [290] = 64, - [291] = 65, - [292] = 66, - [293] = 67, - [294] = 68, - [295] = 69, - [296] = 74, - [297] = 75, - [298] = 76, - [299] = 77, - [300] = 78, - [301] = 79, - [302] = 80, - [303] = 85, - [304] = 86, - [305] = 87, - [306] = 88, - [307] = 90, - [308] = 54, - [309] = 57, - [310] = 58, - [311] = 59, - [312] = 61, - [313] = 63, - [314] = 64, - [315] = 65, - [316] = 66, - [317] = 67, - [318] = 68, - [319] = 69, - [320] = 74, - [321] = 75, - [322] = 76, - [323] = 77, - [324] = 78, - [325] = 79, - [326] = 80, - [327] = 85, - [328] = 86, - [329] = 87, - [330] = 88, - [331] = 60, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 332, - [336] = 336, - [337] = 333, - [338] = 333, - [339] = 333, - [340] = 336, - [341] = 332, - [342] = 342, - [343] = 334, - [344] = 344, - [345] = 333, - [346] = 336, - [347] = 332, - [348] = 333, - [349] = 336, - [350] = 332, - [351] = 342, - [352] = 334, - [353] = 344, - [354] = 342, - [355] = 334, - [356] = 344, - [357] = 336, - [358] = 332, - [359] = 342, - [360] = 334, - [361] = 344, - [362] = 336, - [363] = 332, - [364] = 333, - [365] = 342, - [366] = 334, - [367] = 333, - [368] = 336, - [369] = 332, - [370] = 342, - [371] = 334, - [372] = 344, - [373] = 344, - [374] = 336, - [375] = 332, - [376] = 342, - [377] = 334, - [378] = 344, - [379] = 342, - [380] = 336, - [381] = 342, - [382] = 334, - [383] = 344, - [384] = 333, - [385] = 344, - [386] = 386, - [387] = 387, - [388] = 386, - [389] = 389, - [390] = 390, - [391] = 387, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 27, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 29, - [413] = 30, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 32, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 33, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 34, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 426, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 459, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 469, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [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, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 139, + [195] = 140, + [196] = 143, + [197] = 144, + [198] = 145, + [199] = 146, + [200] = 147, + [201] = 201, + [202] = 202, + [203] = 203, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 217, + [218] = 218, + [219] = 88, + [220] = 220, + [221] = 221, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 211, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 88, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 212, + [286] = 286, + [287] = 213, + [288] = 214, + [289] = 289, + [290] = 290, + [291] = 88, + [292] = 93, + [293] = 293, + [294] = 110, + [295] = 111, + [296] = 290, + [297] = 133, + [298] = 134, + [299] = 135, + [300] = 91, + [301] = 133, + [302] = 95, + [303] = 96, + [304] = 97, + [305] = 102, + [306] = 105, + [307] = 134, + [308] = 110, + [309] = 115, + [310] = 116, + [311] = 117, + [312] = 118, + [313] = 119, + [314] = 120, + [315] = 121, + [316] = 111, + [317] = 139, + [318] = 140, + [319] = 214, + [320] = 144, + [321] = 145, + [322] = 146, + [323] = 147, + [324] = 211, + [325] = 212, + [326] = 213, + [327] = 214, + [328] = 88, + [329] = 135, + [330] = 110, + [331] = 111, + [332] = 133, + [333] = 133, + [334] = 135, + [335] = 91, + [336] = 102, + [337] = 134, + [338] = 110, + [339] = 111, + [340] = 135, + [341] = 133, + [342] = 135, + [343] = 91, + [344] = 102, + [345] = 91, + [346] = 290, + [347] = 93, + [348] = 95, + [349] = 110, + [350] = 111, + [351] = 96, + [352] = 133, + [353] = 135, + [354] = 91, + [355] = 102, + [356] = 97, + [357] = 102, + [358] = 105, + [359] = 290, + [360] = 93, + [361] = 115, + [362] = 110, + [363] = 111, + [364] = 116, + [365] = 133, + [366] = 135, + [367] = 91, + [368] = 102, + [369] = 117, + [370] = 118, + [371] = 119, + [372] = 120, + [373] = 134, + [374] = 95, + [375] = 96, + [376] = 97, + [377] = 105, + [378] = 115, + [379] = 116, + [380] = 117, + [381] = 118, + [382] = 119, + [383] = 120, + [384] = 121, + [385] = 139, + [386] = 140, + [387] = 143, + [388] = 144, + [389] = 145, + [390] = 146, + [391] = 147, + [392] = 211, + [393] = 212, + [394] = 213, + [395] = 214, + [396] = 88, + [397] = 121, + [398] = 139, + [399] = 140, + [400] = 134, + [401] = 95, + [402] = 96, + [403] = 97, + [404] = 105, + [405] = 115, + [406] = 116, + [407] = 117, + [408] = 118, + [409] = 119, + [410] = 120, + [411] = 121, + [412] = 139, + [413] = 140, + [414] = 143, + [415] = 144, + [416] = 145, + [417] = 146, + [418] = 147, + [419] = 211, + [420] = 212, + [421] = 213, + [422] = 214, + [423] = 88, + [424] = 143, + [425] = 134, + [426] = 95, + [427] = 96, + [428] = 97, + [429] = 105, + [430] = 115, + [431] = 116, + [432] = 117, + [433] = 118, + [434] = 119, + [435] = 120, + [436] = 121, + [437] = 139, + [438] = 140, + [439] = 143, + [440] = 144, + [441] = 145, + [442] = 146, + [443] = 147, + [444] = 211, + [445] = 212, + [446] = 213, + [447] = 214, + [448] = 88, + [449] = 144, + [450] = 110, + [451] = 111, + [452] = 133, + [453] = 135, + [454] = 91, + [455] = 102, + [456] = 145, + [457] = 146, + [458] = 134, + [459] = 95, + [460] = 96, + [461] = 97, + [462] = 105, + [463] = 115, + [464] = 116, + [465] = 117, + [466] = 118, + [467] = 119, + [468] = 120, + [469] = 121, + [470] = 139, + [471] = 140, + [472] = 143, + [473] = 144, + [474] = 145, + [475] = 146, + [476] = 147, + [477] = 211, + [478] = 212, + [479] = 213, + [480] = 214, + [481] = 88, + [482] = 147, + [483] = 211, + [484] = 212, + [485] = 213, + [486] = 134, + [487] = 95, + [488] = 96, + [489] = 97, + [490] = 105, + [491] = 115, + [492] = 116, + [493] = 117, + [494] = 118, + [495] = 119, + [496] = 120, + [497] = 121, + [498] = 139, + [499] = 140, + [500] = 143, + [501] = 144, + [502] = 145, + [503] = 146, + [504] = 147, + [505] = 211, + [506] = 212, + [507] = 213, + [508] = 214, + [509] = 143, [510] = 510, [511] = 511, [512] = 512, [513] = 513, [514] = 514, - [515] = 515, + [515] = 510, [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, + [517] = 511, + [518] = 512, + [519] = 512, + [520] = 513, + [521] = 513, + [522] = 514, + [523] = 510, + [524] = 516, + [525] = 514, + [526] = 510, [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, + [528] = 516, + [529] = 512, + [530] = 513, + [531] = 514, + [532] = 510, + [533] = 516, [534] = 534, - [535] = 535, + [535] = 511, [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, + [537] = 511, + [538] = 512, + [539] = 514, + [540] = 510, + [541] = 516, + [542] = 511, + [543] = 512, + [544] = 513, + [545] = 514, [546] = 546, - [547] = 547, - [548] = 548, - [549] = 544, - [550] = 550, - [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] = 544, - [564] = 564, - [565] = 565, - [566] = 544, - [567] = 426, - [568] = 565, - [569] = 544, - [570] = 554, - [571] = 555, - [572] = 547, - [573] = 556, - [574] = 565, - [575] = 553, - [576] = 564, - [577] = 564, - [578] = 564, - [579] = 557, - [580] = 558, - [581] = 565, - [582] = 559, - [583] = 546, - [584] = 544, - [585] = 550, - [586] = 551, - [587] = 459, - [588] = 552, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, + [547] = 516, + [548] = 512, + [549] = 513, + [550] = 514, + [551] = 510, + [552] = 516, + [553] = 511, + [554] = 511, + [555] = 511, + [556] = 512, + [557] = 513, + [558] = 514, + [559] = 510, + [560] = 516, + [561] = 511, + [562] = 512, + [563] = 513, + [564] = 514, + [565] = 510, + [566] = 516, + [567] = 513, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 30, + [573] = 36, + [574] = 574, + [575] = 575, + [576] = 571, + [577] = 577, + [578] = 568, + [579] = 569, + [580] = 570, + [581] = 527, + [582] = 582, + [583] = 583, + [584] = 568, + [585] = 571, + [586] = 25, + [587] = 569, + [588] = 570, + [589] = 23, + [590] = 22, + [591] = 583, + [592] = 20, + [593] = 24, + [594] = 571, + [595] = 568, + [596] = 583, [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 590, - [604] = 604, - [605] = 597, - [606] = 598, - [607] = 565, - [608] = 564, - [609] = 544, - [610] = 597, - [611] = 598, - [612] = 599, - [613] = 600, - [614] = 601, - [615] = 602, - [616] = 590, - [617] = 604, - [618] = 618, - [619] = 597, - [620] = 598, - [621] = 599, - [622] = 600, - [623] = 601, - [624] = 602, - [625] = 590, - [626] = 604, - [627] = 599, - [628] = 600, - [629] = 601, - [630] = 602, - [631] = 597, - [632] = 598, - [633] = 599, - [634] = 600, - [635] = 601, - [636] = 604, - [637] = 590, - [638] = 604, - [639] = 639, - [640] = 640, - [641] = 597, - [642] = 598, - [643] = 599, - [644] = 600, - [645] = 601, - [646] = 602, - [647] = 590, - [648] = 604, - [649] = 597, - [650] = 598, - [651] = 599, - [652] = 600, - [653] = 601, - [654] = 602, - [655] = 590, - [656] = 604, - [657] = 597, - [658] = 598, - [659] = 599, - [660] = 600, - [661] = 601, - [662] = 602, - [663] = 590, - [664] = 604, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 590, - [669] = 604, - [670] = 670, - [671] = 544, - [672] = 597, - [673] = 598, - [674] = 599, - [675] = 600, - [676] = 601, - [677] = 602, - [678] = 602, - [679] = 679, - [680] = 670, - [681] = 679, - [682] = 679, - [683] = 544, - [684] = 679, - [685] = 679, - [686] = 679, - [687] = 679, - [688] = 679, - [689] = 679, - [690] = 690, - [691] = 690, - [692] = 690, - [693] = 690, - [694] = 690, - [695] = 690, - [696] = 690, - [697] = 690, - [698] = 690, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 702, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 702, - [713] = 711, - [714] = 711, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 718, - [720] = 717, - [721] = 718, - [722] = 717, - [723] = 718, - [724] = 717, - [725] = 725, - [726] = 718, - [727] = 717, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 670, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 426, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, + [598] = 21, + [599] = 569, + [600] = 570, + [601] = 571, + [602] = 568, + [603] = 569, + [604] = 597, + [605] = 570, + [606] = 278, + [607] = 274, + [608] = 275, + [609] = 276, + [610] = 252, + [611] = 253, + [612] = 254, + [613] = 255, + [614] = 256, + [615] = 262, + [616] = 270, + [617] = 263, + [618] = 271, + [619] = 264, + [620] = 223, + [621] = 277, + [622] = 247, + [623] = 261, + [624] = 265, + [625] = 280, + [626] = 281, + [627] = 235, + [628] = 266, + [629] = 238, + [630] = 272, + [631] = 248, + [632] = 249, + [633] = 260, + [634] = 239, + [635] = 273, + [636] = 282, + [637] = 283, + [638] = 284, + [639] = 246, + [640] = 87, + [641] = 641, + [642] = 641, + [643] = 45, + [644] = 55, + [645] = 82, + [646] = 59, + [647] = 50, + [648] = 48, + [649] = 49, + [650] = 46, + [651] = 207, + [652] = 167, + [653] = 230, + [654] = 251, + [655] = 257, + [656] = 258, + [657] = 127, + [658] = 231, + [659] = 128, + [660] = 232, + [661] = 168, + [662] = 169, + [663] = 170, + [664] = 171, + [665] = 94, + [666] = 129, + [667] = 130, + [668] = 179, + [669] = 180, + [670] = 181, + [671] = 182, + [672] = 183, + [673] = 98, + [674] = 184, + [675] = 259, + [676] = 267, + [677] = 185, + [678] = 137, + [679] = 268, + [680] = 141, + [681] = 186, + [682] = 187, + [683] = 188, + [684] = 142, + [685] = 149, + [686] = 99, + [687] = 269, + [688] = 100, + [689] = 641, + [690] = 224, + [691] = 190, + [692] = 191, + [693] = 192, + [694] = 193, + [695] = 150, + [696] = 151, + [697] = 233, + [698] = 221, + [699] = 92, + [700] = 293, + [701] = 234, + [702] = 101, + [703] = 236, + [704] = 103, + [705] = 153, + [706] = 104, + [707] = 237, + [708] = 201, + [709] = 202, + [710] = 203, + [711] = 204, + [712] = 205, + [713] = 206, + [714] = 220, + [715] = 240, + [716] = 241, + [717] = 242, + [718] = 222, + [719] = 154, + [720] = 106, + [721] = 208, + [722] = 209, + [723] = 210, + [724] = 107, + [725] = 226, + [726] = 244, + [727] = 113, + [728] = 114, + [729] = 89, + [730] = 245, + [731] = 90, + [732] = 250, + [733] = 227, + [734] = 124, + [735] = 125, + [736] = 126, + [737] = 161, + [738] = 162, + [739] = 215, + [740] = 216, + [741] = 217, + [742] = 228, + [743] = 163, + [744] = 164, + [745] = 218, + [746] = 165, + [747] = 166, + [748] = 229, + [749] = 152, + [750] = 641, + [751] = 597, + [752] = 30, [753] = 753, [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, + [755] = 641, + [756] = 641, + [757] = 44, [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 763, - [764] = 764, + [759] = 60, + [760] = 61, + [761] = 86, + [762] = 64, + [763] = 65, + [764] = 66, [765] = 765, [766] = 766, [767] = 767, [768] = 768, - [769] = 27, - [770] = 770, - [771] = 32, - [772] = 772, - [773] = 767, - [774] = 774, - [775] = 775, - [776] = 776, + [769] = 70, + [770] = 77, + [771] = 83, + [772] = 39, + [773] = 40, + [774] = 41, + [775] = 42, + [776] = 43, [777] = 777, - [778] = 767, - [779] = 33, - [780] = 780, - [781] = 27, - [782] = 768, + [778] = 778, + [779] = 779, + [780] = 758, + [781] = 781, + [782] = 782, [783] = 783, - [784] = 784, - [785] = 768, + [784] = 758, + [785] = 785, [786] = 786, - [787] = 776, - [788] = 788, - [789] = 789, - [790] = 29, - [791] = 30, - [792] = 767, - [793] = 776, - [794] = 776, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 801, - [802] = 776, - [803] = 803, - [804] = 804, - [805] = 32, - [806] = 806, - [807] = 33, - [808] = 808, + [787] = 787, + [788] = 781, + [789] = 765, + [790] = 790, + [791] = 791, + [792] = 766, + [793] = 767, + [794] = 758, + [795] = 781, + [796] = 765, + [797] = 765, + [798] = 766, + [799] = 767, + [800] = 768, + [801] = 766, + [802] = 777, + [803] = 778, + [804] = 767, + [805] = 768, + [806] = 777, + [807] = 768, + [808] = 778, [809] = 809, [810] = 810, - [811] = 34, - [812] = 768, - [813] = 767, - [814] = 768, - [815] = 768, - [816] = 767, + [811] = 758, + [812] = 781, + [813] = 813, + [814] = 758, + [815] = 781, + [816] = 286, [817] = 817, - [818] = 29, - [819] = 30, - [820] = 776, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 426, - [825] = 825, + [818] = 765, + [819] = 766, + [820] = 767, + [821] = 768, + [822] = 777, + [823] = 777, + [824] = 778, + [825] = 778, [826] = 826, [827] = 827, - [828] = 828, - [829] = 34, - [830] = 830, - [831] = 767, - [832] = 776, + [828] = 758, + [829] = 781, + [830] = 765, + [831] = 766, + [832] = 767, [833] = 768, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 843, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, + [834] = 777, + [835] = 778, + [836] = 777, + [837] = 765, + [838] = 758, + [839] = 781, + [840] = 765, + [841] = 766, + [842] = 767, + [843] = 768, + [844] = 777, + [845] = 778, + [846] = 766, + [847] = 30, + [848] = 641, + [849] = 767, + [850] = 781, + [851] = 765, + [852] = 766, + [853] = 767, + [854] = 768, + [855] = 777, + [856] = 778, + [857] = 641, + [858] = 768, + [859] = 778, + [860] = 758, + [861] = 781, + [862] = 57, + [863] = 58, [864] = 864, - [865] = 865, - [866] = 866, + [865] = 864, + [866] = 864, [867] = 867, - [868] = 868, - [869] = 869, - [870] = 846, - [871] = 847, - [872] = 848, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 849, - [877] = 877, - [878] = 854, - [879] = 855, - [880] = 843, - [881] = 851, - [882] = 856, - [883] = 857, - [884] = 858, - [885] = 859, - [886] = 860, - [887] = 887, - [888] = 852, - [889] = 864, - [890] = 844, - [891] = 845, - [892] = 846, - [893] = 847, - [894] = 848, - [895] = 849, - [896] = 851, - [897] = 852, - [898] = 898, - [899] = 873, - [900] = 854, - [901] = 855, - [902] = 856, - [903] = 857, - [904] = 858, - [905] = 859, - [906] = 860, - [907] = 907, - [908] = 844, - [909] = 846, - [910] = 847, - [911] = 848, - [912] = 849, - [913] = 843, - [914] = 851, - [915] = 852, - [916] = 854, - [917] = 855, - [918] = 856, - [919] = 857, - [920] = 858, - [921] = 859, - [922] = 860, - [923] = 887, - [924] = 864, - [925] = 844, - [926] = 887, - [927] = 845, - [928] = 847, - [929] = 848, - [930] = 849, - [931] = 843, - [932] = 851, - [933] = 852, - [934] = 873, - [935] = 935, - [936] = 854, - [937] = 855, - [938] = 856, - [939] = 857, - [940] = 858, - [941] = 859, - [942] = 860, - [943] = 907, - [944] = 944, + [868] = 864, + [869] = 864, + [870] = 864, + [871] = 25, + [872] = 23, + [873] = 22, + [874] = 641, + [875] = 864, + [876] = 20, + [877] = 24, + [878] = 878, + [879] = 864, + [880] = 864, + [881] = 21, + [882] = 30, + [883] = 883, + [884] = 883, + [885] = 883, + [886] = 883, + [887] = 883, + [888] = 36, + [889] = 883, + [890] = 883, + [891] = 883, + [892] = 883, + [893] = 30, + [894] = 36, + [895] = 30, + [896] = 30, + [897] = 897, + [898] = 36, + [899] = 25, + [900] = 23, + [901] = 22, + [902] = 20, + [903] = 36, + [904] = 24, + [905] = 21, + [906] = 36, + [907] = 36, + [908] = 908, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 909, + [913] = 913, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 914, + [919] = 919, + [920] = 920, + [921] = 914, + [922] = 909, + [923] = 923, + [924] = 924, + [925] = 924, + [926] = 923, + [927] = 927, + [928] = 927, + [929] = 929, + [930] = 927, + [931] = 929, + [932] = 924, + [933] = 923, + [934] = 929, + [935] = 924, + [936] = 923, + [937] = 923, + [938] = 927, + [939] = 929, + [940] = 924, + [941] = 927, + [942] = 923, + [943] = 929, + [944] = 929, [945] = 945, - [946] = 864, - [947] = 845, - [948] = 873, - [949] = 907, - [950] = 864, - [951] = 845, - [952] = 873, - [953] = 907, - [954] = 864, - [955] = 845, - [956] = 845, - [957] = 845, - [958] = 887, - [959] = 864, - [960] = 845, - [961] = 907, - [962] = 962, - [963] = 944, - [964] = 945, - [965] = 898, - [966] = 844, - [967] = 846, - [968] = 847, - [969] = 848, - [970] = 849, - [971] = 843, - [972] = 851, - [973] = 852, - [974] = 854, - [975] = 855, - [976] = 856, - [977] = 857, - [978] = 858, - [979] = 859, - [980] = 860, - [981] = 981, - [982] = 887, - [983] = 887, - [984] = 864, - [985] = 844, - [986] = 846, - [987] = 847, - [988] = 848, - [989] = 849, - [990] = 843, - [991] = 851, - [992] = 852, - [993] = 854, - [994] = 855, - [995] = 856, - [996] = 857, - [997] = 858, - [998] = 859, - [999] = 860, - [1000] = 887, - [1001] = 864, - [1002] = 962, - [1003] = 844, - [1004] = 846, - [1005] = 459, - [1006] = 426, - [1007] = 1007, - [1008] = 426, - [1009] = 426, - [1010] = 459, - [1011] = 1011, - [1012] = 426, - [1013] = 459, - [1014] = 459, - [1015] = 1015, - [1016] = 459, - [1017] = 1017, - [1018] = 459, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, - [1022] = 1022, - [1023] = 1023, - [1024] = 1024, - [1025] = 1025, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 954, + [955] = 955, + [956] = 956, + [957] = 956, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 23, + [963] = 963, + [964] = 964, + [965] = 965, + [966] = 945, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 959, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 963, + [975] = 975, + [976] = 976, + [977] = 969, + [978] = 967, + [979] = 958, + [980] = 971, + [981] = 972, + [982] = 948, + [983] = 20, + [984] = 984, + [985] = 24, + [986] = 973, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 984, + [993] = 950, + [994] = 975, + [995] = 951, + [996] = 22, + [997] = 955, + [998] = 955, + [999] = 956, + [1000] = 959, + [1001] = 958, + [1002] = 984, + [1003] = 990, + [1004] = 991, + [1005] = 971, + [1006] = 950, + [1007] = 972, + [1008] = 973, + [1009] = 975, + [1010] = 952, + [1011] = 953, + [1012] = 954, + [1013] = 952, + [1014] = 953, + [1015] = 949, + [1016] = 954, + [1017] = 951, + [1018] = 25, + [1019] = 963, + [1020] = 976, + [1021] = 945, + [1022] = 21, + [1023] = 949, + [1024] = 990, + [1025] = 967, [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, + [1027] = 976, + [1028] = 948, + [1029] = 969, [1030] = 1030, - [1031] = 1031, + [1031] = 991, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1035, + [1035] = 1033, [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, - [1040] = 1040, + [1039] = 21, + [1040] = 25, [1041] = 1041, [1042] = 1042, [1043] = 1043, @@ -4863,9 +4940,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1046] = 1046, [1047] = 1047, [1048] = 1048, - [1049] = 1049, + [1049] = 1033, [1050] = 1050, - [1051] = 1051, + [1051] = 1042, [1052] = 1052, [1053] = 1053, [1054] = 1054, @@ -4875,143 +4952,143 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1061, + [1061] = 1042, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, + [1067] = 1036, + [1068] = 1037, + [1069] = 1038, + [1070] = 1041, + [1071] = 1050, + [1072] = 1054, [1073] = 1073, [1074] = 1074, [1075] = 1075, - [1076] = 1076, + [1076] = 1045, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, + [1080] = 1052, + [1081] = 1073, + [1082] = 1074, + [1083] = 1075, + [1084] = 1032, [1085] = 1085, [1086] = 1086, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1090, + [1090] = 1033, [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, + [1092] = 1077, + [1093] = 1078, + [1094] = 1079, + [1095] = 1046, + [1096] = 1045, + [1097] = 1033, + [1098] = 1042, + [1099] = 1047, + [1100] = 1042, + [1101] = 1045, + [1102] = 1046, + [1103] = 1047, + [1104] = 1048, + [1105] = 1033, + [1106] = 1042, + [1107] = 1052, + [1108] = 1053, + [1109] = 1055, + [1110] = 1056, + [1111] = 1058, + [1112] = 1059, + [1113] = 1060, + [1114] = 1062, + [1115] = 1063, + [1116] = 1064, + [1117] = 1065, + [1118] = 1066, + [1119] = 1036, [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] = 1139, + [1121] = 1038, + [1122] = 1041, + [1123] = 1050, + [1124] = 1054, + [1125] = 1073, + [1126] = 1074, + [1127] = 1075, + [1128] = 1032, + [1129] = 1077, + [1130] = 1078, + [1131] = 1079, + [1132] = 1085, + [1133] = 1053, + [1134] = 23, + [1135] = 1086, + [1136] = 1087, + [1137] = 1088, + [1138] = 1089, + [1139] = 22, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, + [1141] = 1091, + [1142] = 1047, + [1143] = 1052, + [1144] = 1056, + [1145] = 1064, + [1146] = 1065, + [1147] = 1066, + [1148] = 1073, + [1149] = 1074, + [1150] = 1075, + [1151] = 1032, + [1152] = 1086, + [1153] = 1087, + [1154] = 1088, + [1155] = 1091, + [1156] = 1045, [1157] = 1157, - [1158] = 1158, + [1158] = 1057, [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, + [1160] = 1085, + [1161] = 1055, + [1162] = 1159, [1163] = 1163, - [1164] = 1164, - [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, + [1164] = 1086, + [1165] = 1087, + [1166] = 1088, + [1167] = 1045, + [1168] = 1056, + [1169] = 1033, + [1170] = 1042, + [1171] = 1089, + [1172] = 1045, + [1173] = 1033, + [1174] = 1042, + [1175] = 1058, + [1176] = 1059, + [1177] = 20, + [1178] = 1060, + [1179] = 24, [1180] = 1180, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, + [1184] = 1091, + [1185] = 1057, + [1186] = 1062, + [1187] = 1063, + [1188] = 1159, + [1189] = 1064, + [1190] = 1045, + [1191] = 1065, + [1192] = 1066, + [1193] = 1033, + [1194] = 1042, + [1195] = 1048, + [1196] = 1045, + [1197] = 1037, [1198] = 1198, [1199] = 1199, [1200] = 1200, @@ -5030,293 +5107,293 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1213] = 1213, [1214] = 1214, [1215] = 1215, - [1216] = 1216, + [1216] = 1201, [1217] = 1217, [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1219] = 1203, + [1220] = 1206, + [1221] = 1207, + [1222] = 1208, [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1236, - [1237] = 1237, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, + [1227] = 1211, + [1228] = 1212, + [1229] = 1218, + [1230] = 1223, + [1231] = 1211, + [1232] = 1212, + [1233] = 1213, + [1234] = 1215, + [1235] = 1201, + [1236] = 1203, + [1237] = 1206, + [1238] = 1207, + [1239] = 1208, + [1240] = 1213, + [1241] = 1198, [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1248, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, + [1243] = 1202, + [1244] = 1204, + [1245] = 1209, + [1246] = 1210, + [1247] = 1214, + [1248] = 1217, + [1249] = 1224, + [1250] = 1215, + [1251] = 1201, + [1252] = 1218, + [1253] = 1203, [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, + [1255] = 1206, + [1256] = 1207, + [1257] = 1223, + [1258] = 1208, [1259] = 1259, - [1260] = 1260, - [1261] = 1261, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, + [1260] = 1211, + [1261] = 1212, + [1262] = 1213, + [1263] = 1215, + [1264] = 1201, + [1265] = 1203, + [1266] = 1206, + [1267] = 1207, + [1268] = 1208, [1269] = 1269, [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, + [1271] = 1198, + [1272] = 1242, + [1273] = 1202, + [1274] = 1204, + [1275] = 1209, + [1276] = 1210, + [1277] = 1214, + [1278] = 1217, + [1279] = 1224, [1280] = 1280, - [1281] = 30, - [1282] = 29, - [1283] = 27, - [1284] = 32, - [1285] = 33, - [1286] = 34, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1290, - [1293] = 1287, - [1294] = 1294, - [1295] = 1294, - [1296] = 1289, - [1297] = 1291, - [1298] = 1288, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 701, - [1307] = 1289, - [1308] = 1305, - [1309] = 1287, - [1310] = 1288, - [1311] = 1291, - [1312] = 1294, - [1313] = 1305, - [1314] = 1290, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, - [1320] = 1320, + [1281] = 1259, + [1282] = 1282, + [1283] = 1283, + [1284] = 1199, + [1285] = 1218, + [1286] = 1198, + [1287] = 1242, + [1288] = 1202, + [1289] = 1204, + [1290] = 1209, + [1291] = 1218, + [1292] = 1210, + [1293] = 1214, + [1294] = 1254, + [1295] = 1217, + [1296] = 1224, + [1297] = 1223, + [1298] = 1298, + [1299] = 1198, + [1300] = 1259, + [1301] = 1242, + [1302] = 1211, + [1303] = 1212, + [1304] = 1202, + [1305] = 1269, + [1306] = 1204, + [1307] = 1307, + [1308] = 1254, + [1309] = 1209, + [1310] = 1213, + [1311] = 1223, + [1312] = 1210, + [1313] = 1259, + [1314] = 1215, + [1315] = 1269, + [1316] = 1270, + [1317] = 1270, + [1318] = 1201, + [1319] = 1283, + [1320] = 1199, [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1332, - [1333] = 1333, - [1334] = 1334, + [1322] = 1214, + [1323] = 1203, + [1324] = 1206, + [1325] = 1217, + [1326] = 1207, + [1327] = 1208, + [1328] = 1215, + [1329] = 1254, + [1330] = 1259, + [1331] = 1269, + [1332] = 1270, + [1333] = 1283, + [1334] = 1199, [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, + [1336] = 1254, + [1337] = 1259, + [1338] = 1298, + [1339] = 1254, [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, + [1341] = 1259, + [1342] = 1269, + [1343] = 1198, + [1344] = 1242, + [1345] = 1270, + [1346] = 1202, + [1347] = 1204, + [1348] = 1209, + [1349] = 1210, + [1350] = 1214, + [1351] = 1217, + [1352] = 1224, [1353] = 1353, [1354] = 1354, - [1355] = 1355, - [1356] = 1356, - [1357] = 1357, + [1355] = 1218, + [1356] = 1198, + [1357] = 1223, [1358] = 1358, [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1353, - [1363] = 1359, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1358, - [1368] = 1357, - [1369] = 1366, - [1370] = 1370, - [1371] = 1371, - [1372] = 1370, - [1373] = 1365, - [1374] = 1374, - [1375] = 1375, - [1376] = 1375, - [1377] = 1377, - [1378] = 1377, - [1379] = 1364, - [1380] = 1380, - [1381] = 1381, - [1382] = 1381, - [1383] = 1355, - [1384] = 1354, - [1385] = 1361, - [1386] = 1360, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 1387, - [1399] = 1399, - [1400] = 1400, - [1401] = 1394, - [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1400, - [1406] = 1406, - [1407] = 1407, - [1408] = 1388, - [1409] = 1409, + [1360] = 1242, + [1361] = 1211, + [1362] = 1212, + [1363] = 1213, + [1364] = 1215, + [1365] = 1201, + [1366] = 1202, + [1367] = 1203, + [1368] = 1206, + [1369] = 1207, + [1370] = 1208, + [1371] = 1198, + [1372] = 1242, + [1373] = 1202, + [1374] = 1204, + [1375] = 1209, + [1376] = 1210, + [1377] = 1214, + [1378] = 1217, + [1379] = 1224, + [1380] = 1340, + [1381] = 1218, + [1382] = 1211, + [1383] = 1223, + [1384] = 1204, + [1385] = 1211, + [1386] = 1212, + [1387] = 1213, + [1388] = 1215, + [1389] = 1201, + [1390] = 1203, + [1391] = 1206, + [1392] = 1207, + [1393] = 1208, + [1394] = 1198, + [1395] = 1242, + [1396] = 1202, + [1397] = 1204, + [1398] = 1209, + [1399] = 1210, + [1400] = 1214, + [1401] = 1217, + [1402] = 1224, + [1403] = 1209, + [1404] = 1210, + [1405] = 1214, + [1406] = 1217, + [1407] = 1283, + [1408] = 1199, + [1409] = 1254, [1410] = 1410, - [1411] = 1402, - [1412] = 1397, - [1413] = 1409, - [1414] = 1414, - [1415] = 1395, - [1416] = 1391, - [1417] = 1417, - [1418] = 1410, - [1419] = 1390, - [1420] = 1403, - [1421] = 1393, - [1422] = 1414, - [1423] = 1406, - [1424] = 1389, - [1425] = 1396, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 545, - [1432] = 543, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, + [1411] = 1411, + [1412] = 1412, + [1413] = 1224, + [1414] = 1298, + [1415] = 1254, + [1416] = 1340, + [1417] = 1259, + [1418] = 1418, + [1419] = 1218, + [1420] = 1212, + [1421] = 1254, + [1422] = 1259, + [1423] = 1213, + [1424] = 1223, + [1425] = 1223, + [1426] = 1218, + [1427] = 1211, + [1428] = 1212, + [1429] = 1213, + [1430] = 1215, + [1431] = 1201, + [1432] = 1203, + [1433] = 1206, + [1434] = 1207, + [1435] = 1208, + [1436] = 1242, + [1437] = 1283, + [1438] = 1224, [1439] = 1439, [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 547, - [1444] = 557, - [1445] = 559, - [1446] = 670, - [1447] = 553, - [1448] = 559, - [1449] = 552, - [1450] = 556, - [1451] = 552, - [1452] = 546, - [1453] = 555, - [1454] = 550, - [1455] = 556, - [1456] = 553, - [1457] = 558, - [1458] = 555, - [1459] = 546, - [1460] = 554, - [1461] = 557, - [1462] = 551, - [1463] = 550, - [1464] = 558, - [1465] = 551, - [1466] = 554, - [1467] = 547, - [1468] = 670, - [1469] = 557, - [1470] = 551, - [1471] = 558, - [1472] = 559, - [1473] = 550, - [1474] = 553, - [1475] = 552, - [1476] = 555, - [1477] = 700, - [1478] = 556, - [1479] = 554, - [1480] = 547, - [1481] = 546, - [1482] = 670, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1449, + [1450] = 1450, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1455, + [1456] = 1456, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 233, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 1471, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1479, + [1480] = 1480, + [1481] = 1481, + [1482] = 1482, [1483] = 1483, [1484] = 1484, - [1485] = 670, - [1486] = 670, - [1487] = 699, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, [1488] = 1488, - [1489] = 670, + [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1491, + [1493] = 1493, [1494] = 1494, - [1495] = 1494, - [1496] = 1491, - [1497] = 1494, - [1498] = 1491, - [1499] = 1494, - [1500] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, [1501] = 1501, - [1502] = 1491, + [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, @@ -5331,36 +5408,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 551, - [1518] = 557, - [1519] = 558, - [1520] = 559, - [1521] = 556, - [1522] = 553, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, [1523] = 1523, - [1524] = 547, - [1525] = 546, - [1526] = 550, - [1527] = 552, - [1528] = 554, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1530, + [1532] = 1532, [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 699, + [1539] = 1539, [1540] = 1540, - [1541] = 1533, - [1542] = 1536, + [1541] = 1541, + [1542] = 1542, [1543] = 1543, - [1544] = 1534, - [1545] = 555, - [1546] = 1531, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, @@ -5381,19 +5458,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1564] = 1564, [1565] = 1565, [1566] = 1566, - [1567] = 699, - [1568] = 555, - [1569] = 554, - [1570] = 557, - [1571] = 558, - [1572] = 559, - [1573] = 556, - [1574] = 553, - [1575] = 547, - [1576] = 546, - [1577] = 550, - [1578] = 551, - [1579] = 552, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, [1580] = 1580, [1581] = 1581, [1582] = 1582, @@ -5409,32 +5486,32 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1592] = 1592, [1593] = 1593, [1594] = 1594, - [1595] = 1294, + [1595] = 1595, [1596] = 1596, [1597] = 1597, [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1288, - [1602] = 1291, + [1601] = 1601, + [1602] = 1602, [1603] = 1603, - [1604] = 1291, - [1605] = 1287, + [1604] = 1604, + [1605] = 1605, [1606] = 1606, - [1607] = 1287, + [1607] = 1607, [1608] = 1608, [1609] = 1609, [1610] = 1610, - [1611] = 1611, + [1611] = 244, [1612] = 1612, [1613] = 1613, - [1614] = 1288, - [1615] = 1294, - [1616] = 1289, - [1617] = 1289, - [1618] = 1290, + [1614] = 1614, + [1615] = 1615, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, [1619] = 1619, - [1620] = 1290, + [1620] = 1620, [1621] = 1621, [1622] = 1622, [1623] = 1623, @@ -5481,7 +5558,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 1632, + [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, @@ -5523,38 +5600,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1709, + [1709] = 1708, [1710] = 1710, - [1711] = 1711, - [1712] = 1712, + [1711] = 1710, + [1712] = 1707, [1713] = 1713, [1714] = 1714, [1715] = 1715, - [1716] = 1716, - [1717] = 1717, - [1718] = 1718, + [1716] = 1714, + [1717] = 1713, + [1718] = 1715, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, [1723] = 1723, - [1724] = 1724, - [1725] = 1725, - [1726] = 1726, - [1727] = 1727, - [1728] = 1728, - [1729] = 1287, - [1730] = 1730, - [1731] = 1731, - [1732] = 1288, - [1733] = 1291, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1294, - [1738] = 1289, + [1724] = 1723, + [1725] = 897, + [1726] = 1723, + [1727] = 1723, + [1728] = 1723, + [1729] = 1707, + [1730] = 1715, + [1731] = 1708, + [1732] = 1723, + [1733] = 1714, + [1734] = 1710, + [1735] = 1713, + [1736] = 1723, + [1737] = 1737, + [1738] = 1738, [1739] = 1739, - [1740] = 1290, + [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, @@ -5562,539 +5639,539 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1745] = 1745, [1746] = 1746, [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1750, + [1748] = 1745, + [1749] = 1746, + [1750] = 1746, [1751] = 1751, - [1752] = 1752, + [1752] = 1745, [1753] = 1753, - [1754] = 1754, + [1754] = 224, [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1758, - [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, + [1758] = 1755, + [1759] = 1757, + [1760] = 1757, + [1761] = 46, + [1762] = 1757, + [1763] = 236, + [1764] = 1755, + [1765] = 1755, + [1766] = 268, + [1767] = 240, [1768] = 1768, [1769] = 1769, - [1770] = 1770, - [1771] = 1771, + [1770] = 48, + [1771] = 1768, [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1777, + [1773] = 229, + [1774] = 237, + [1775] = 1768, + [1776] = 267, + [1777] = 257, [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1781, + [1779] = 258, + [1780] = 49, + [1781] = 1768, [1782] = 1782, - [1783] = 1287, - [1784] = 1784, - [1785] = 1785, - [1786] = 1288, - [1787] = 1291, - [1788] = 1294, - [1789] = 1289, - [1790] = 1290, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, + [1783] = 241, + [1784] = 1782, + [1785] = 269, + [1786] = 242, + [1787] = 234, + [1788] = 228, + [1789] = 50, + [1790] = 1768, + [1791] = 232, + [1792] = 1778, + [1793] = 227, + [1794] = 1782, + [1795] = 1772, [1796] = 1796, - [1797] = 1797, - [1798] = 1798, + [1797] = 1778, + [1798] = 1772, [1799] = 1799, - [1800] = 1800, + [1800] = 1772, [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1808, - [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] = 1819, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1832, - [1833] = 1808, - [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 1837, - [1838] = 1838, - [1839] = 1839, - [1840] = 1819, - [1841] = 1841, - [1842] = 1842, - [1843] = 1808, + [1802] = 250, + [1803] = 1772, + [1804] = 259, + [1805] = 231, + [1806] = 271, + [1807] = 249, + [1808] = 235, + [1809] = 238, + [1810] = 246, + [1811] = 247, + [1812] = 248, + [1813] = 252, + [1814] = 253, + [1815] = 254, + [1816] = 255, + [1817] = 256, + [1818] = 260, + [1819] = 261, + [1820] = 262, + [1821] = 263, + [1822] = 264, + [1823] = 265, + [1824] = 266, + [1825] = 270, + [1826] = 272, + [1827] = 273, + [1828] = 274, + [1829] = 275, + [1830] = 276, + [1831] = 277, + [1832] = 278, + [1833] = 87, + [1834] = 280, + [1835] = 281, + [1836] = 282, + [1837] = 283, + [1838] = 284, + [1839] = 245, + [1840] = 251, + [1841] = 239, + [1842] = 223, + [1843] = 1843, [1844] = 1844, - [1845] = 1845, + [1845] = 1844, [1846] = 1846, [1847] = 1847, - [1848] = 1848, - [1849] = 1849, + [1848] = 1844, + [1849] = 1847, [1850] = 1850, [1851] = 1851, - [1852] = 1808, + [1852] = 1852, [1853] = 1853, - [1854] = 1854, + [1854] = 1844, [1855] = 1855, [1856] = 1856, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1287, + [1857] = 1855, + [1858] = 1851, + [1859] = 1844, + [1860] = 1847, [1861] = 1861, [1862] = 1862, - [1863] = 1863, + [1863] = 1847, [1864] = 1864, - [1865] = 1865, + [1865] = 1847, [1866] = 1866, - [1867] = 1288, - [1868] = 1868, - [1869] = 1291, - [1870] = 1870, + [1867] = 1855, + [1868] = 1851, + [1869] = 1869, + [1870] = 1869, [1871] = 1871, [1872] = 1872, [1873] = 1873, - [1874] = 1294, - [1875] = 1287, - [1876] = 1289, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, [1877] = 1877, [1878] = 1878, [1879] = 1879, [1880] = 1880, [1881] = 1881, - [1882] = 1290, + [1882] = 1882, [1883] = 1883, - [1884] = 1884, + [1884] = 1871, [1885] = 1885, [1886] = 1886, [1887] = 1887, - [1888] = 1888, - [1889] = 1889, + [1888] = 1873, + [1889] = 1872, [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, + [1891] = 1877, + [1892] = 1873, + [1893] = 1874, + [1894] = 1875, + [1895] = 1876, + [1896] = 1877, + [1897] = 1878, + [1898] = 1879, + [1899] = 1880, + [1900] = 1881, + [1901] = 1882, + [1902] = 1883, + [1903] = 1871, + [1904] = 1885, + [1905] = 1886, + [1906] = 1872, [1907] = 1907, - [1908] = 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] = 1288, - [1932] = 1932, - [1933] = 1933, - [1934] = 1291, - [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] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 1962, - [1963] = 1294, - [1964] = 1964, - [1965] = 1965, + [1908] = 48, + [1909] = 1877, + [1910] = 1878, + [1911] = 1879, + [1912] = 1869, + [1913] = 1878, + [1914] = 1880, + [1915] = 1879, + [1916] = 1885, + [1917] = 1890, + [1918] = 1890, + [1919] = 1907, + [1920] = 1886, + [1921] = 1887, + [1922] = 1907, + [1923] = 50, + [1924] = 1907, + [1925] = 1874, + [1926] = 1869, + [1927] = 1887, + [1928] = 1881, + [1929] = 1882, + [1930] = 1883, + [1931] = 1871, + [1932] = 1880, + [1933] = 1872, + [1934] = 1869, + [1935] = 1875, + [1936] = 1876, + [1937] = 1881, + [1938] = 1887, + [1939] = 1873, + [1940] = 1874, + [1941] = 1875, + [1942] = 1876, + [1943] = 1886, + [1944] = 1882, + [1945] = 1873, + [1946] = 1885, + [1947] = 1877, + [1948] = 1878, + [1949] = 1879, + [1950] = 1880, + [1951] = 1874, + [1952] = 1887, + [1953] = 1883, + [1954] = 1875, + [1955] = 1881, + [1956] = 1882, + [1957] = 1883, + [1958] = 1871, + [1959] = 1876, + [1960] = 1890, + [1961] = 1885, + [1962] = 1886, + [1963] = 1872, + [1964] = 1890, + [1965] = 1907, [1966] = 1966, - [1967] = 1289, - [1968] = 1290, + [1967] = 1966, + [1968] = 1968, [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, [1973] = 1973, [1974] = 1974, - [1975] = 1975, + [1975] = 1971, [1976] = 1976, [1977] = 1977, [1978] = 1978, [1979] = 1979, [1980] = 1980, - [1981] = 1981, - [1982] = 1982, + [1981] = 1968, + [1982] = 1970, [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1987, - [1988] = 1988, + [1984] = 1978, + [1985] = 1968, + [1986] = 1970, + [1987] = 1972, + [1988] = 1973, [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, + [1993] = 1989, + [1994] = 1974, + [1995] = 1990, + [1996] = 1971, + [1997] = 1972, + [1998] = 1976, + [1999] = 1973, + [2000] = 1974, + [2001] = 1991, + [2002] = 48, + [2003] = 1976, + [2004] = 1991, + [2005] = 1989, + [2006] = 1992, + [2007] = 1990, [2008] = 2008, [2009] = 2009, [2010] = 2010, - [2011] = 2011, + [2011] = 1992, [2012] = 2012, - [2013] = 2013, - [2014] = 2014, + [2013] = 1992, + [2014] = 1977, [2015] = 1992, - [2016] = 2016, - [2017] = 2017, - [2018] = 1816, - [2019] = 1857, - [2020] = 1994, - [2021] = 2006, - [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] = 1819, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 1819, - [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] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2057, - [2082] = 2062, - [2083] = 2076, - [2084] = 2054, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 2094, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2080, - [2099] = 2054, - [2100] = 2100, - [2101] = 2071, - [2102] = 2076, - [2103] = 2080, - [2104] = 2057, - [2105] = 2062, - [2106] = 2054, - [2107] = 2107, - [2108] = 2071, - [2109] = 2076, - [2110] = 2080, - [2111] = 2057, - [2112] = 2062, - [2113] = 2054, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2057, - [2125] = 2079, - [2126] = 2126, - [2127] = 2072, - [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2062, - [2132] = 2132, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 2087, - [2137] = 2130, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2071, - [2145] = 2086, - [2146] = 2071, - [2147] = 2076, - [2148] = 2080, - [2149] = 2057, - [2150] = 2062, - [2151] = 2054, - [2152] = 2088, - [2153] = 2091, - [2154] = 2093, - [2155] = 2071, - [2156] = 2156, - [2157] = 2076, - [2158] = 2080, - [2159] = 2057, - [2160] = 2062, - [2161] = 2054, - [2162] = 2076, - [2163] = 2133, - [2164] = 2164, - [2165] = 2080, - [2166] = 2166, - [2167] = 2063, - [2168] = 2092, - [2169] = 2156, - [2170] = 2170, - [2171] = 2071, - [2172] = 2071, - [2173] = 2057, - [2174] = 2174, - [2175] = 2175, - [2176] = 2076, - [2177] = 2062, - [2178] = 2178, - [2179] = 2135, - [2180] = 2071, - [2181] = 2076, - [2182] = 2080, - [2183] = 2057, - [2184] = 2062, - [2185] = 2054, - [2186] = 2080, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2054, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2205, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2205, - [2211] = 2205, - [2212] = 2205, - [2213] = 2213, - [2214] = 2205, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2205, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2205, - [2235] = 2235, - [2236] = 2205, + [2016] = 49, + [2017] = 2012, + [2018] = 1991, + [2019] = 1977, + [2020] = 1966, + [2021] = 1979, + [2022] = 2008, + [2023] = 1979, + [2024] = 1969, + [2025] = 1980, + [2026] = 1983, + [2027] = 2012, + [2028] = 1971, + [2029] = 1969, + [2030] = 1973, + [2031] = 1974, + [2032] = 1966, + [2033] = 1976, + [2034] = 1969, + [2035] = 1977, + [2036] = 1979, + [2037] = 1980, + [2038] = 1983, + [2039] = 1966, + [2040] = 1971, + [2041] = 1983, + [2042] = 1978, + [2043] = 1973, + [2044] = 1974, + [2045] = 1968, + [2046] = 1976, + [2047] = 1970, + [2048] = 1969, + [2049] = 2012, + [2050] = 1972, + [2051] = 1977, + [2052] = 1989, + [2053] = 1979, + [2054] = 1980, + [2055] = 1990, + [2056] = 1991, + [2057] = 1983, + [2058] = 1978, + [2059] = 50, + [2060] = 2008, + [2061] = 1968, + [2062] = 1970, + [2063] = 1972, + [2064] = 2012, + [2065] = 1989, + [2066] = 1990, + [2067] = 46, + [2068] = 2008, + [2069] = 1978, + [2070] = 1980, + [2071] = 278, + [2072] = 286, + [2073] = 252, + [2074] = 251, + [2075] = 44, + [2076] = 253, + [2077] = 228, + [2078] = 254, + [2079] = 234, + [2080] = 255, + [2081] = 235, + [2082] = 229, + [2083] = 256, + [2084] = 223, + [2085] = 238, + [2086] = 45, + [2087] = 245, + [2088] = 267, + [2089] = 236, + [2090] = 260, + [2091] = 59, + [2092] = 261, + [2093] = 232, + [2094] = 258, + [2095] = 262, + [2096] = 237, + [2097] = 263, + [2098] = 246, + [2099] = 268, + [2100] = 264, + [2101] = 2101, + [2102] = 265, + [2103] = 266, + [2104] = 2101, + [2105] = 270, + [2106] = 247, + [2107] = 241, + [2108] = 257, + [2109] = 271, + [2110] = 272, + [2111] = 55, + [2112] = 231, + [2113] = 273, + [2114] = 250, + [2115] = 248, + [2116] = 274, + [2117] = 2101, + [2118] = 275, + [2119] = 276, + [2120] = 277, + [2121] = 227, + [2122] = 87, + [2123] = 242, + [2124] = 280, + [2125] = 259, + [2126] = 281, + [2127] = 282, + [2128] = 283, + [2129] = 284, + [2130] = 269, + [2131] = 224, + [2132] = 82, + [2133] = 240, + [2134] = 2101, + [2135] = 239, + [2136] = 249, + [2137] = 2101, + [2138] = 222, + [2139] = 286, + [2140] = 44, + [2141] = 226, + [2142] = 89, + [2143] = 90, + [2144] = 92, + [2145] = 94, + [2146] = 98, + [2147] = 99, + [2148] = 100, + [2149] = 103, + [2150] = 104, + [2151] = 106, + [2152] = 107, + [2153] = 113, + [2154] = 114, + [2155] = 124, + [2156] = 125, + [2157] = 126, + [2158] = 101, + [2159] = 127, + [2160] = 128, + [2161] = 129, + [2162] = 130, + [2163] = 137, + [2164] = 141, + [2165] = 142, + [2166] = 149, + [2167] = 230, + [2168] = 233, + [2169] = 293, + [2170] = 150, + [2171] = 151, + [2172] = 152, + [2173] = 153, + [2174] = 154, + [2175] = 161, + [2176] = 162, + [2177] = 163, + [2178] = 244, + [2179] = 165, + [2180] = 166, + [2181] = 167, + [2182] = 168, + [2183] = 169, + [2184] = 170, + [2185] = 171, + [2186] = 179, + [2187] = 180, + [2188] = 181, + [2189] = 182, + [2190] = 183, + [2191] = 184, + [2192] = 185, + [2193] = 186, + [2194] = 187, + [2195] = 188, + [2196] = 190, + [2197] = 191, + [2198] = 192, + [2199] = 193, + [2200] = 201, + [2201] = 202, + [2202] = 203, + [2203] = 204, + [2204] = 205, + [2205] = 206, + [2206] = 207, + [2207] = 208, + [2208] = 209, + [2209] = 210, + [2210] = 215, + [2211] = 216, + [2212] = 217, + [2213] = 218, + [2214] = 220, + [2215] = 221, + [2216] = 164, + [2217] = 597, + [2218] = 43, + [2219] = 57, + [2220] = 58, + [2221] = 60, + [2222] = 61, + [2223] = 86, + [2224] = 64, + [2225] = 65, + [2226] = 66, + [2227] = 70, + [2228] = 77, + [2229] = 83, + [2230] = 39, + [2231] = 40, + [2232] = 41, + [2233] = 42, + [2234] = 597, + [2235] = 92, + [2236] = 2236, [2237] = 2237, [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, + [2239] = 103, + [2240] = 77, + [2241] = 70, + [2242] = 39, + [2243] = 83, + [2244] = 41, + [2245] = 42, + [2246] = 43, + [2247] = 40, + [2248] = 597, [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2253, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, + [2250] = 58, + [2251] = 57, + [2252] = 60, + [2253] = 61, + [2254] = 86, + [2255] = 64, + [2256] = 65, + [2257] = 66, + [2258] = 66, [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2262, - [2263] = 2241, - [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, + [2260] = 597, + [2261] = 597, + [2262] = 57, + [2263] = 58, + [2264] = 60, + [2265] = 61, + [2266] = 86, + [2267] = 64, + [2268] = 65, + [2269] = 70, + [2270] = 77, + [2271] = 83, + [2272] = 39, + [2273] = 40, + [2274] = 41, + [2275] = 42, + [2276] = 43, [2277] = 2277, [2278] = 2278, [2279] = 2279, - [2280] = 2280, + [2280] = 597, [2281] = 2281, [2282] = 2282, [2283] = 2283, @@ -6103,93 +6180,1269 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2286] = 2286, [2287] = 2287, [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2241, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2297, - [2298] = 2298, - [2299] = 2299, - [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] = 2241, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, + [2289] = 779, + [2290] = 44, + [2291] = 57, + [2292] = 58, + [2293] = 60, + [2294] = 61, + [2295] = 86, + [2296] = 64, + [2297] = 65, + [2298] = 66, + [2299] = 83, + [2300] = 39, + [2301] = 40, + [2302] = 41, + [2303] = 77, + [2304] = 43, + [2305] = 70, + [2306] = 42, + [2307] = 286, + [2308] = 57, + [2309] = 70, + [2310] = 790, + [2311] = 60, + [2312] = 77, + [2313] = 61, + [2314] = 86, + [2315] = 64, + [2316] = 65, + [2317] = 66, + [2318] = 83, + [2319] = 58, + [2320] = 39, + [2321] = 40, + [2322] = 41, + [2323] = 42, + [2324] = 43, [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, + [2326] = 2325, + [2327] = 2325, + [2328] = 2325, [2329] = 2329, [2330] = 2330, - [2331] = 2331, + [2331] = 2329, [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2335, + [2333] = 2325, + [2334] = 2329, + [2335] = 2325, [2336] = 2336, - [2337] = 2337, + [2337] = 2329, [2338] = 2338, - [2339] = 2339, - [2340] = 2340, - [2341] = 2341, - [2342] = 2342, + [2339] = 2329, + [2340] = 2330, + [2341] = 2336, + [2342] = 2329, [2343] = 2343, [2344] = 2344, - [2345] = 2345, + [2345] = 2344, [2346] = 2346, [2347] = 2347, - [2348] = 2348, + [2348] = 2346, [2349] = 2349, - [2350] = 2350, + [2350] = 779, [2351] = 2351, [2352] = 2352, [2353] = 2353, [2354] = 2354, [2355] = 2355, [2356] = 2356, - [2357] = 2241, - [2358] = 2358, - [2359] = 2241, - [2360] = 2241, - [2361] = 2361, - [2362] = 2336, - [2363] = 2363, + [2357] = 2357, + [2358] = 2344, + [2359] = 2346, + [2360] = 2360, + [2361] = 2353, + [2362] = 2346, + [2363] = 57, [2364] = 2364, - [2365] = 2365, - [2366] = 2241, - [2367] = 2367, - [2368] = 2241, - [2369] = 2369, - [2370] = 2310, - [2371] = 2240, + [2365] = 60, + [2366] = 61, + [2367] = 86, + [2368] = 64, + [2369] = 65, + [2370] = 66, + [2371] = 2353, [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, + [2373] = 2344, + [2374] = 70, + [2375] = 77, + [2376] = 83, + [2377] = 39, + [2378] = 40, + [2379] = 2347, + [2380] = 41, + [2381] = 42, + [2382] = 43, + [2383] = 2347, + [2384] = 2384, + [2385] = 2385, + [2386] = 58, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2391, + [2392] = 2389, + [2393] = 2393, + [2394] = 2390, + [2395] = 2395, + [2396] = 2393, + [2397] = 790, + [2398] = 2398, + [2399] = 2395, + [2400] = 2393, + [2401] = 2395, + [2402] = 2402, + [2403] = 2387, + [2404] = 2393, + [2405] = 2402, + [2406] = 2387, + [2407] = 2387, + [2408] = 2402, + [2409] = 2393, + [2410] = 2387, + [2411] = 2388, + [2412] = 2391, + [2413] = 2413, + [2414] = 2388, + [2415] = 2389, + [2416] = 2391, + [2417] = 2390, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2402, + [2425] = 2425, + [2426] = 2355, + [2427] = 2427, + [2428] = 790, + [2429] = 2422, + [2430] = 2430, + [2431] = 2372, + [2432] = 2432, + [2433] = 2422, + [2434] = 2423, + [2435] = 2435, + [2436] = 2402, + [2437] = 2437, + [2438] = 2438, + [2439] = 2395, + [2440] = 2427, + [2441] = 2438, + [2442] = 2438, + [2443] = 2443, + [2444] = 2419, + [2445] = 2445, + [2446] = 2432, + [2447] = 2447, + [2448] = 2420, + [2449] = 2449, + [2450] = 2450, + [2451] = 2419, + [2452] = 2432, + [2453] = 2427, + [2454] = 2454, + [2455] = 2420, + [2456] = 2372, + [2457] = 2423, + [2458] = 2355, + [2459] = 2430, + [2460] = 2460, + [2461] = 2395, + [2462] = 2430, + [2463] = 40, + [2464] = 64, + [2465] = 2465, + [2466] = 83, + [2467] = 2467, + [2468] = 39, + [2469] = 60, + [2470] = 66, + [2471] = 61, + [2472] = 41, + [2473] = 42, + [2474] = 57, + [2475] = 70, + [2476] = 2476, + [2477] = 2477, + [2478] = 65, + [2479] = 86, + [2480] = 44, + [2481] = 43, + [2482] = 77, + [2483] = 58, + [2484] = 286, + [2485] = 2485, + [2486] = 2486, + [2487] = 2485, + [2488] = 2486, + [2489] = 2489, + [2490] = 2486, + [2491] = 2485, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 46, + [2505] = 50, + [2506] = 48, + [2507] = 48, + [2508] = 50, + [2509] = 49, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, + [2513] = 2513, + [2514] = 1715, + [2515] = 1708, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 1714, + [2520] = 1714, + [2521] = 245, + [2522] = 1707, + [2523] = 2523, + [2524] = 2524, + [2525] = 1710, + [2526] = 1713, + [2527] = 2527, + [2528] = 1713, + [2529] = 1715, + [2530] = 1708, + [2531] = 1710, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 1707, + [2537] = 2537, + [2538] = 251, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 226, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 2556, + [2557] = 2557, + [2558] = 2558, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 2567, + [2568] = 2568, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 230, + [2574] = 2574, + [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] = 2605, + [2606] = 2606, + [2607] = 2607, + [2608] = 1714, + [2609] = 1707, + [2610] = 2610, + [2611] = 2610, + [2612] = 2612, + [2613] = 2613, + [2614] = 1713, + [2615] = 2613, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 1715, + [2621] = 1708, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2600, + [2629] = 2616, + [2630] = 2630, + [2631] = 2631, + [2632] = 2632, + [2633] = 2633, + [2634] = 2634, + [2635] = 1710, + [2636] = 2636, + [2637] = 2637, + [2638] = 2638, + [2639] = 2639, + [2640] = 2640, + [2641] = 2641, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, + [2652] = 2652, + [2653] = 2623, + [2654] = 2625, + [2655] = 2655, + [2656] = 2656, + [2657] = 2627, + [2658] = 2658, + [2659] = 2622, + [2660] = 2600, + [2661] = 2623, + [2662] = 2642, + [2663] = 2663, + [2664] = 2664, + [2665] = 2625, + [2666] = 2618, + [2667] = 2667, + [2668] = 2631, + [2669] = 2669, + [2670] = 2663, + [2671] = 2627, + [2672] = 2622, + [2673] = 2673, + [2674] = 1714, + [2675] = 2618, + [2676] = 2601, + [2677] = 2677, + [2678] = 2642, + [2679] = 2679, + [2680] = 2680, + [2681] = 2656, + [2682] = 2682, + [2683] = 2642, + [2684] = 2636, + [2685] = 2685, + [2686] = 2624, + [2687] = 2687, + [2688] = 1715, + [2689] = 1708, + [2690] = 2616, + [2691] = 2691, + [2692] = 2692, + [2693] = 2637, + [2694] = 2638, + [2695] = 2639, + [2696] = 2663, + [2697] = 2640, + [2698] = 2656, + [2699] = 2699, + [2700] = 2700, + [2701] = 2701, + [2702] = 2636, + [2703] = 2703, + [2704] = 2704, + [2705] = 2705, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2658, + [2710] = 2710, + [2711] = 2638, + [2712] = 2651, + [2713] = 2713, + [2714] = 2645, + [2715] = 2646, + [2716] = 2647, + [2717] = 2648, + [2718] = 2718, + [2719] = 2719, + [2720] = 2631, + [2721] = 2721, + [2722] = 2649, + [2723] = 1710, + [2724] = 2724, + [2725] = 2725, + [2726] = 2618, + [2727] = 2727, + [2728] = 2728, + [2729] = 2637, + [2730] = 2730, + [2731] = 2650, + [2732] = 2732, + [2733] = 2733, + [2734] = 2734, + [2735] = 2624, + [2736] = 2736, + [2737] = 2610, + [2738] = 2600, + [2739] = 2622, + [2740] = 2656, + [2741] = 2639, + [2742] = 2742, + [2743] = 2651, + [2744] = 2652, + [2745] = 2745, + [2746] = 2658, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2745, + [2752] = 2613, + [2753] = 2753, + [2754] = 2745, + [2755] = 1707, + [2756] = 2756, + [2757] = 2757, + [2758] = 1713, + [2759] = 2652, + [2760] = 2601, + [2761] = 2761, + [2762] = 2650, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 2640, + [2767] = 2616, + [2768] = 2768, + [2769] = 2622, + [2770] = 2770, + [2771] = 2771, + [2772] = 2645, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2649, + [2777] = 2646, + [2778] = 2778, + [2779] = 2779, + [2780] = 2647, + [2781] = 2781, + [2782] = 2782, + [2783] = 2648, + [2784] = 2784, + [2785] = 2785, + [2786] = 2786, + [2787] = 2787, + [2788] = 2788, + [2789] = 2789, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2785, + [2809] = 2809, + [2810] = 2810, + [2811] = 2811, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, + [2816] = 2816, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2827, + [2828] = 2799, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2845, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2800, + [2852] = 2787, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2792, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2827, + [2862] = 2862, + [2863] = 2863, + [2864] = 2791, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 2791, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2792, + [2873] = 2873, + [2874] = 2794, + [2875] = 2785, + [2876] = 2876, + [2877] = 2855, + [2878] = 2825, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2791, + [2884] = 2884, + [2885] = 2794, + [2886] = 2785, + [2887] = 2800, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2814, + [2894] = 2894, + [2895] = 2817, + [2896] = 2818, + [2897] = 2897, + [2898] = 2829, + [2899] = 2899, + [2900] = 2835, + [2901] = 2799, + [2902] = 2800, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2906, + [2907] = 2814, + [2908] = 2908, + [2909] = 2867, + [2910] = 2910, + [2911] = 2831, + [2912] = 2912, + [2913] = 2825, + [2914] = 2914, + [2915] = 2794, + [2916] = 2800, + [2917] = 2917, + [2918] = 2918, + [2919] = 2817, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, + [2923] = 2825, + [2924] = 2800, + [2925] = 2925, + [2926] = 2841, + [2927] = 2927, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2933, + [2934] = 2812, + [2935] = 2935, + [2936] = 2879, + [2937] = 2812, + [2938] = 1714, + [2939] = 2939, + [2940] = 2940, + [2941] = 2815, + [2942] = 2814, + [2943] = 2815, + [2944] = 2944, + [2945] = 2816, + [2946] = 2817, + [2947] = 1707, + [2948] = 2818, + [2949] = 1713, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 1715, + [2956] = 1708, + [2957] = 2957, + [2958] = 2816, + [2959] = 1710, + [2960] = 2824, + [2961] = 2961, + [2962] = 2817, + [2963] = 2835, + [2964] = 2964, + [2965] = 2840, + [2966] = 2827, + [2967] = 2836, + [2968] = 2837, + [2969] = 2969, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2818, + [2974] = 2829, + [2975] = 2975, + [2976] = 2831, + [2977] = 2977, + [2978] = 2978, + [2979] = 2979, + [2980] = 2980, + [2981] = 2981, + [2982] = 2835, + [2983] = 2836, + [2984] = 2837, + [2985] = 2985, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2989, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2794, + [2997] = 2858, + [2998] = 2840, + [2999] = 2999, + [3000] = 3000, + [3001] = 3001, + [3002] = 3002, + [3003] = 2843, + [3004] = 3004, + [3005] = 2849, + [3006] = 3006, + [3007] = 3007, + [3008] = 3008, + [3009] = 2845, + [3010] = 2849, + [3011] = 3011, + [3012] = 3012, + [3013] = 3013, + [3014] = 3014, + [3015] = 2957, + [3016] = 3016, + [3017] = 3017, + [3018] = 2787, + [3019] = 3019, + [3020] = 3020, + [3021] = 2843, + [3022] = 3022, + [3023] = 3023, + [3024] = 3024, + [3025] = 2859, + [3026] = 2866, + [3027] = 3027, + [3028] = 3028, + [3029] = 1714, + [3030] = 3030, + [3031] = 1707, + [3032] = 3032, + [3033] = 3033, + [3034] = 1713, + [3035] = 3035, + [3036] = 1715, + [3037] = 1708, + [3038] = 3038, + [3039] = 1710, + [3040] = 3040, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 2824, + [3049] = 3049, + [3050] = 3050, + [3051] = 3051, + [3052] = 3052, + [3053] = 3053, + [3054] = 2867, + [3055] = 2939, + [3056] = 3056, + [3057] = 3057, + [3058] = 2841, + [3059] = 2940, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 2935, + [3064] = 2879, + [3065] = 2935, + [3066] = 3066, + [3067] = 3067, + [3068] = 3068, + [3069] = 2939, + [3070] = 2940, + [3071] = 3071, + [3072] = 2855, + [3073] = 3073, + [3074] = 2855, + [3075] = 2825, + [3076] = 2858, + [3077] = 3077, + [3078] = 2859, + [3079] = 3079, + [3080] = 3080, + [3081] = 3081, + [3082] = 2944, + [3083] = 2858, + [3084] = 3084, + [3085] = 3085, + [3086] = 2859, + [3087] = 3087, + [3088] = 3088, + [3089] = 2952, + [3090] = 2866, + [3091] = 2867, + [3092] = 3092, + [3093] = 3093, + [3094] = 2869, + [3095] = 2841, + [3096] = 3096, + [3097] = 2935, + [3098] = 2879, + [3099] = 2939, + [3100] = 2940, + [3101] = 2841, + [3102] = 2935, + [3103] = 2879, + [3104] = 2939, + [3105] = 2940, + [3106] = 3106, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 2944, + [3111] = 3111, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 2869, + [3116] = 3116, + [3117] = 3117, + [3118] = 3118, + [3119] = 2825, + [3120] = 2866, + [3121] = 2867, + [3122] = 3122, + [3123] = 2869, + [3124] = 3124, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, + [3128] = 3128, + [3129] = 3129, + [3130] = 3130, + [3131] = 3131, + [3132] = 3132, + [3133] = 3133, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, + [3137] = 3137, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3139, + [3150] = 3150, + [3151] = 3132, + [3152] = 3152, + [3153] = 3153, + [3154] = 3154, + [3155] = 3141, + [3156] = 3154, + [3157] = 3157, + [3158] = 3137, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3163, + [3164] = 3150, + [3165] = 3134, + [3166] = 3166, + [3167] = 3143, + [3168] = 3168, + [3169] = 3169, + [3170] = 3170, + [3171] = 3171, + [3172] = 3139, + [3173] = 3168, + [3174] = 3174, + [3175] = 3175, + [3176] = 3171, + [3177] = 3171, + [3178] = 3141, + [3179] = 3160, + [3180] = 3154, + [3181] = 3145, + [3182] = 3174, + [3183] = 3147, + [3184] = 3184, + [3185] = 3185, + [3186] = 3186, + [3187] = 3170, + [3188] = 3136, + [3189] = 3160, + [3190] = 3190, + [3191] = 3150, + [3192] = 3192, + [3193] = 3152, + [3194] = 3157, + [3195] = 3161, + [3196] = 3196, + [3197] = 3162, + [3198] = 3198, + [3199] = 3199, + [3200] = 3163, + [3201] = 3175, + [3202] = 3132, + [3203] = 3150, + [3204] = 3198, + [3205] = 3146, + [3206] = 3206, + [3207] = 3145, + [3208] = 3196, + [3209] = 3209, + [3210] = 3152, + [3211] = 3211, + [3212] = 3135, + [3213] = 3137, + [3214] = 3133, + [3215] = 3147, + [3216] = 3209, + [3217] = 3162, + [3218] = 3157, + [3219] = 3219, + [3220] = 3175, + [3221] = 3192, + [3222] = 3143, + [3223] = 3169, + [3224] = 3143, + [3225] = 3169, + [3226] = 3163, + [3227] = 3219, + [3228] = 3228, + [3229] = 3229, + [3230] = 3230, + [3231] = 3231, + [3232] = 3152, + [3233] = 3233, + [3234] = 3234, + [3235] = 3168, + [3236] = 3157, + [3237] = 3237, + [3238] = 3238, + [3239] = 3134, + [3240] = 3134, + [3241] = 3134, + [3242] = 3139, + [3243] = 3141, + [3244] = 3145, + [3245] = 3147, + [3246] = 3132, + [3247] = 3145, + [3248] = 3248, + [3249] = 3174, + [3250] = 3175, + [3251] = 3134, + [3252] = 3139, + [3253] = 3141, + [3254] = 3145, + [3255] = 3147, + [3256] = 3132, + [3257] = 3147, + [3258] = 3258, + [3259] = 3259, + [3260] = 3260, + [3261] = 3150, + [3262] = 3152, + [3263] = 3157, + [3264] = 3264, + [3265] = 3161, + [3266] = 3266, + [3267] = 3161, + [3268] = 3268, + [3269] = 3170, + [3270] = 3146, + [3271] = 3196, + [3272] = 3211, + [3273] = 3135, + [3274] = 3211, + [3275] = 3143, + [3276] = 3169, + [3277] = 3136, + [3278] = 3278, + [3279] = 3279, + [3280] = 3280, + [3281] = 3281, + [3282] = 3161, + [3283] = 3190, + [3284] = 3284, + [3285] = 3153, + [3286] = 3192, + [3287] = 3219, + [3288] = 3288, + [3289] = 3289, + [3290] = 3290, + [3291] = 3291, + [3292] = 3134, + [3293] = 3139, + [3294] = 3141, + [3295] = 3145, + [3296] = 3147, + [3297] = 3132, + [3298] = 3190, + [3299] = 3299, + [3300] = 3146, + [3301] = 3196, + [3302] = 3198, + [3303] = 3211, + [3304] = 3134, + [3305] = 3139, + [3306] = 3141, + [3307] = 3145, + [3308] = 3147, + [3309] = 3132, + [3310] = 3139, + [3311] = 3311, + [3312] = 3132, + [3313] = 3133, + [3314] = 3174, + [3315] = 3175, + [3316] = 3174, + [3317] = 3317, + [3318] = 3146, + [3319] = 3153, + [3320] = 3320, + [3321] = 3196, + [3322] = 3211, + [3323] = 3135, + [3324] = 3135, + [3325] = 3141, + [3326] = 3132, + [3327] = 3327, + [3328] = 3328, + [3329] = 3134, + [3330] = 3139, + [3331] = 3141, + [3332] = 3145, + [3333] = 3147, + [3334] = 3334, + [3335] = 3209, + [3336] = 3169, + [3337] = 3337, + [3338] = 3338, + [3339] = 3339, + [3340] = 3340, + [3341] = 3341, + [3342] = 3339, + [3343] = 3343, + [3344] = 3344, + [3345] = 3340, + [3346] = 3346, + [3347] = 3341, + [3348] = 3337, + [3349] = 3349, + [3350] = 3337, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3356, + [3357] = 3357, + [3358] = 3337, + [3359] = 3359, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 3339, + [3364] = 3364, + [3365] = 3365, + [3366] = 3339, + [3367] = 3356, + [3368] = 3339, + [3369] = 3369, + [3370] = 3356, + [3371] = 3371, + [3372] = 3341, + [3373] = 3361, + [3374] = 3353, + [3375] = 3369, + [3376] = 3339, + [3377] = 3339, + [3378] = 3378, + [3379] = 3337, + [3380] = 3380, + [3381] = 3381, + [3382] = 3382, + [3383] = 3361, + [3384] = 3353, + [3385] = 3339, + [3386] = 3386, + [3387] = 3387, + [3388] = 3339, + [3389] = 3340, + [3390] = 3390, + [3391] = 3391, + [3392] = 3392, + [3393] = 3393, + [3394] = 3394, + [3395] = 3395, + [3396] = 3396, + [3397] = 3397, + [3398] = 3398, + [3399] = 3399, + [3400] = 3400, + [3401] = 3401, + [3402] = 3396, + [3403] = 3403, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, + [3407] = 3407, + [3408] = 3408, + [3409] = 3409, + [3410] = 3410, + [3411] = 3394, + [3412] = 3412, + [3413] = 3394, + [3414] = 3414, + [3415] = 3415, + [3416] = 3416, + [3417] = 3417, + [3418] = 3418, + [3419] = 3419, + [3420] = 3420, + [3421] = 3421, + [3422] = 3422, + [3423] = 3423, + [3424] = 3424, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 3429, + [3430] = 3430, + [3431] = 3431, + [3432] = 3432, + [3433] = 3433, + [3434] = 3394, + [3435] = 3435, + [3436] = 3436, + [3437] = 3437, + [3438] = 3438, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3400, + [3443] = 3393, + [3444] = 3430, + [3445] = 3430, + [3446] = 3446, + [3447] = 3447, + [3448] = 3422, + [3449] = 3400, + [3450] = 3450, + [3451] = 3451, + [3452] = 3452, + [3453] = 3453, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, + [3457] = 3457, + [3458] = 3458, + [3459] = 3431, + [3460] = 3430, + [3461] = 3393, + [3462] = 3462, + [3463] = 3463, + [3464] = 3464, + [3465] = 3465, + [3466] = 3466, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 3422, + [3471] = 3471, + [3472] = 3394, + [3473] = 3473, + [3474] = 3400, + [3475] = 3393, + [3476] = 3430, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3485, + [3486] = 3486, + [3487] = 3487, + [3488] = 3488, + [3489] = 3489, + [3490] = 3490, + [3491] = 3491, + [3492] = 3492, + [3493] = 3493, + [3494] = 3494, + [3495] = 3495, + [3496] = 3422, + [3497] = 3497, + [3498] = 3498, + [3499] = 3499, + [3500] = 3500, + [3501] = 3430, + [3502] = 3502, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3509, + [3510] = 3510, + [3511] = 3511, + [3512] = 3512, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, + [3516] = 3516, + [3517] = 3517, + [3518] = 3518, + [3519] = 3519, + [3520] = 3520, + [3521] = 3521, + [3522] = 3522, + [3523] = 3523, + [3524] = 3430, + [3525] = 3525, + [3526] = 3526, + [3527] = 3394, + [3528] = 3400, + [3529] = 3529, + [3530] = 3430, + [3531] = 3531, + [3532] = 3532, + [3533] = 3453, + [3534] = 3534, + [3535] = 3535, + [3536] = 3536, + [3537] = 3537, + [3538] = 3538, + [3539] = 3431, + [3540] = 3430, + [3541] = 3541, + [3542] = 3453, + [3543] = 3453, + [3544] = 3396, + [3545] = 3545, + [3546] = 3431, + [3547] = 3453, + [3548] = 3548, + [3549] = 3431, + [3550] = 3550, + [3551] = 3551, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -6197,112 +7450,115 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(13); + if (eof) ADVANCE(15); ADVANCE_MAP( - '\n', 65, - '!', 16, - '"', 58, - '#', 64, - '$', 26, - '&', 50, + '\n', 95, + '!', 18, + '"', 88, + '#', 94, + '$', 29, + '&', 62, '\'', 7, - '(', 18, - ')', 19, - '*', 31, - '+', 48, - ',', 21, - '-', 24, - '.', 51, - '/', 49, - ':', 39, - ';', 33, - '<', 44, - '=', 17, - '>', 46, - '?', 28, - '@', 29, - '[', 32, + '(', 21, + ')', 22, + '*', 35, + '+', 72, + ',', 24, + '-', 27, + '.', 76, + '/', 74, + ':', 49, + ';', 37, + '<', 55, + '=', 20, + '>', 58, + '?', 32, + '@', 33, + '[', 36, '\\', 9, - ']', 34, - '^', 53, - '`', 62, - '{', 20, - '|', 27, - '}', 22, + ']', 38, + '^', 79, + '`', 92, + 'x', 80, + '{', 23, + '|', 31, + '}', 25, + '~', 75, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(55); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(54); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 1: ADVANCE_MAP( - '\n', 65, - '!', 15, - '"', 58, - '#', 64, - '$', 26, - '&', 50, + '\n', 95, + '!', 17, + '"', 88, + '#', 94, + '$', 29, + '&', 61, '\'', 7, - '(', 18, - ')', 19, - '*', 30, - ',', 21, - '-', 23, - '.', 52, - ';', 33, - '?', 28, - '@', 29, - '[', 32, - ']', 34, - '`', 62, - '{', 20, - '|', 27, - '}', 22, + '(', 21, + ')', 22, + '*', 34, + ',', 24, + '-', 26, + '.', 78, + ';', 37, + '?', 32, + '@', 33, + '[', 36, + ']', 38, + '`', 92, + '{', 23, + '|', 30, + '}', 25, + '~', 75, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(65); - if (lookahead == '#') ADVANCE(64); - if (lookahead == '$') ADVANCE(26); + if (lookahead == '\n') ADVANCE(95); + if (lookahead == '#') ADVANCE(94); + if (lookahead == '$') ADVANCE(29); if (lookahead == '\'') ADVANCE(7); - if (lookahead == ')') ADVANCE(19); - if (lookahead == '-') ADVANCE(23); + if (lookahead == ')') ADVANCE(22); + if (lookahead == '-') ADVANCE(26); if (lookahead == '.') ADVANCE(5); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(86); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(58); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '"') ADVANCE(88); + if (lookahead == '#') ADVANCE(90); if (lookahead == '\\') ADVANCE(9); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(59); + lookahead == ' ') ADVANCE(89); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(60); + lookahead != '\n') ADVANCE(90); END_STATE(); case 4: - if (lookahead == '\'') ADVANCE(63); + if (lookahead == '\'') ADVANCE(93); END_STATE(); case 5: if (lookahead == '.') ADVANCE(6); END_STATE(); case 6: - if (lookahead == '.') ADVANCE(25); + if (lookahead == '.') ADVANCE(28); END_STATE(); case 7: if (lookahead == '\\') ADVANCE(10); @@ -6311,7 +7567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\'') ADVANCE(4); END_STATE(); case 8: - if (lookahead == '`') ADVANCE(62); + if (lookahead == '`') ADVANCE(92); if (lookahead == '\t' || lookahead == ' ') ADVANCE(8); END_STATE(); @@ -6321,7 +7577,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\\' || lookahead == 'n' || lookahead == 'r' || - lookahead == 't') ADVANCE(61); + lookahead == 't') ADVANCE(91); END_STATE(); case 10: if (lookahead == '\'' || @@ -6332,243 +7588,450 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 't') ADVANCE(4); END_STATE(); case 11: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); END_STATE(); case 12: - if (eof) ADVANCE(13); + if (eof) ADVANCE(15); ADVANCE_MAP( - '\n', 65, - '!', 16, - '"', 58, - '#', 64, - '$', 26, - '&', 50, + '\n', 95, + '!', 18, + '"', 88, + '#', 94, + '$', 29, + '&', 62, '\'', 7, - '(', 18, - ')', 19, - '*', 31, - '+', 48, - ',', 21, - '-', 24, - '.', 51, - '/', 49, - ':', 39, - ';', 33, - '<', 44, - '=', 17, - '>', 46, - '?', 28, - '@', 29, - '[', 32, - ']', 34, - '^', 53, - '`', 62, - '{', 20, - '|', 27, - '}', 22, + '(', 21, + ')', 22, + '*', 35, + '+', 72, + ',', 24, + '-', 27, + '.', 76, + '/', 74, + ':', 49, + ';', 37, + '<', 55, + '=', 20, + '>', 58, + '?', 32, + '@', 33, + '[', 36, + ']', 38, + '^', 79, + '`', 92, + 'x', 80, + '{', 23, + '|', 31, + '}', 25, + '~', 75, ); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(12); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 13: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(15); + ADVANCE_MAP( + '\n', 95, + '!', 18, + '"', 88, + '#', 94, + '$', 29, + '&', 61, + '\'', 7, + '(', 21, + ')', 22, + '*', 34, + '+', 71, + ',', 24, + '-', 26, + '.', 76, + '/', 73, + ':', 49, + ';', 37, + '<', 56, + '=', 20, + '>', 59, + '?', 32, + '@', 33, + '[', 36, + ']', 38, + '^', 79, + '`', 92, + 'x', 81, + '{', 23, + '|', 30, + '}', 25, + '~', 75, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(13); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 14: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (eof) ADVANCE(15); + ADVANCE_MAP( + '\n', 95, + '!', 17, + '"', 88, + '#', 94, + '$', 29, + '&', 61, + '\'', 7, + '(', 21, + ')', 22, + '*', 34, + ',', 24, + '-', 26, + '.', 77, + ':', 49, + ';', 37, + '=', 19, + '?', 32, + '@', 33, + '[', 36, + ']', 38, + '`', 92, + '{', 23, + '|', 30, + '}', 25, + '~', 75, + ); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 15: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 16: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(43); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 17: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(42); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 18: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(54); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 20: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(53); END_STATE(); case 21: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 22: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 23: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 24: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(36); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 25: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 27: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(40); END_STATE(); case 28: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 30: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 31: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(37); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(44); END_STATE(); case 32: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 33: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 36: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 37: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 38: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 39: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(14); - END_STATE(); - case 40: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '=') ADVANCE(41); END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 37: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 38: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 40: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 43: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(45); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_xor_EQ); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(47); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(35); + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE_EQ); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(38); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(16); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '=') ADVANCE(52); END_STATE(); case 52: + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(65); + if (lookahead == '=') ADVANCE(57); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(66); + if (lookahead == '=') ADVANCE(57); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(60); + if (lookahead == '>') ADVANCE(68); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(60); + if (lookahead == '>') ADVANCE(67); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(43); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '=') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_xor); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '|') ADVANCE(70); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '|') ADVANCE(69); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(47); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_LT_LT_PIPE); + if (lookahead == '=') ADVANCE(48); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(39); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(42); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(51); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(50); + END_STATE(); + case 78: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(6); END_STATE(); - case 53: + case 79: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 54: + case 80: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(82); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 81: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 82: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 83: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(64); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); + END_STATE(); + case 84: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(54); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); - case 55: + case 85: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(11); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(85); END_STATE(); - case 56: + case 86: ACCEPT_TOKEN(sym_integer); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(86); END_STATE(); - case 57: + case 87: ACCEPT_TOKEN(sym_float); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); END_STATE(); - case 58: + case 88: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 59: + case 89: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '#') ADVANCE(90); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(59); + lookahead == ' ') ADVANCE(89); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(60); + lookahead != '\\') ADVANCE(90); END_STATE(); - case 60: + case 90: ACCEPT_TOKEN(sym_string_content); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(60); + lookahead != '\\') ADVANCE(90); END_STATE(); - case 61: + case 91: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 62: + case 92: ACCEPT_TOKEN(sym_multiline_string); if (lookahead == '\n') ADVANCE(8); - if (lookahead != 0) ADVANCE(62); + if (lookahead != 0) ADVANCE(92); END_STATE(); - case 63: + case 93: ACCEPT_TOKEN(sym_character); END_STATE(); - case 64: + case 94: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(64); + lookahead != '\n') ADVANCE(94); END_STATE(); - case 65: + case 95: ACCEPT_TOKEN(sym__newline); END_STATE(); default: @@ -7459,25 +8922,25 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 0}, - [2] = {.lex_state = 0}, - [3] = {.lex_state = 0}, - [4] = {.lex_state = 0}, - [5] = {.lex_state = 0}, - [6] = {.lex_state = 0}, - [7] = {.lex_state = 0}, - [8] = {.lex_state = 0}, - [9] = {.lex_state = 0}, - [10] = {.lex_state = 0}, - [11] = {.lex_state = 0}, - [12] = {.lex_state = 0}, - [13] = {.lex_state = 0}, - [14] = {.lex_state = 0}, - [15] = {.lex_state = 0}, - [16] = {.lex_state = 0}, - [17] = {.lex_state = 0}, - [18] = {.lex_state = 0}, - [19] = {.lex_state = 0}, + [1] = {.lex_state = 14}, + [2] = {.lex_state = 13}, + [3] = {.lex_state = 13}, + [4] = {.lex_state = 13}, + [5] = {.lex_state = 13}, + [6] = {.lex_state = 13}, + [7] = {.lex_state = 13}, + [8] = {.lex_state = 13}, + [9] = {.lex_state = 13}, + [10] = {.lex_state = 13}, + [11] = {.lex_state = 13}, + [12] = {.lex_state = 13}, + [13] = {.lex_state = 13}, + [14] = {.lex_state = 13}, + [15] = {.lex_state = 13}, + [16] = {.lex_state = 13}, + [17] = {.lex_state = 13}, + [18] = {.lex_state = 13}, + [19] = {.lex_state = 13}, [20] = {.lex_state = 0}, [21] = {.lex_state = 0}, [22] = {.lex_state = 0}, @@ -7496,7 +8959,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 0}, [36] = {.lex_state = 0}, [37] = {.lex_state = 0}, - [38] = {.lex_state = 0}, + [38] = {.lex_state = 14}, [39] = {.lex_state = 0}, [40] = {.lex_state = 0}, [41] = {.lex_state = 0}, @@ -7505,83 +8968,83 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 0}, [45] = {.lex_state = 0}, [46] = {.lex_state = 0}, - [47] = {.lex_state = 0}, + [47] = {.lex_state = 14}, [48] = {.lex_state = 0}, [49] = {.lex_state = 0}, [50] = {.lex_state = 0}, - [51] = {.lex_state = 0}, - [52] = {.lex_state = 0}, - [53] = {.lex_state = 0}, - [54] = {.lex_state = 0}, + [51] = {.lex_state = 14}, + [52] = {.lex_state = 14}, + [53] = {.lex_state = 14}, + [54] = {.lex_state = 14}, [55] = {.lex_state = 0}, - [56] = {.lex_state = 0}, + [56] = {.lex_state = 14}, [57] = {.lex_state = 0}, [58] = {.lex_state = 0}, [59] = {.lex_state = 0}, [60] = {.lex_state = 0}, [61] = {.lex_state = 0}, - [62] = {.lex_state = 0}, - [63] = {.lex_state = 0}, + [62] = {.lex_state = 14}, + [63] = {.lex_state = 14}, [64] = {.lex_state = 0}, [65] = {.lex_state = 0}, [66] = {.lex_state = 0}, - [67] = {.lex_state = 0}, - [68] = {.lex_state = 0}, - [69] = {.lex_state = 0}, + [67] = {.lex_state = 14}, + [68] = {.lex_state = 14}, + [69] = {.lex_state = 14}, [70] = {.lex_state = 0}, - [71] = {.lex_state = 0}, - [72] = {.lex_state = 0}, - [73] = {.lex_state = 0}, - [74] = {.lex_state = 0}, - [75] = {.lex_state = 0}, - [76] = {.lex_state = 0}, + [71] = {.lex_state = 14}, + [72] = {.lex_state = 14}, + [73] = {.lex_state = 14}, + [74] = {.lex_state = 14}, + [75] = {.lex_state = 14}, + [76] = {.lex_state = 14}, [77] = {.lex_state = 0}, - [78] = {.lex_state = 0}, - [79] = {.lex_state = 0}, - [80] = {.lex_state = 0}, - [81] = {.lex_state = 0}, + [78] = {.lex_state = 14}, + [79] = {.lex_state = 14}, + [80] = {.lex_state = 14}, + [81] = {.lex_state = 14}, [82] = {.lex_state = 0}, [83] = {.lex_state = 0}, - [84] = {.lex_state = 0}, - [85] = {.lex_state = 0}, + [84] = {.lex_state = 14}, + [85] = {.lex_state = 14}, [86] = {.lex_state = 0}, [87] = {.lex_state = 0}, - [88] = {.lex_state = 0}, + [88] = {.lex_state = 14}, [89] = {.lex_state = 0}, [90] = {.lex_state = 0}, - [91] = {.lex_state = 0}, + [91] = {.lex_state = 14}, [92] = {.lex_state = 0}, - [93] = {.lex_state = 0}, + [93] = {.lex_state = 14}, [94] = {.lex_state = 0}, - [95] = {.lex_state = 0}, - [96] = {.lex_state = 0}, - [97] = {.lex_state = 0}, + [95] = {.lex_state = 14}, + [96] = {.lex_state = 14}, + [97] = {.lex_state = 14}, [98] = {.lex_state = 0}, [99] = {.lex_state = 0}, [100] = {.lex_state = 0}, [101] = {.lex_state = 0}, - [102] = {.lex_state = 0}, + [102] = {.lex_state = 14}, [103] = {.lex_state = 0}, [104] = {.lex_state = 0}, - [105] = {.lex_state = 0}, + [105] = {.lex_state = 14}, [106] = {.lex_state = 0}, [107] = {.lex_state = 0}, - [108] = {.lex_state = 0}, - [109] = {.lex_state = 0}, - [110] = {.lex_state = 0}, - [111] = {.lex_state = 0}, - [112] = {.lex_state = 0}, + [108] = {.lex_state = 14}, + [109] = {.lex_state = 14}, + [110] = {.lex_state = 14}, + [111] = {.lex_state = 14}, + [112] = {.lex_state = 14}, [113] = {.lex_state = 0}, [114] = {.lex_state = 0}, - [115] = {.lex_state = 0}, - [116] = {.lex_state = 0}, - [117] = {.lex_state = 0}, - [118] = {.lex_state = 0}, - [119] = {.lex_state = 0}, - [120] = {.lex_state = 0}, - [121] = {.lex_state = 0}, - [122] = {.lex_state = 0}, - [123] = {.lex_state = 0}, + [115] = {.lex_state = 14}, + [116] = {.lex_state = 14}, + [117] = {.lex_state = 14}, + [118] = {.lex_state = 14}, + [119] = {.lex_state = 14}, + [120] = {.lex_state = 14}, + [121] = {.lex_state = 14}, + [122] = {.lex_state = 14}, + [123] = {.lex_state = 14}, [124] = {.lex_state = 0}, [125] = {.lex_state = 0}, [126] = {.lex_state = 0}, @@ -7589,36 +9052,36 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [128] = {.lex_state = 0}, [129] = {.lex_state = 0}, [130] = {.lex_state = 0}, - [131] = {.lex_state = 0}, - [132] = {.lex_state = 0}, - [133] = {.lex_state = 0}, - [134] = {.lex_state = 0}, - [135] = {.lex_state = 0}, - [136] = {.lex_state = 0}, + [131] = {.lex_state = 14}, + [132] = {.lex_state = 14}, + [133] = {.lex_state = 14}, + [134] = {.lex_state = 14}, + [135] = {.lex_state = 14}, + [136] = {.lex_state = 14}, [137] = {.lex_state = 0}, - [138] = {.lex_state = 0}, - [139] = {.lex_state = 0}, - [140] = {.lex_state = 0}, + [138] = {.lex_state = 14}, + [139] = {.lex_state = 14}, + [140] = {.lex_state = 14}, [141] = {.lex_state = 0}, [142] = {.lex_state = 0}, - [143] = {.lex_state = 0}, - [144] = {.lex_state = 0}, - [145] = {.lex_state = 0}, - [146] = {.lex_state = 0}, - [147] = {.lex_state = 0}, - [148] = {.lex_state = 0}, + [143] = {.lex_state = 14}, + [144] = {.lex_state = 14}, + [145] = {.lex_state = 14}, + [146] = {.lex_state = 14}, + [147] = {.lex_state = 14}, + [148] = {.lex_state = 14}, [149] = {.lex_state = 0}, [150] = {.lex_state = 0}, [151] = {.lex_state = 0}, [152] = {.lex_state = 0}, [153] = {.lex_state = 0}, [154] = {.lex_state = 0}, - [155] = {.lex_state = 0}, - [156] = {.lex_state = 0}, - [157] = {.lex_state = 0}, - [158] = {.lex_state = 0}, - [159] = {.lex_state = 0}, - [160] = {.lex_state = 0}, + [155] = {.lex_state = 14}, + [156] = {.lex_state = 14}, + [157] = {.lex_state = 14}, + [158] = {.lex_state = 14}, + [159] = {.lex_state = 14}, + [160] = {.lex_state = 14}, [161] = {.lex_state = 0}, [162] = {.lex_state = 0}, [163] = {.lex_state = 0}, @@ -7630,13 +9093,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [169] = {.lex_state = 0}, [170] = {.lex_state = 0}, [171] = {.lex_state = 0}, - [172] = {.lex_state = 0}, - [173] = {.lex_state = 0}, - [174] = {.lex_state = 0}, - [175] = {.lex_state = 0}, - [176] = {.lex_state = 0}, - [177] = {.lex_state = 0}, - [178] = {.lex_state = 0}, + [172] = {.lex_state = 14}, + [173] = {.lex_state = 14}, + [174] = {.lex_state = 14}, + [175] = {.lex_state = 14}, + [176] = {.lex_state = 14}, + [177] = {.lex_state = 14}, + [178] = {.lex_state = 14}, [179] = {.lex_state = 0}, [180] = {.lex_state = 0}, [181] = {.lex_state = 0}, @@ -7647,18 +9110,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [186] = {.lex_state = 0}, [187] = {.lex_state = 0}, [188] = {.lex_state = 0}, - [189] = {.lex_state = 0}, + [189] = {.lex_state = 14}, [190] = {.lex_state = 0}, [191] = {.lex_state = 0}, [192] = {.lex_state = 0}, [193] = {.lex_state = 0}, - [194] = {.lex_state = 0}, - [195] = {.lex_state = 0}, - [196] = {.lex_state = 0}, - [197] = {.lex_state = 0}, - [198] = {.lex_state = 0}, - [199] = {.lex_state = 0}, - [200] = {.lex_state = 0}, + [194] = {.lex_state = 14}, + [195] = {.lex_state = 14}, + [196] = {.lex_state = 14}, + [197] = {.lex_state = 14}, + [198] = {.lex_state = 14}, + [199] = {.lex_state = 14}, + [200] = {.lex_state = 14}, [201] = {.lex_state = 0}, [202] = {.lex_state = 0}, [203] = {.lex_state = 0}, @@ -7669,21 +9132,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 0}, [209] = {.lex_state = 0}, [210] = {.lex_state = 0}, - [211] = {.lex_state = 0}, - [212] = {.lex_state = 0}, - [213] = {.lex_state = 0}, - [214] = {.lex_state = 0}, + [211] = {.lex_state = 14}, + [212] = {.lex_state = 14}, + [213] = {.lex_state = 14}, + [214] = {.lex_state = 14}, [215] = {.lex_state = 0}, [216] = {.lex_state = 0}, [217] = {.lex_state = 0}, [218] = {.lex_state = 0}, - [219] = {.lex_state = 0}, + [219] = {.lex_state = 14}, [220] = {.lex_state = 0}, [221] = {.lex_state = 0}, [222] = {.lex_state = 0}, [223] = {.lex_state = 0}, [224] = {.lex_state = 0}, - [225] = {.lex_state = 0}, + [225] = {.lex_state = 14}, [226] = {.lex_state = 0}, [227] = {.lex_state = 0}, [228] = {.lex_state = 0}, @@ -7701,7 +9164,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [240] = {.lex_state = 0}, [241] = {.lex_state = 0}, [242] = {.lex_state = 0}, - [243] = {.lex_state = 0}, + [243] = {.lex_state = 14}, [244] = {.lex_state = 0}, [245] = {.lex_state = 0}, [246] = {.lex_state = 0}, @@ -7737,326 +9200,326 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [276] = {.lex_state = 0}, [277] = {.lex_state = 0}, [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, + [279] = {.lex_state = 14}, [280] = {.lex_state = 0}, [281] = {.lex_state = 0}, [282] = {.lex_state = 0}, [283] = {.lex_state = 0}, [284] = {.lex_state = 0}, - [285] = {.lex_state = 0}, + [285] = {.lex_state = 14}, [286] = {.lex_state = 0}, - [287] = {.lex_state = 0}, - [288] = {.lex_state = 0}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 0}, - [291] = {.lex_state = 0}, - [292] = {.lex_state = 0}, + [287] = {.lex_state = 14}, + [288] = {.lex_state = 14}, + [289] = {.lex_state = 14}, + [290] = {.lex_state = 14}, + [291] = {.lex_state = 14}, + [292] = {.lex_state = 14}, [293] = {.lex_state = 0}, - [294] = {.lex_state = 0}, - [295] = {.lex_state = 0}, - [296] = {.lex_state = 0}, - [297] = {.lex_state = 0}, - [298] = {.lex_state = 0}, - [299] = {.lex_state = 0}, - [300] = {.lex_state = 0}, - [301] = {.lex_state = 0}, - [302] = {.lex_state = 0}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 0}, - [305] = {.lex_state = 0}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 0}, - [308] = {.lex_state = 0}, - [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 0}, - [312] = {.lex_state = 0}, - [313] = {.lex_state = 0}, - [314] = {.lex_state = 0}, - [315] = {.lex_state = 0}, - [316] = {.lex_state = 0}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, - [319] = {.lex_state = 0}, - [320] = {.lex_state = 0}, - [321] = {.lex_state = 0}, - [322] = {.lex_state = 0}, - [323] = {.lex_state = 0}, - [324] = {.lex_state = 0}, - [325] = {.lex_state = 0}, - [326] = {.lex_state = 0}, - [327] = {.lex_state = 0}, - [328] = {.lex_state = 0}, - [329] = {.lex_state = 0}, - [330] = {.lex_state = 0}, - [331] = {.lex_state = 0}, - [332] = {.lex_state = 0}, - [333] = {.lex_state = 0}, - [334] = {.lex_state = 0}, - [335] = {.lex_state = 0}, - [336] = {.lex_state = 0}, - [337] = {.lex_state = 0}, - [338] = {.lex_state = 0}, - [339] = {.lex_state = 0}, - [340] = {.lex_state = 0}, - [341] = {.lex_state = 0}, - [342] = {.lex_state = 0}, - [343] = {.lex_state = 0}, - [344] = {.lex_state = 0}, - [345] = {.lex_state = 0}, - [346] = {.lex_state = 0}, - [347] = {.lex_state = 0}, - [348] = {.lex_state = 0}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 0}, - [351] = {.lex_state = 0}, - [352] = {.lex_state = 0}, - [353] = {.lex_state = 0}, - [354] = {.lex_state = 0}, - [355] = {.lex_state = 0}, - [356] = {.lex_state = 0}, - [357] = {.lex_state = 0}, - [358] = {.lex_state = 0}, - [359] = {.lex_state = 0}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 0}, - [362] = {.lex_state = 0}, - [363] = {.lex_state = 0}, - [364] = {.lex_state = 0}, - [365] = {.lex_state = 0}, - [366] = {.lex_state = 0}, - [367] = {.lex_state = 0}, - [368] = {.lex_state = 0}, - [369] = {.lex_state = 0}, - [370] = {.lex_state = 0}, - [371] = {.lex_state = 0}, - [372] = {.lex_state = 0}, - [373] = {.lex_state = 0}, - [374] = {.lex_state = 0}, - [375] = {.lex_state = 0}, - [376] = {.lex_state = 0}, - [377] = {.lex_state = 0}, - [378] = {.lex_state = 0}, - [379] = {.lex_state = 0}, - [380] = {.lex_state = 0}, - [381] = {.lex_state = 0}, - [382] = {.lex_state = 0}, - [383] = {.lex_state = 0}, - [384] = {.lex_state = 0}, - [385] = {.lex_state = 0}, - [386] = {.lex_state = 0}, - [387] = {.lex_state = 0}, - [388] = {.lex_state = 0}, - [389] = {.lex_state = 0}, - [390] = {.lex_state = 0}, - [391] = {.lex_state = 0}, - [392] = {.lex_state = 0}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 0}, - [395] = {.lex_state = 0}, - [396] = {.lex_state = 0}, - [397] = {.lex_state = 0}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 0}, - [400] = {.lex_state = 0}, - [401] = {.lex_state = 0}, - [402] = {.lex_state = 0}, - [403] = {.lex_state = 0}, - [404] = {.lex_state = 0}, - [405] = {.lex_state = 0}, - [406] = {.lex_state = 0}, - [407] = {.lex_state = 0}, - [408] = {.lex_state = 0}, - [409] = {.lex_state = 0}, - [410] = {.lex_state = 0}, - [411] = {.lex_state = 0}, - [412] = {.lex_state = 0}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 0}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 0}, - [420] = {.lex_state = 0}, - [421] = {.lex_state = 0}, - [422] = {.lex_state = 0}, - [423] = {.lex_state = 0}, - [424] = {.lex_state = 0}, - [425] = {.lex_state = 0}, - [426] = {.lex_state = 0}, - [427] = {.lex_state = 0}, - [428] = {.lex_state = 0}, - [429] = {.lex_state = 0}, - [430] = {.lex_state = 0}, - [431] = {.lex_state = 0}, - [432] = {.lex_state = 0}, - [433] = {.lex_state = 0}, - [434] = {.lex_state = 0}, - [435] = {.lex_state = 0}, - [436] = {.lex_state = 0}, - [437] = {.lex_state = 0}, - [438] = {.lex_state = 0}, - [439] = {.lex_state = 0}, - [440] = {.lex_state = 0}, - [441] = {.lex_state = 0}, - [442] = {.lex_state = 0}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0}, - [445] = {.lex_state = 0}, - [446] = {.lex_state = 0}, - [447] = {.lex_state = 0}, - [448] = {.lex_state = 0}, - [449] = {.lex_state = 0}, - [450] = {.lex_state = 0}, - [451] = {.lex_state = 0}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 0}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 0}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 0}, - [459] = {.lex_state = 0}, - [460] = {.lex_state = 0}, - [461] = {.lex_state = 0}, - [462] = {.lex_state = 0}, - [463] = {.lex_state = 0}, - [464] = {.lex_state = 0}, - [465] = {.lex_state = 0}, - [466] = {.lex_state = 0}, - [467] = {.lex_state = 0}, - [468] = {.lex_state = 0}, - [469] = {.lex_state = 0}, - [470] = {.lex_state = 0}, - [471] = {.lex_state = 0}, - [472] = {.lex_state = 0}, - [473] = {.lex_state = 0}, - [474] = {.lex_state = 0}, - [475] = {.lex_state = 0}, - [476] = {.lex_state = 0}, - [477] = {.lex_state = 0}, - [478] = {.lex_state = 0}, - [479] = {.lex_state = 0}, - [480] = {.lex_state = 0}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0}, - [483] = {.lex_state = 0}, - [484] = {.lex_state = 0}, - [485] = {.lex_state = 0}, - [486] = {.lex_state = 0}, - [487] = {.lex_state = 0}, - [488] = {.lex_state = 0}, - [489] = {.lex_state = 0}, - [490] = {.lex_state = 0}, - [491] = {.lex_state = 0}, - [492] = {.lex_state = 0}, - [493] = {.lex_state = 0}, - [494] = {.lex_state = 0}, - [495] = {.lex_state = 0}, - [496] = {.lex_state = 0}, - [497] = {.lex_state = 0}, - [498] = {.lex_state = 0}, - [499] = {.lex_state = 0}, - [500] = {.lex_state = 0}, - [501] = {.lex_state = 0}, - [502] = {.lex_state = 0}, - [503] = {.lex_state = 0}, - [504] = {.lex_state = 0}, - [505] = {.lex_state = 0}, - [506] = {.lex_state = 0}, - [507] = {.lex_state = 0}, - [508] = {.lex_state = 0}, - [509] = {.lex_state = 0}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 0}, - [512] = {.lex_state = 0}, - [513] = {.lex_state = 0}, - [514] = {.lex_state = 0}, - [515] = {.lex_state = 0}, - [516] = {.lex_state = 0}, - [517] = {.lex_state = 0}, - [518] = {.lex_state = 0}, - [519] = {.lex_state = 0}, - [520] = {.lex_state = 0}, - [521] = {.lex_state = 0}, - [522] = {.lex_state = 0}, - [523] = {.lex_state = 0}, - [524] = {.lex_state = 0}, - [525] = {.lex_state = 0}, - [526] = {.lex_state = 0}, + [294] = {.lex_state = 14}, + [295] = {.lex_state = 14}, + [296] = {.lex_state = 14}, + [297] = {.lex_state = 14}, + [298] = {.lex_state = 14}, + [299] = {.lex_state = 14}, + [300] = {.lex_state = 14}, + [301] = {.lex_state = 14}, + [302] = {.lex_state = 14}, + [303] = {.lex_state = 14}, + [304] = {.lex_state = 14}, + [305] = {.lex_state = 14}, + [306] = {.lex_state = 14}, + [307] = {.lex_state = 14}, + [308] = {.lex_state = 14}, + [309] = {.lex_state = 14}, + [310] = {.lex_state = 14}, + [311] = {.lex_state = 14}, + [312] = {.lex_state = 14}, + [313] = {.lex_state = 14}, + [314] = {.lex_state = 14}, + [315] = {.lex_state = 14}, + [316] = {.lex_state = 14}, + [317] = {.lex_state = 14}, + [318] = {.lex_state = 14}, + [319] = {.lex_state = 14}, + [320] = {.lex_state = 14}, + [321] = {.lex_state = 14}, + [322] = {.lex_state = 14}, + [323] = {.lex_state = 14}, + [324] = {.lex_state = 14}, + [325] = {.lex_state = 14}, + [326] = {.lex_state = 14}, + [327] = {.lex_state = 14}, + [328] = {.lex_state = 14}, + [329] = {.lex_state = 14}, + [330] = {.lex_state = 14}, + [331] = {.lex_state = 14}, + [332] = {.lex_state = 14}, + [333] = {.lex_state = 14}, + [334] = {.lex_state = 14}, + [335] = {.lex_state = 14}, + [336] = {.lex_state = 14}, + [337] = {.lex_state = 14}, + [338] = {.lex_state = 14}, + [339] = {.lex_state = 14}, + [340] = {.lex_state = 14}, + [341] = {.lex_state = 14}, + [342] = {.lex_state = 14}, + [343] = {.lex_state = 14}, + [344] = {.lex_state = 14}, + [345] = {.lex_state = 14}, + [346] = {.lex_state = 14}, + [347] = {.lex_state = 14}, + [348] = {.lex_state = 14}, + [349] = {.lex_state = 14}, + [350] = {.lex_state = 14}, + [351] = {.lex_state = 14}, + [352] = {.lex_state = 14}, + [353] = {.lex_state = 14}, + [354] = {.lex_state = 14}, + [355] = {.lex_state = 14}, + [356] = {.lex_state = 14}, + [357] = {.lex_state = 14}, + [358] = {.lex_state = 14}, + [359] = {.lex_state = 14}, + [360] = {.lex_state = 14}, + [361] = {.lex_state = 14}, + [362] = {.lex_state = 14}, + [363] = {.lex_state = 14}, + [364] = {.lex_state = 14}, + [365] = {.lex_state = 14}, + [366] = {.lex_state = 14}, + [367] = {.lex_state = 14}, + [368] = {.lex_state = 14}, + [369] = {.lex_state = 14}, + [370] = {.lex_state = 14}, + [371] = {.lex_state = 14}, + [372] = {.lex_state = 14}, + [373] = {.lex_state = 14}, + [374] = {.lex_state = 14}, + [375] = {.lex_state = 14}, + [376] = {.lex_state = 14}, + [377] = {.lex_state = 14}, + [378] = {.lex_state = 14}, + [379] = {.lex_state = 14}, + [380] = {.lex_state = 14}, + [381] = {.lex_state = 14}, + [382] = {.lex_state = 14}, + [383] = {.lex_state = 14}, + [384] = {.lex_state = 14}, + [385] = {.lex_state = 14}, + [386] = {.lex_state = 14}, + [387] = {.lex_state = 14}, + [388] = {.lex_state = 14}, + [389] = {.lex_state = 14}, + [390] = {.lex_state = 14}, + [391] = {.lex_state = 14}, + [392] = {.lex_state = 14}, + [393] = {.lex_state = 14}, + [394] = {.lex_state = 14}, + [395] = {.lex_state = 14}, + [396] = {.lex_state = 14}, + [397] = {.lex_state = 14}, + [398] = {.lex_state = 14}, + [399] = {.lex_state = 14}, + [400] = {.lex_state = 14}, + [401] = {.lex_state = 14}, + [402] = {.lex_state = 14}, + [403] = {.lex_state = 14}, + [404] = {.lex_state = 14}, + [405] = {.lex_state = 14}, + [406] = {.lex_state = 14}, + [407] = {.lex_state = 14}, + [408] = {.lex_state = 14}, + [409] = {.lex_state = 14}, + [410] = {.lex_state = 14}, + [411] = {.lex_state = 14}, + [412] = {.lex_state = 14}, + [413] = {.lex_state = 14}, + [414] = {.lex_state = 14}, + [415] = {.lex_state = 14}, + [416] = {.lex_state = 14}, + [417] = {.lex_state = 14}, + [418] = {.lex_state = 14}, + [419] = {.lex_state = 14}, + [420] = {.lex_state = 14}, + [421] = {.lex_state = 14}, + [422] = {.lex_state = 14}, + [423] = {.lex_state = 14}, + [424] = {.lex_state = 14}, + [425] = {.lex_state = 14}, + [426] = {.lex_state = 14}, + [427] = {.lex_state = 14}, + [428] = {.lex_state = 14}, + [429] = {.lex_state = 14}, + [430] = {.lex_state = 14}, + [431] = {.lex_state = 14}, + [432] = {.lex_state = 14}, + [433] = {.lex_state = 14}, + [434] = {.lex_state = 14}, + [435] = {.lex_state = 14}, + [436] = {.lex_state = 14}, + [437] = {.lex_state = 14}, + [438] = {.lex_state = 14}, + [439] = {.lex_state = 14}, + [440] = {.lex_state = 14}, + [441] = {.lex_state = 14}, + [442] = {.lex_state = 14}, + [443] = {.lex_state = 14}, + [444] = {.lex_state = 14}, + [445] = {.lex_state = 14}, + [446] = {.lex_state = 14}, + [447] = {.lex_state = 14}, + [448] = {.lex_state = 14}, + [449] = {.lex_state = 14}, + [450] = {.lex_state = 14}, + [451] = {.lex_state = 14}, + [452] = {.lex_state = 14}, + [453] = {.lex_state = 14}, + [454] = {.lex_state = 14}, + [455] = {.lex_state = 14}, + [456] = {.lex_state = 14}, + [457] = {.lex_state = 14}, + [458] = {.lex_state = 14}, + [459] = {.lex_state = 14}, + [460] = {.lex_state = 14}, + [461] = {.lex_state = 14}, + [462] = {.lex_state = 14}, + [463] = {.lex_state = 14}, + [464] = {.lex_state = 14}, + [465] = {.lex_state = 14}, + [466] = {.lex_state = 14}, + [467] = {.lex_state = 14}, + [468] = {.lex_state = 14}, + [469] = {.lex_state = 14}, + [470] = {.lex_state = 14}, + [471] = {.lex_state = 14}, + [472] = {.lex_state = 14}, + [473] = {.lex_state = 14}, + [474] = {.lex_state = 14}, + [475] = {.lex_state = 14}, + [476] = {.lex_state = 14}, + [477] = {.lex_state = 14}, + [478] = {.lex_state = 14}, + [479] = {.lex_state = 14}, + [480] = {.lex_state = 14}, + [481] = {.lex_state = 14}, + [482] = {.lex_state = 14}, + [483] = {.lex_state = 14}, + [484] = {.lex_state = 14}, + [485] = {.lex_state = 14}, + [486] = {.lex_state = 14}, + [487] = {.lex_state = 14}, + [488] = {.lex_state = 14}, + [489] = {.lex_state = 14}, + [490] = {.lex_state = 14}, + [491] = {.lex_state = 14}, + [492] = {.lex_state = 14}, + [493] = {.lex_state = 14}, + [494] = {.lex_state = 14}, + [495] = {.lex_state = 14}, + [496] = {.lex_state = 14}, + [497] = {.lex_state = 14}, + [498] = {.lex_state = 14}, + [499] = {.lex_state = 14}, + [500] = {.lex_state = 14}, + [501] = {.lex_state = 14}, + [502] = {.lex_state = 14}, + [503] = {.lex_state = 14}, + [504] = {.lex_state = 14}, + [505] = {.lex_state = 14}, + [506] = {.lex_state = 14}, + [507] = {.lex_state = 14}, + [508] = {.lex_state = 14}, + [509] = {.lex_state = 14}, + [510] = {.lex_state = 14}, + [511] = {.lex_state = 14}, + [512] = {.lex_state = 14}, + [513] = {.lex_state = 14}, + [514] = {.lex_state = 14}, + [515] = {.lex_state = 14}, + [516] = {.lex_state = 14}, + [517] = {.lex_state = 14}, + [518] = {.lex_state = 14}, + [519] = {.lex_state = 14}, + [520] = {.lex_state = 14}, + [521] = {.lex_state = 14}, + [522] = {.lex_state = 14}, + [523] = {.lex_state = 14}, + [524] = {.lex_state = 14}, + [525] = {.lex_state = 14}, + [526] = {.lex_state = 14}, [527] = {.lex_state = 0}, - [528] = {.lex_state = 0}, - [529] = {.lex_state = 0}, - [530] = {.lex_state = 0}, - [531] = {.lex_state = 0}, - [532] = {.lex_state = 0}, - [533] = {.lex_state = 0}, + [528] = {.lex_state = 14}, + [529] = {.lex_state = 14}, + [530] = {.lex_state = 14}, + [531] = {.lex_state = 14}, + [532] = {.lex_state = 14}, + [533] = {.lex_state = 14}, [534] = {.lex_state = 0}, - [535] = {.lex_state = 0}, + [535] = {.lex_state = 14}, [536] = {.lex_state = 0}, - [537] = {.lex_state = 0}, - [538] = {.lex_state = 0}, - [539] = {.lex_state = 0}, - [540] = {.lex_state = 0}, - [541] = {.lex_state = 0}, - [542] = {.lex_state = 0}, - [543] = {.lex_state = 0}, - [544] = {.lex_state = 0}, - [545] = {.lex_state = 0}, + [537] = {.lex_state = 14}, + [538] = {.lex_state = 14}, + [539] = {.lex_state = 14}, + [540] = {.lex_state = 14}, + [541] = {.lex_state = 14}, + [542] = {.lex_state = 14}, + [543] = {.lex_state = 14}, + [544] = {.lex_state = 14}, + [545] = {.lex_state = 14}, [546] = {.lex_state = 0}, - [547] = {.lex_state = 0}, - [548] = {.lex_state = 0}, - [549] = {.lex_state = 0}, - [550] = {.lex_state = 0}, - [551] = {.lex_state = 0}, - [552] = {.lex_state = 0}, - [553] = {.lex_state = 0}, - [554] = {.lex_state = 0}, - [555] = {.lex_state = 0}, - [556] = {.lex_state = 0}, - [557] = {.lex_state = 0}, - [558] = {.lex_state = 0}, - [559] = {.lex_state = 0}, - [560] = {.lex_state = 0}, - [561] = {.lex_state = 0}, - [562] = {.lex_state = 0}, - [563] = {.lex_state = 0}, - [564] = {.lex_state = 0}, - [565] = {.lex_state = 0}, - [566] = {.lex_state = 0}, - [567] = {.lex_state = 0}, + [547] = {.lex_state = 14}, + [548] = {.lex_state = 14}, + [549] = {.lex_state = 14}, + [550] = {.lex_state = 14}, + [551] = {.lex_state = 14}, + [552] = {.lex_state = 14}, + [553] = {.lex_state = 14}, + [554] = {.lex_state = 14}, + [555] = {.lex_state = 14}, + [556] = {.lex_state = 14}, + [557] = {.lex_state = 14}, + [558] = {.lex_state = 14}, + [559] = {.lex_state = 14}, + [560] = {.lex_state = 14}, + [561] = {.lex_state = 14}, + [562] = {.lex_state = 14}, + [563] = {.lex_state = 14}, + [564] = {.lex_state = 14}, + [565] = {.lex_state = 14}, + [566] = {.lex_state = 14}, + [567] = {.lex_state = 14}, [568] = {.lex_state = 0}, [569] = {.lex_state = 0}, [570] = {.lex_state = 0}, [571] = {.lex_state = 0}, [572] = {.lex_state = 0}, [573] = {.lex_state = 0}, - [574] = {.lex_state = 0}, - [575] = {.lex_state = 0}, + [574] = {.lex_state = 14}, + [575] = {.lex_state = 14}, [576] = {.lex_state = 0}, - [577] = {.lex_state = 0}, + [577] = {.lex_state = 14}, [578] = {.lex_state = 0}, [579] = {.lex_state = 0}, [580] = {.lex_state = 0}, [581] = {.lex_state = 0}, - [582] = {.lex_state = 0}, + [582] = {.lex_state = 14}, [583] = {.lex_state = 0}, [584] = {.lex_state = 0}, [585] = {.lex_state = 0}, - [586] = {.lex_state = 0}, + [586] = {.lex_state = 13}, [587] = {.lex_state = 0}, [588] = {.lex_state = 0}, - [589] = {.lex_state = 0}, - [590] = {.lex_state = 0}, + [589] = {.lex_state = 13}, + [590] = {.lex_state = 13}, [591] = {.lex_state = 0}, - [592] = {.lex_state = 0}, - [593] = {.lex_state = 0}, + [592] = {.lex_state = 13}, + [593] = {.lex_state = 13}, [594] = {.lex_state = 0}, [595] = {.lex_state = 0}, [596] = {.lex_state = 0}, [597] = {.lex_state = 0}, - [598] = {.lex_state = 0}, + [598] = {.lex_state = 13}, [599] = {.lex_state = 0}, [600] = {.lex_state = 0}, [601] = {.lex_state = 0}, @@ -8064,298 +9527,298 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [603] = {.lex_state = 0}, [604] = {.lex_state = 0}, [605] = {.lex_state = 0}, - [606] = {.lex_state = 0}, - [607] = {.lex_state = 0}, - [608] = {.lex_state = 0}, - [609] = {.lex_state = 0}, - [610] = {.lex_state = 0}, - [611] = {.lex_state = 0}, - [612] = {.lex_state = 0}, - [613] = {.lex_state = 0}, - [614] = {.lex_state = 0}, - [615] = {.lex_state = 0}, - [616] = {.lex_state = 0}, - [617] = {.lex_state = 0}, - [618] = {.lex_state = 0}, - [619] = {.lex_state = 0}, - [620] = {.lex_state = 0}, - [621] = {.lex_state = 0}, - [622] = {.lex_state = 0}, - [623] = {.lex_state = 0}, - [624] = {.lex_state = 0}, - [625] = {.lex_state = 0}, - [626] = {.lex_state = 0}, - [627] = {.lex_state = 0}, - [628] = {.lex_state = 0}, - [629] = {.lex_state = 0}, - [630] = {.lex_state = 0}, - [631] = {.lex_state = 0}, - [632] = {.lex_state = 0}, - [633] = {.lex_state = 0}, - [634] = {.lex_state = 0}, - [635] = {.lex_state = 0}, - [636] = {.lex_state = 0}, - [637] = {.lex_state = 0}, - [638] = {.lex_state = 0}, - [639] = {.lex_state = 0}, - [640] = {.lex_state = 0}, - [641] = {.lex_state = 0}, - [642] = {.lex_state = 0}, - [643] = {.lex_state = 0}, - [644] = {.lex_state = 0}, - [645] = {.lex_state = 0}, - [646] = {.lex_state = 0}, - [647] = {.lex_state = 0}, - [648] = {.lex_state = 0}, - [649] = {.lex_state = 0}, - [650] = {.lex_state = 0}, - [651] = {.lex_state = 0}, - [652] = {.lex_state = 0}, - [653] = {.lex_state = 0}, - [654] = {.lex_state = 0}, - [655] = {.lex_state = 0}, - [656] = {.lex_state = 0}, - [657] = {.lex_state = 0}, - [658] = {.lex_state = 0}, - [659] = {.lex_state = 0}, - [660] = {.lex_state = 0}, - [661] = {.lex_state = 0}, - [662] = {.lex_state = 0}, - [663] = {.lex_state = 0}, - [664] = {.lex_state = 0}, - [665] = {.lex_state = 0}, - [666] = {.lex_state = 0}, - [667] = {.lex_state = 0}, - [668] = {.lex_state = 0}, - [669] = {.lex_state = 0}, - [670] = {.lex_state = 0}, - [671] = {.lex_state = 0}, - [672] = {.lex_state = 0}, - [673] = {.lex_state = 0}, - [674] = {.lex_state = 0}, - [675] = {.lex_state = 0}, - [676] = {.lex_state = 0}, - [677] = {.lex_state = 0}, - [678] = {.lex_state = 0}, - [679] = {.lex_state = 0}, - [680] = {.lex_state = 0}, - [681] = {.lex_state = 0}, - [682] = {.lex_state = 0}, - [683] = {.lex_state = 0}, - [684] = {.lex_state = 0}, - [685] = {.lex_state = 0}, - [686] = {.lex_state = 0}, - [687] = {.lex_state = 0}, - [688] = {.lex_state = 0}, - [689] = {.lex_state = 0}, - [690] = {.lex_state = 0}, - [691] = {.lex_state = 0}, - [692] = {.lex_state = 0}, - [693] = {.lex_state = 0}, - [694] = {.lex_state = 0}, - [695] = {.lex_state = 0}, - [696] = {.lex_state = 0}, - [697] = {.lex_state = 0}, - [698] = {.lex_state = 0}, - [699] = {.lex_state = 0}, - [700] = {.lex_state = 0}, - [701] = {.lex_state = 1}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 0}, - [704] = {.lex_state = 0}, - [705] = {.lex_state = 0}, - [706] = {.lex_state = 0}, - [707] = {.lex_state = 0}, - [708] = {.lex_state = 0}, - [709] = {.lex_state = 0}, - [710] = {.lex_state = 0}, - [711] = {.lex_state = 0}, - [712] = {.lex_state = 0}, - [713] = {.lex_state = 0}, - [714] = {.lex_state = 0}, - [715] = {.lex_state = 0}, - [716] = {.lex_state = 0}, - [717] = {.lex_state = 0}, - [718] = {.lex_state = 0}, - [719] = {.lex_state = 0}, - [720] = {.lex_state = 0}, - [721] = {.lex_state = 0}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 0}, - [724] = {.lex_state = 0}, - [725] = {.lex_state = 0}, - [726] = {.lex_state = 0}, - [727] = {.lex_state = 0}, - [728] = {.lex_state = 0}, - [729] = {.lex_state = 0}, - [730] = {.lex_state = 0}, - [731] = {.lex_state = 0}, - [732] = {.lex_state = 0}, - [733] = {.lex_state = 0}, - [734] = {.lex_state = 0}, - [735] = {.lex_state = 0}, - [736] = {.lex_state = 0}, - [737] = {.lex_state = 0}, - [738] = {.lex_state = 0}, - [739] = {.lex_state = 0}, - [740] = {.lex_state = 0}, - [741] = {.lex_state = 0}, - [742] = {.lex_state = 0}, - [743] = {.lex_state = 0}, - [744] = {.lex_state = 0}, - [745] = {.lex_state = 0}, - [746] = {.lex_state = 0}, - [747] = {.lex_state = 0}, - [748] = {.lex_state = 0}, - [749] = {.lex_state = 0}, - [750] = {.lex_state = 0}, + [606] = {.lex_state = 13}, + [607] = {.lex_state = 13}, + [608] = {.lex_state = 13}, + [609] = {.lex_state = 13}, + [610] = {.lex_state = 13}, + [611] = {.lex_state = 13}, + [612] = {.lex_state = 13}, + [613] = {.lex_state = 13}, + [614] = {.lex_state = 13}, + [615] = {.lex_state = 13}, + [616] = {.lex_state = 13}, + [617] = {.lex_state = 13}, + [618] = {.lex_state = 13}, + [619] = {.lex_state = 13}, + [620] = {.lex_state = 13}, + [621] = {.lex_state = 13}, + [622] = {.lex_state = 13}, + [623] = {.lex_state = 13}, + [624] = {.lex_state = 13}, + [625] = {.lex_state = 13}, + [626] = {.lex_state = 13}, + [627] = {.lex_state = 13}, + [628] = {.lex_state = 13}, + [629] = {.lex_state = 13}, + [630] = {.lex_state = 13}, + [631] = {.lex_state = 13}, + [632] = {.lex_state = 13}, + [633] = {.lex_state = 13}, + [634] = {.lex_state = 13}, + [635] = {.lex_state = 13}, + [636] = {.lex_state = 13}, + [637] = {.lex_state = 13}, + [638] = {.lex_state = 13}, + [639] = {.lex_state = 13}, + [640] = {.lex_state = 13}, + [641] = {.lex_state = 14}, + [642] = {.lex_state = 14}, + [643] = {.lex_state = 13}, + [644] = {.lex_state = 13}, + [645] = {.lex_state = 13}, + [646] = {.lex_state = 13}, + [647] = {.lex_state = 13}, + [648] = {.lex_state = 13}, + [649] = {.lex_state = 13}, + [650] = {.lex_state = 13}, + [651] = {.lex_state = 13}, + [652] = {.lex_state = 13}, + [653] = {.lex_state = 13}, + [654] = {.lex_state = 13}, + [655] = {.lex_state = 13}, + [656] = {.lex_state = 13}, + [657] = {.lex_state = 13}, + [658] = {.lex_state = 13}, + [659] = {.lex_state = 13}, + [660] = {.lex_state = 13}, + [661] = {.lex_state = 13}, + [662] = {.lex_state = 13}, + [663] = {.lex_state = 13}, + [664] = {.lex_state = 13}, + [665] = {.lex_state = 13}, + [666] = {.lex_state = 13}, + [667] = {.lex_state = 13}, + [668] = {.lex_state = 13}, + [669] = {.lex_state = 13}, + [670] = {.lex_state = 13}, + [671] = {.lex_state = 13}, + [672] = {.lex_state = 13}, + [673] = {.lex_state = 13}, + [674] = {.lex_state = 13}, + [675] = {.lex_state = 13}, + [676] = {.lex_state = 13}, + [677] = {.lex_state = 13}, + [678] = {.lex_state = 13}, + [679] = {.lex_state = 13}, + [680] = {.lex_state = 13}, + [681] = {.lex_state = 13}, + [682] = {.lex_state = 13}, + [683] = {.lex_state = 13}, + [684] = {.lex_state = 13}, + [685] = {.lex_state = 13}, + [686] = {.lex_state = 13}, + [687] = {.lex_state = 13}, + [688] = {.lex_state = 13}, + [689] = {.lex_state = 14}, + [690] = {.lex_state = 13}, + [691] = {.lex_state = 13}, + [692] = {.lex_state = 13}, + [693] = {.lex_state = 13}, + [694] = {.lex_state = 13}, + [695] = {.lex_state = 13}, + [696] = {.lex_state = 13}, + [697] = {.lex_state = 13}, + [698] = {.lex_state = 13}, + [699] = {.lex_state = 13}, + [700] = {.lex_state = 13}, + [701] = {.lex_state = 13}, + [702] = {.lex_state = 13}, + [703] = {.lex_state = 13}, + [704] = {.lex_state = 13}, + [705] = {.lex_state = 13}, + [706] = {.lex_state = 13}, + [707] = {.lex_state = 13}, + [708] = {.lex_state = 13}, + [709] = {.lex_state = 13}, + [710] = {.lex_state = 13}, + [711] = {.lex_state = 13}, + [712] = {.lex_state = 13}, + [713] = {.lex_state = 13}, + [714] = {.lex_state = 13}, + [715] = {.lex_state = 13}, + [716] = {.lex_state = 13}, + [717] = {.lex_state = 13}, + [718] = {.lex_state = 13}, + [719] = {.lex_state = 13}, + [720] = {.lex_state = 13}, + [721] = {.lex_state = 13}, + [722] = {.lex_state = 13}, + [723] = {.lex_state = 13}, + [724] = {.lex_state = 13}, + [725] = {.lex_state = 13}, + [726] = {.lex_state = 13}, + [727] = {.lex_state = 13}, + [728] = {.lex_state = 13}, + [729] = {.lex_state = 13}, + [730] = {.lex_state = 13}, + [731] = {.lex_state = 13}, + [732] = {.lex_state = 13}, + [733] = {.lex_state = 13}, + [734] = {.lex_state = 13}, + [735] = {.lex_state = 13}, + [736] = {.lex_state = 13}, + [737] = {.lex_state = 13}, + [738] = {.lex_state = 13}, + [739] = {.lex_state = 13}, + [740] = {.lex_state = 13}, + [741] = {.lex_state = 13}, + [742] = {.lex_state = 13}, + [743] = {.lex_state = 13}, + [744] = {.lex_state = 13}, + [745] = {.lex_state = 13}, + [746] = {.lex_state = 13}, + [747] = {.lex_state = 13}, + [748] = {.lex_state = 13}, + [749] = {.lex_state = 13}, + [750] = {.lex_state = 14}, [751] = {.lex_state = 0}, [752] = {.lex_state = 0}, - [753] = {.lex_state = 0}, - [754] = {.lex_state = 0}, - [755] = {.lex_state = 0}, - [756] = {.lex_state = 0}, - [757] = {.lex_state = 0}, - [758] = {.lex_state = 0}, - [759] = {.lex_state = 0}, - [760] = {.lex_state = 0}, - [761] = {.lex_state = 0}, - [762] = {.lex_state = 0}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 0}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 0}, - [767] = {.lex_state = 0}, - [768] = {.lex_state = 0}, - [769] = {.lex_state = 0}, - [770] = {.lex_state = 0}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 0}, - [773] = {.lex_state = 0}, - [774] = {.lex_state = 0}, - [775] = {.lex_state = 0}, - [776] = {.lex_state = 0}, - [777] = {.lex_state = 0}, - [778] = {.lex_state = 0}, - [779] = {.lex_state = 0}, - [780] = {.lex_state = 0}, - [781] = {.lex_state = 0}, - [782] = {.lex_state = 0}, - [783] = {.lex_state = 0}, - [784] = {.lex_state = 0}, - [785] = {.lex_state = 0}, - [786] = {.lex_state = 0}, - [787] = {.lex_state = 0}, - [788] = {.lex_state = 0}, - [789] = {.lex_state = 0}, - [790] = {.lex_state = 0}, - [791] = {.lex_state = 0}, - [792] = {.lex_state = 0}, - [793] = {.lex_state = 0}, - [794] = {.lex_state = 0}, - [795] = {.lex_state = 0}, - [796] = {.lex_state = 0}, - [797] = {.lex_state = 0}, - [798] = {.lex_state = 0}, - [799] = {.lex_state = 0}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 0}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 0}, - [804] = {.lex_state = 0}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 0}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, - [811] = {.lex_state = 0}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 0}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 0}, - [824] = {.lex_state = 0}, - [825] = {.lex_state = 0}, - [826] = {.lex_state = 0}, - [827] = {.lex_state = 0}, - [828] = {.lex_state = 0}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 0}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 0}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 0}, - [838] = {.lex_state = 0}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 0}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 0}, - [846] = {.lex_state = 0}, + [753] = {.lex_state = 13}, + [754] = {.lex_state = 13}, + [755] = {.lex_state = 14}, + [756] = {.lex_state = 14}, + [757] = {.lex_state = 13}, + [758] = {.lex_state = 14}, + [759] = {.lex_state = 13}, + [760] = {.lex_state = 13}, + [761] = {.lex_state = 13}, + [762] = {.lex_state = 13}, + [763] = {.lex_state = 13}, + [764] = {.lex_state = 13}, + [765] = {.lex_state = 14}, + [766] = {.lex_state = 14}, + [767] = {.lex_state = 14}, + [768] = {.lex_state = 14}, + [769] = {.lex_state = 13}, + [770] = {.lex_state = 13}, + [771] = {.lex_state = 13}, + [772] = {.lex_state = 13}, + [773] = {.lex_state = 13}, + [774] = {.lex_state = 13}, + [775] = {.lex_state = 13}, + [776] = {.lex_state = 13}, + [777] = {.lex_state = 14}, + [778] = {.lex_state = 14}, + [779] = {.lex_state = 13}, + [780] = {.lex_state = 14}, + [781] = {.lex_state = 14}, + [782] = {.lex_state = 14}, + [783] = {.lex_state = 14}, + [784] = {.lex_state = 14}, + [785] = {.lex_state = 14}, + [786] = {.lex_state = 14}, + [787] = {.lex_state = 14}, + [788] = {.lex_state = 14}, + [789] = {.lex_state = 14}, + [790] = {.lex_state = 13}, + [791] = {.lex_state = 14}, + [792] = {.lex_state = 14}, + [793] = {.lex_state = 14}, + [794] = {.lex_state = 14}, + [795] = {.lex_state = 14}, + [796] = {.lex_state = 14}, + [797] = {.lex_state = 14}, + [798] = {.lex_state = 14}, + [799] = {.lex_state = 14}, + [800] = {.lex_state = 14}, + [801] = {.lex_state = 14}, + [802] = {.lex_state = 14}, + [803] = {.lex_state = 14}, + [804] = {.lex_state = 14}, + [805] = {.lex_state = 14}, + [806] = {.lex_state = 14}, + [807] = {.lex_state = 14}, + [808] = {.lex_state = 14}, + [809] = {.lex_state = 14}, + [810] = {.lex_state = 14}, + [811] = {.lex_state = 14}, + [812] = {.lex_state = 14}, + [813] = {.lex_state = 14}, + [814] = {.lex_state = 14}, + [815] = {.lex_state = 14}, + [816] = {.lex_state = 13}, + [817] = {.lex_state = 14}, + [818] = {.lex_state = 14}, + [819] = {.lex_state = 14}, + [820] = {.lex_state = 14}, + [821] = {.lex_state = 14}, + [822] = {.lex_state = 14}, + [823] = {.lex_state = 14}, + [824] = {.lex_state = 14}, + [825] = {.lex_state = 14}, + [826] = {.lex_state = 14}, + [827] = {.lex_state = 14}, + [828] = {.lex_state = 14}, + [829] = {.lex_state = 14}, + [830] = {.lex_state = 14}, + [831] = {.lex_state = 14}, + [832] = {.lex_state = 14}, + [833] = {.lex_state = 14}, + [834] = {.lex_state = 14}, + [835] = {.lex_state = 14}, + [836] = {.lex_state = 14}, + [837] = {.lex_state = 14}, + [838] = {.lex_state = 14}, + [839] = {.lex_state = 14}, + [840] = {.lex_state = 14}, + [841] = {.lex_state = 14}, + [842] = {.lex_state = 14}, + [843] = {.lex_state = 14}, + [844] = {.lex_state = 14}, + [845] = {.lex_state = 14}, + [846] = {.lex_state = 14}, [847] = {.lex_state = 0}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 0}, - [850] = {.lex_state = 0}, - [851] = {.lex_state = 0}, - [852] = {.lex_state = 0}, - [853] = {.lex_state = 0}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 0}, - [857] = {.lex_state = 0}, - [858] = {.lex_state = 0}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 0}, - [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, + [848] = {.lex_state = 14}, + [849] = {.lex_state = 14}, + [850] = {.lex_state = 14}, + [851] = {.lex_state = 14}, + [852] = {.lex_state = 14}, + [853] = {.lex_state = 14}, + [854] = {.lex_state = 14}, + [855] = {.lex_state = 14}, + [856] = {.lex_state = 14}, + [857] = {.lex_state = 14}, + [858] = {.lex_state = 14}, + [859] = {.lex_state = 14}, + [860] = {.lex_state = 14}, + [861] = {.lex_state = 14}, + [862] = {.lex_state = 13}, + [863] = {.lex_state = 13}, + [864] = {.lex_state = 14}, + [865] = {.lex_state = 14}, + [866] = {.lex_state = 14}, + [867] = {.lex_state = 14}, + [868] = {.lex_state = 14}, + [869] = {.lex_state = 14}, + [870] = {.lex_state = 14}, [871] = {.lex_state = 0}, [872] = {.lex_state = 0}, [873] = {.lex_state = 0}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, + [874] = {.lex_state = 14}, + [875] = {.lex_state = 14}, [876] = {.lex_state = 0}, [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 0}, + [878] = {.lex_state = 14}, + [879] = {.lex_state = 14}, + [880] = {.lex_state = 14}, [881] = {.lex_state = 0}, [882] = {.lex_state = 0}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, + [883] = {.lex_state = 14}, + [884] = {.lex_state = 14}, + [885] = {.lex_state = 14}, + [886] = {.lex_state = 14}, + [887] = {.lex_state = 14}, [888] = {.lex_state = 0}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 0}, + [889] = {.lex_state = 14}, + [890] = {.lex_state = 14}, + [891] = {.lex_state = 14}, + [892] = {.lex_state = 14}, [893] = {.lex_state = 0}, [894] = {.lex_state = 0}, [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, - [897] = {.lex_state = 0}, + [897] = {.lex_state = 1}, [898] = {.lex_state = 0}, [899] = {.lex_state = 0}, [900] = {.lex_state = 0}, @@ -8366,1169 +9829,1169 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 0}, [906] = {.lex_state = 0}, [907] = {.lex_state = 0}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 0}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 0}, - [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 0}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 0}, - [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, - [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 0}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 0}, - [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 0}, - [935] = {.lex_state = 0}, - [936] = {.lex_state = 0}, - [937] = {.lex_state = 0}, - [938] = {.lex_state = 0}, - [939] = {.lex_state = 0}, - [940] = {.lex_state = 0}, - [941] = {.lex_state = 0}, - [942] = {.lex_state = 0}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 0}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 0}, - [947] = {.lex_state = 0}, - [948] = {.lex_state = 0}, - [949] = {.lex_state = 0}, - [950] = {.lex_state = 0}, - [951] = {.lex_state = 0}, - [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0}, - [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, - [957] = {.lex_state = 0}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 0}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 0}, - [963] = {.lex_state = 0}, - [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 0}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, - [971] = {.lex_state = 0}, - [972] = {.lex_state = 0}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 0}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 0}, - [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, - [984] = {.lex_state = 0}, - [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 0}, - [990] = {.lex_state = 0}, - [991] = {.lex_state = 0}, - [992] = {.lex_state = 0}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 0}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 0}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 0}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 0}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0}, - [1013] = {.lex_state = 0}, - [1014] = {.lex_state = 0}, - [1015] = {.lex_state = 0}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 0}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 0}, - [1022] = {.lex_state = 0}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 0}, - [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 0}, - [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 0}, - [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, - [1039] = {.lex_state = 0}, - [1040] = {.lex_state = 0}, - [1041] = {.lex_state = 0}, - [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, - [1044] = {.lex_state = 0}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 0}, - [1048] = {.lex_state = 0}, - [1049] = {.lex_state = 0}, - [1050] = {.lex_state = 0}, - [1051] = {.lex_state = 0}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 0}, - [1055] = {.lex_state = 0}, - [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 0}, - [1059] = {.lex_state = 0}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 0}, - [1062] = {.lex_state = 0}, - [1063] = {.lex_state = 0}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 0}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 0}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 0}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 0}, - [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 0}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, - [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 0}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 0}, - [1089] = {.lex_state = 0}, - [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0}, - [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0}, - [1094] = {.lex_state = 0}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0}, - [1097] = {.lex_state = 0}, - [1098] = {.lex_state = 0}, - [1099] = {.lex_state = 0}, - [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 0}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, - [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, - [1108] = {.lex_state = 0}, - [1109] = {.lex_state = 0}, - [1110] = {.lex_state = 0}, - [1111] = {.lex_state = 0}, - [1112] = {.lex_state = 0}, - [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 0}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 0}, - [1120] = {.lex_state = 0}, - [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0}, - [1125] = {.lex_state = 0}, - [1126] = {.lex_state = 0}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 0}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 0}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 0}, - [1140] = {.lex_state = 0}, - [1141] = {.lex_state = 0}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0}, - [1144] = {.lex_state = 0}, - [1145] = {.lex_state = 0}, - [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, - [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 0}, - [1151] = {.lex_state = 0}, - [1152] = {.lex_state = 0}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 0}, - [1156] = {.lex_state = 0}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 0}, - [1159] = {.lex_state = 0}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 0}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 0}, - [1167] = {.lex_state = 0}, - [1168] = {.lex_state = 0}, - [1169] = {.lex_state = 0}, - [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 0}, - [1172] = {.lex_state = 0}, - [1173] = {.lex_state = 0}, - [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 0}, - [1185] = {.lex_state = 0}, - [1186] = {.lex_state = 0}, - [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, - [1189] = {.lex_state = 0}, - [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 0}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 0}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, - [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 0}, - [1210] = {.lex_state = 0}, - [1211] = {.lex_state = 0}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 0}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 0}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 0}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 0}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 0}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 0}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 0}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, - [1277] = {.lex_state = 0}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 0}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 0}, - [1288] = {.lex_state = 0}, - [1289] = {.lex_state = 0}, - [1290] = {.lex_state = 0}, - [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 0}, - [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 0}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, - [1327] = {.lex_state = 0}, - [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0}, - [1330] = {.lex_state = 0}, - [1331] = {.lex_state = 0}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 0}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0}, - [1339] = {.lex_state = 0}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 0}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 0}, - [1346] = {.lex_state = 0}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 0}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 0}, - [1398] = {.lex_state = 0}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 0}, - [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 0}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, - [1596] = {.lex_state = 2}, - [1597] = {.lex_state = 2}, - [1598] = {.lex_state = 2}, - [1599] = {.lex_state = 2}, - [1600] = {.lex_state = 2}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 2}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 2}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 2}, - [1609] = {.lex_state = 2}, - [1610] = {.lex_state = 2}, - [1611] = {.lex_state = 2}, - [1612] = {.lex_state = 2}, - [1613] = {.lex_state = 2}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 0}, - [1619] = {.lex_state = 2}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 2}, - [1622] = {.lex_state = 2}, - [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 2}, - [1625] = {.lex_state = 2}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 0}, - [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 0}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 0}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 0}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 0}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 0}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 0}, - [1739] = {.lex_state = 0}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 0}, - [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 0}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 0}, - [1816] = {.lex_state = 2}, - [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 0}, - [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 2}, - [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 3}, - [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 0}, - [1892] = {.lex_state = 0}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 0}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 3}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 0}, - [1950] = {.lex_state = 0}, - [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 0}, - [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 2}, - [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 2}, - [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 0}, - [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, - [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 0}, + [908] = {.lex_state = 14}, + [909] = {.lex_state = 14}, + [910] = {.lex_state = 14}, + [911] = {.lex_state = 14}, + [912] = {.lex_state = 14}, + [913] = {.lex_state = 14}, + [914] = {.lex_state = 14}, + [915] = {.lex_state = 14}, + [916] = {.lex_state = 14}, + [917] = {.lex_state = 14}, + [918] = {.lex_state = 14}, + [919] = {.lex_state = 14}, + [920] = {.lex_state = 14}, + [921] = {.lex_state = 14}, + [922] = {.lex_state = 14}, + [923] = {.lex_state = 14}, + [924] = {.lex_state = 14}, + [925] = {.lex_state = 14}, + [926] = {.lex_state = 14}, + [927] = {.lex_state = 14}, + [928] = {.lex_state = 14}, + [929] = {.lex_state = 14}, + [930] = {.lex_state = 14}, + [931] = {.lex_state = 14}, + [932] = {.lex_state = 14}, + [933] = {.lex_state = 14}, + [934] = {.lex_state = 14}, + [935] = {.lex_state = 14}, + [936] = {.lex_state = 14}, + [937] = {.lex_state = 14}, + [938] = {.lex_state = 14}, + [939] = {.lex_state = 14}, + [940] = {.lex_state = 14}, + [941] = {.lex_state = 14}, + [942] = {.lex_state = 14}, + [943] = {.lex_state = 14}, + [944] = {.lex_state = 14}, + [945] = {.lex_state = 14}, + [946] = {.lex_state = 14}, + [947] = {.lex_state = 14}, + [948] = {.lex_state = 14}, + [949] = {.lex_state = 14}, + [950] = {.lex_state = 14}, + [951] = {.lex_state = 14}, + [952] = {.lex_state = 14}, + [953] = {.lex_state = 14}, + [954] = {.lex_state = 14}, + [955] = {.lex_state = 14}, + [956] = {.lex_state = 14}, + [957] = {.lex_state = 14}, + [958] = {.lex_state = 14}, + [959] = {.lex_state = 14}, + [960] = {.lex_state = 14}, + [961] = {.lex_state = 14}, + [962] = {.lex_state = 13}, + [963] = {.lex_state = 14}, + [964] = {.lex_state = 14}, + [965] = {.lex_state = 14}, + [966] = {.lex_state = 14}, + [967] = {.lex_state = 14}, + [968] = {.lex_state = 14}, + [969] = {.lex_state = 14}, + [970] = {.lex_state = 14}, + [971] = {.lex_state = 14}, + [972] = {.lex_state = 14}, + [973] = {.lex_state = 14}, + [974] = {.lex_state = 14}, + [975] = {.lex_state = 14}, + [976] = {.lex_state = 14}, + [977] = {.lex_state = 14}, + [978] = {.lex_state = 14}, + [979] = {.lex_state = 14}, + [980] = {.lex_state = 14}, + [981] = {.lex_state = 14}, + [982] = {.lex_state = 14}, + [983] = {.lex_state = 13}, + [984] = {.lex_state = 14}, + [985] = {.lex_state = 13}, + [986] = {.lex_state = 14}, + [987] = {.lex_state = 14}, + [988] = {.lex_state = 14}, + [989] = {.lex_state = 14}, + [990] = {.lex_state = 14}, + [991] = {.lex_state = 14}, + [992] = {.lex_state = 14}, + [993] = {.lex_state = 14}, + [994] = {.lex_state = 14}, + [995] = {.lex_state = 14}, + [996] = {.lex_state = 13}, + [997] = {.lex_state = 14}, + [998] = {.lex_state = 14}, + [999] = {.lex_state = 14}, + [1000] = {.lex_state = 14}, + [1001] = {.lex_state = 14}, + [1002] = {.lex_state = 14}, + [1003] = {.lex_state = 14}, + [1004] = {.lex_state = 14}, + [1005] = {.lex_state = 14}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 14}, + [1008] = {.lex_state = 14}, + [1009] = {.lex_state = 14}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 14}, + [1012] = {.lex_state = 14}, + [1013] = {.lex_state = 14}, + [1014] = {.lex_state = 14}, + [1015] = {.lex_state = 14}, + [1016] = {.lex_state = 14}, + [1017] = {.lex_state = 14}, + [1018] = {.lex_state = 13}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 14}, + [1021] = {.lex_state = 14}, + [1022] = {.lex_state = 13}, + [1023] = {.lex_state = 14}, + [1024] = {.lex_state = 14}, + [1025] = {.lex_state = 14}, + [1026] = {.lex_state = 14}, + [1027] = {.lex_state = 14}, + [1028] = {.lex_state = 14}, + [1029] = {.lex_state = 14}, + [1030] = {.lex_state = 14}, + [1031] = {.lex_state = 14}, + [1032] = {.lex_state = 14}, + [1033] = {.lex_state = 14}, + [1034] = {.lex_state = 14}, + [1035] = {.lex_state = 14}, + [1036] = {.lex_state = 14}, + [1037] = {.lex_state = 14}, + [1038] = {.lex_state = 14}, + [1039] = {.lex_state = 13}, + [1040] = {.lex_state = 13}, + [1041] = {.lex_state = 14}, + [1042] = {.lex_state = 14}, + [1043] = {.lex_state = 14}, + [1044] = {.lex_state = 14}, + [1045] = {.lex_state = 14}, + [1046] = {.lex_state = 14}, + [1047] = {.lex_state = 14}, + [1048] = {.lex_state = 14}, + [1049] = {.lex_state = 14}, + [1050] = {.lex_state = 14}, + [1051] = {.lex_state = 14}, + [1052] = {.lex_state = 14}, + [1053] = {.lex_state = 14}, + [1054] = {.lex_state = 14}, + [1055] = {.lex_state = 14}, + [1056] = {.lex_state = 14}, + [1057] = {.lex_state = 14}, + [1058] = {.lex_state = 14}, + [1059] = {.lex_state = 14}, + [1060] = {.lex_state = 14}, + [1061] = {.lex_state = 14}, + [1062] = {.lex_state = 14}, + [1063] = {.lex_state = 14}, + [1064] = {.lex_state = 14}, + [1065] = {.lex_state = 14}, + [1066] = {.lex_state = 14}, + [1067] = {.lex_state = 14}, + [1068] = {.lex_state = 14}, + [1069] = {.lex_state = 14}, + [1070] = {.lex_state = 14}, + [1071] = {.lex_state = 14}, + [1072] = {.lex_state = 14}, + [1073] = {.lex_state = 14}, + [1074] = {.lex_state = 14}, + [1075] = {.lex_state = 14}, + [1076] = {.lex_state = 14}, + [1077] = {.lex_state = 14}, + [1078] = {.lex_state = 14}, + [1079] = {.lex_state = 14}, + [1080] = {.lex_state = 14}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 14}, + [1083] = {.lex_state = 14}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 14}, + [1087] = {.lex_state = 14}, + [1088] = {.lex_state = 14}, + [1089] = {.lex_state = 14}, + [1090] = {.lex_state = 14}, + [1091] = {.lex_state = 14}, + [1092] = {.lex_state = 14}, + [1093] = {.lex_state = 14}, + [1094] = {.lex_state = 14}, + [1095] = {.lex_state = 14}, + [1096] = {.lex_state = 14}, + [1097] = {.lex_state = 14}, + [1098] = {.lex_state = 14}, + [1099] = {.lex_state = 14}, + [1100] = {.lex_state = 14}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 14}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 14}, + [1105] = {.lex_state = 14}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 14}, + [1109] = {.lex_state = 14}, + [1110] = {.lex_state = 14}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 14}, + [1113] = {.lex_state = 14}, + [1114] = {.lex_state = 14}, + [1115] = {.lex_state = 14}, + [1116] = {.lex_state = 14}, + [1117] = {.lex_state = 14}, + [1118] = {.lex_state = 14}, + [1119] = {.lex_state = 14}, + [1120] = {.lex_state = 14}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 14}, + [1124] = {.lex_state = 14}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, + [1127] = {.lex_state = 14}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 14}, + [1130] = {.lex_state = 14}, + [1131] = {.lex_state = 14}, + [1132] = {.lex_state = 14}, + [1133] = {.lex_state = 14}, + [1134] = {.lex_state = 13}, + [1135] = {.lex_state = 14}, + [1136] = {.lex_state = 14}, + [1137] = {.lex_state = 14}, + [1138] = {.lex_state = 14}, + [1139] = {.lex_state = 13}, + [1140] = {.lex_state = 14}, + [1141] = {.lex_state = 14}, + [1142] = {.lex_state = 14}, + [1143] = {.lex_state = 14}, + [1144] = {.lex_state = 14}, + [1145] = {.lex_state = 14}, + [1146] = {.lex_state = 14}, + [1147] = {.lex_state = 14}, + [1148] = {.lex_state = 14}, + [1149] = {.lex_state = 14}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 14}, + [1154] = {.lex_state = 14}, + [1155] = {.lex_state = 14}, + [1156] = {.lex_state = 14}, + [1157] = {.lex_state = 14}, + [1158] = {.lex_state = 14}, + [1159] = {.lex_state = 14}, + [1160] = {.lex_state = 14}, + [1161] = {.lex_state = 14}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 14}, + [1164] = {.lex_state = 14}, + [1165] = {.lex_state = 14}, + [1166] = {.lex_state = 14}, + [1167] = {.lex_state = 14}, + [1168] = {.lex_state = 14}, + [1169] = {.lex_state = 14}, + [1170] = {.lex_state = 14}, + [1171] = {.lex_state = 14}, + [1172] = {.lex_state = 14}, + [1173] = {.lex_state = 14}, + [1174] = {.lex_state = 14}, + [1175] = {.lex_state = 14}, + [1176] = {.lex_state = 14}, + [1177] = {.lex_state = 13}, + [1178] = {.lex_state = 14}, + [1179] = {.lex_state = 13}, + [1180] = {.lex_state = 14}, + [1181] = {.lex_state = 14}, + [1182] = {.lex_state = 14}, + [1183] = {.lex_state = 14}, + [1184] = {.lex_state = 14}, + [1185] = {.lex_state = 14}, + [1186] = {.lex_state = 14}, + [1187] = {.lex_state = 14}, + [1188] = {.lex_state = 14}, + [1189] = {.lex_state = 14}, + [1190] = {.lex_state = 14}, + [1191] = {.lex_state = 14}, + [1192] = {.lex_state = 14}, + [1193] = {.lex_state = 14}, + [1194] = {.lex_state = 14}, + [1195] = {.lex_state = 14}, + [1196] = {.lex_state = 14}, + [1197] = {.lex_state = 14}, + [1198] = {.lex_state = 14}, + [1199] = {.lex_state = 14}, + [1200] = {.lex_state = 14}, + [1201] = {.lex_state = 14}, + [1202] = {.lex_state = 14}, + [1203] = {.lex_state = 14}, + [1204] = {.lex_state = 14}, + [1205] = {.lex_state = 14}, + [1206] = {.lex_state = 14}, + [1207] = {.lex_state = 14}, + [1208] = {.lex_state = 14}, + [1209] = {.lex_state = 14}, + [1210] = {.lex_state = 14}, + [1211] = {.lex_state = 14}, + [1212] = {.lex_state = 14}, + [1213] = {.lex_state = 14}, + [1214] = {.lex_state = 14}, + [1215] = {.lex_state = 14}, + [1216] = {.lex_state = 14}, + [1217] = {.lex_state = 14}, + [1218] = {.lex_state = 14}, + [1219] = {.lex_state = 14}, + [1220] = {.lex_state = 14}, + [1221] = {.lex_state = 14}, + [1222] = {.lex_state = 14}, + [1223] = {.lex_state = 14}, + [1224] = {.lex_state = 14}, + [1225] = {.lex_state = 14}, + [1226] = {.lex_state = 14}, + [1227] = {.lex_state = 14}, + [1228] = {.lex_state = 14}, + [1229] = {.lex_state = 14}, + [1230] = {.lex_state = 14}, + [1231] = {.lex_state = 14}, + [1232] = {.lex_state = 14}, + [1233] = {.lex_state = 14}, + [1234] = {.lex_state = 14}, + [1235] = {.lex_state = 14}, + [1236] = {.lex_state = 14}, + [1237] = {.lex_state = 14}, + [1238] = {.lex_state = 14}, + [1239] = {.lex_state = 14}, + [1240] = {.lex_state = 14}, + [1241] = {.lex_state = 14}, + [1242] = {.lex_state = 14}, + [1243] = {.lex_state = 14}, + [1244] = {.lex_state = 14}, + [1245] = {.lex_state = 14}, + [1246] = {.lex_state = 14}, + [1247] = {.lex_state = 14}, + [1248] = {.lex_state = 14}, + [1249] = {.lex_state = 14}, + [1250] = {.lex_state = 14}, + [1251] = {.lex_state = 14}, + [1252] = {.lex_state = 14}, + [1253] = {.lex_state = 14}, + [1254] = {.lex_state = 14}, + [1255] = {.lex_state = 14}, + [1256] = {.lex_state = 14}, + [1257] = {.lex_state = 14}, + [1258] = {.lex_state = 14}, + [1259] = {.lex_state = 14}, + [1260] = {.lex_state = 14}, + [1261] = {.lex_state = 14}, + [1262] = {.lex_state = 14}, + [1263] = {.lex_state = 14}, + [1264] = {.lex_state = 14}, + [1265] = {.lex_state = 14}, + [1266] = {.lex_state = 14}, + [1267] = {.lex_state = 14}, + [1268] = {.lex_state = 14}, + [1269] = {.lex_state = 14}, + [1270] = {.lex_state = 14}, + [1271] = {.lex_state = 14}, + [1272] = {.lex_state = 14}, + [1273] = {.lex_state = 14}, + [1274] = {.lex_state = 14}, + [1275] = {.lex_state = 14}, + [1276] = {.lex_state = 14}, + [1277] = {.lex_state = 14}, + [1278] = {.lex_state = 14}, + [1279] = {.lex_state = 14}, + [1280] = {.lex_state = 14}, + [1281] = {.lex_state = 14}, + [1282] = {.lex_state = 14}, + [1283] = {.lex_state = 14}, + [1284] = {.lex_state = 14}, + [1285] = {.lex_state = 14}, + [1286] = {.lex_state = 14}, + [1287] = {.lex_state = 14}, + [1288] = {.lex_state = 14}, + [1289] = {.lex_state = 14}, + [1290] = {.lex_state = 14}, + [1291] = {.lex_state = 14}, + [1292] = {.lex_state = 14}, + [1293] = {.lex_state = 14}, + [1294] = {.lex_state = 14}, + [1295] = {.lex_state = 14}, + [1296] = {.lex_state = 14}, + [1297] = {.lex_state = 14}, + [1298] = {.lex_state = 14}, + [1299] = {.lex_state = 14}, + [1300] = {.lex_state = 14}, + [1301] = {.lex_state = 14}, + [1302] = {.lex_state = 14}, + [1303] = {.lex_state = 14}, + [1304] = {.lex_state = 14}, + [1305] = {.lex_state = 14}, + [1306] = {.lex_state = 14}, + [1307] = {.lex_state = 14}, + [1308] = {.lex_state = 14}, + [1309] = {.lex_state = 14}, + [1310] = {.lex_state = 14}, + [1311] = {.lex_state = 14}, + [1312] = {.lex_state = 14}, + [1313] = {.lex_state = 14}, + [1314] = {.lex_state = 14}, + [1315] = {.lex_state = 14}, + [1316] = {.lex_state = 14}, + [1317] = {.lex_state = 14}, + [1318] = {.lex_state = 14}, + [1319] = {.lex_state = 14}, + [1320] = {.lex_state = 14}, + [1321] = {.lex_state = 14}, + [1322] = {.lex_state = 14}, + [1323] = {.lex_state = 14}, + [1324] = {.lex_state = 14}, + [1325] = {.lex_state = 14}, + [1326] = {.lex_state = 14}, + [1327] = {.lex_state = 14}, + [1328] = {.lex_state = 14}, + [1329] = {.lex_state = 14}, + [1330] = {.lex_state = 14}, + [1331] = {.lex_state = 14}, + [1332] = {.lex_state = 14}, + [1333] = {.lex_state = 14}, + [1334] = {.lex_state = 14}, + [1335] = {.lex_state = 14}, + [1336] = {.lex_state = 14}, + [1337] = {.lex_state = 14}, + [1338] = {.lex_state = 14}, + [1339] = {.lex_state = 14}, + [1340] = {.lex_state = 14}, + [1341] = {.lex_state = 14}, + [1342] = {.lex_state = 14}, + [1343] = {.lex_state = 14}, + [1344] = {.lex_state = 14}, + [1345] = {.lex_state = 14}, + [1346] = {.lex_state = 14}, + [1347] = {.lex_state = 14}, + [1348] = {.lex_state = 14}, + [1349] = {.lex_state = 14}, + [1350] = {.lex_state = 14}, + [1351] = {.lex_state = 14}, + [1352] = {.lex_state = 14}, + [1353] = {.lex_state = 14}, + [1354] = {.lex_state = 14}, + [1355] = {.lex_state = 14}, + [1356] = {.lex_state = 14}, + [1357] = {.lex_state = 14}, + [1358] = {.lex_state = 14}, + [1359] = {.lex_state = 14}, + [1360] = {.lex_state = 14}, + [1361] = {.lex_state = 14}, + [1362] = {.lex_state = 14}, + [1363] = {.lex_state = 14}, + [1364] = {.lex_state = 14}, + [1365] = {.lex_state = 14}, + [1366] = {.lex_state = 14}, + [1367] = {.lex_state = 14}, + [1368] = {.lex_state = 14}, + [1369] = {.lex_state = 14}, + [1370] = {.lex_state = 14}, + [1371] = {.lex_state = 14}, + [1372] = {.lex_state = 14}, + [1373] = {.lex_state = 14}, + [1374] = {.lex_state = 14}, + [1375] = {.lex_state = 14}, + [1376] = {.lex_state = 14}, + [1377] = {.lex_state = 14}, + [1378] = {.lex_state = 14}, + [1379] = {.lex_state = 14}, + [1380] = {.lex_state = 14}, + [1381] = {.lex_state = 14}, + [1382] = {.lex_state = 14}, + [1383] = {.lex_state = 14}, + [1384] = {.lex_state = 14}, + [1385] = {.lex_state = 14}, + [1386] = {.lex_state = 14}, + [1387] = {.lex_state = 14}, + [1388] = {.lex_state = 14}, + [1389] = {.lex_state = 14}, + [1390] = {.lex_state = 14}, + [1391] = {.lex_state = 14}, + [1392] = {.lex_state = 14}, + [1393] = {.lex_state = 14}, + [1394] = {.lex_state = 14}, + [1395] = {.lex_state = 14}, + [1396] = {.lex_state = 14}, + [1397] = {.lex_state = 14}, + [1398] = {.lex_state = 14}, + [1399] = {.lex_state = 14}, + [1400] = {.lex_state = 14}, + [1401] = {.lex_state = 14}, + [1402] = {.lex_state = 14}, + [1403] = {.lex_state = 14}, + [1404] = {.lex_state = 14}, + [1405] = {.lex_state = 14}, + [1406] = {.lex_state = 14}, + [1407] = {.lex_state = 14}, + [1408] = {.lex_state = 14}, + [1409] = {.lex_state = 14}, + [1410] = {.lex_state = 14}, + [1411] = {.lex_state = 14}, + [1412] = {.lex_state = 14}, + [1413] = {.lex_state = 14}, + [1414] = {.lex_state = 14}, + [1415] = {.lex_state = 14}, + [1416] = {.lex_state = 14}, + [1417] = {.lex_state = 14}, + [1418] = {.lex_state = 14}, + [1419] = {.lex_state = 14}, + [1420] = {.lex_state = 14}, + [1421] = {.lex_state = 14}, + [1422] = {.lex_state = 14}, + [1423] = {.lex_state = 14}, + [1424] = {.lex_state = 14}, + [1425] = {.lex_state = 14}, + [1426] = {.lex_state = 14}, + [1427] = {.lex_state = 14}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 14}, + [1430] = {.lex_state = 14}, + [1431] = {.lex_state = 14}, + [1432] = {.lex_state = 14}, + [1433] = {.lex_state = 14}, + [1434] = {.lex_state = 14}, + [1435] = {.lex_state = 14}, + [1436] = {.lex_state = 14}, + [1437] = {.lex_state = 14}, + [1438] = {.lex_state = 14}, + [1439] = {.lex_state = 14}, + [1440] = {.lex_state = 14}, + [1441] = {.lex_state = 14}, + [1442] = {.lex_state = 14}, + [1443] = {.lex_state = 14}, + [1444] = {.lex_state = 14}, + [1445] = {.lex_state = 14}, + [1446] = {.lex_state = 14}, + [1447] = {.lex_state = 14}, + [1448] = {.lex_state = 14}, + [1449] = {.lex_state = 14}, + [1450] = {.lex_state = 14}, + [1451] = {.lex_state = 14}, + [1452] = {.lex_state = 14}, + [1453] = {.lex_state = 14}, + [1454] = {.lex_state = 14}, + [1455] = {.lex_state = 14}, + [1456] = {.lex_state = 14}, + [1457] = {.lex_state = 14}, + [1458] = {.lex_state = 14}, + [1459] = {.lex_state = 14}, + [1460] = {.lex_state = 14}, + [1461] = {.lex_state = 14}, + [1462] = {.lex_state = 14}, + [1463] = {.lex_state = 14}, + [1464] = {.lex_state = 14}, + [1465] = {.lex_state = 14}, + [1466] = {.lex_state = 14}, + [1467] = {.lex_state = 14}, + [1468] = {.lex_state = 14}, + [1469] = {.lex_state = 14}, + [1470] = {.lex_state = 14}, + [1471] = {.lex_state = 14}, + [1472] = {.lex_state = 14}, + [1473] = {.lex_state = 14}, + [1474] = {.lex_state = 14}, + [1475] = {.lex_state = 14}, + [1476] = {.lex_state = 14}, + [1477] = {.lex_state = 14}, + [1478] = {.lex_state = 14}, + [1479] = {.lex_state = 14}, + [1480] = {.lex_state = 14}, + [1481] = {.lex_state = 14}, + [1482] = {.lex_state = 14}, + [1483] = {.lex_state = 14}, + [1484] = {.lex_state = 14}, + [1485] = {.lex_state = 14}, + [1486] = {.lex_state = 14}, + [1487] = {.lex_state = 14}, + [1488] = {.lex_state = 14}, + [1489] = {.lex_state = 14}, + [1490] = {.lex_state = 14}, + [1491] = {.lex_state = 14}, + [1492] = {.lex_state = 14}, + [1493] = {.lex_state = 14}, + [1494] = {.lex_state = 14}, + [1495] = {.lex_state = 14}, + [1496] = {.lex_state = 14}, + [1497] = {.lex_state = 14}, + [1498] = {.lex_state = 14}, + [1499] = {.lex_state = 14}, + [1500] = {.lex_state = 14}, + [1501] = {.lex_state = 14}, + [1502] = {.lex_state = 14}, + [1503] = {.lex_state = 14}, + [1504] = {.lex_state = 14}, + [1505] = {.lex_state = 14}, + [1506] = {.lex_state = 14}, + [1507] = {.lex_state = 14}, + [1508] = {.lex_state = 14}, + [1509] = {.lex_state = 14}, + [1510] = {.lex_state = 14}, + [1511] = {.lex_state = 14}, + [1512] = {.lex_state = 14}, + [1513] = {.lex_state = 14}, + [1514] = {.lex_state = 14}, + [1515] = {.lex_state = 14}, + [1516] = {.lex_state = 14}, + [1517] = {.lex_state = 14}, + [1518] = {.lex_state = 14}, + [1519] = {.lex_state = 14}, + [1520] = {.lex_state = 14}, + [1521] = {.lex_state = 14}, + [1522] = {.lex_state = 14}, + [1523] = {.lex_state = 14}, + [1524] = {.lex_state = 14}, + [1525] = {.lex_state = 14}, + [1526] = {.lex_state = 14}, + [1527] = {.lex_state = 14}, + [1528] = {.lex_state = 14}, + [1529] = {.lex_state = 14}, + [1530] = {.lex_state = 14}, + [1531] = {.lex_state = 14}, + [1532] = {.lex_state = 14}, + [1533] = {.lex_state = 14}, + [1534] = {.lex_state = 14}, + [1535] = {.lex_state = 14}, + [1536] = {.lex_state = 14}, + [1537] = {.lex_state = 14}, + [1538] = {.lex_state = 14}, + [1539] = {.lex_state = 14}, + [1540] = {.lex_state = 14}, + [1541] = {.lex_state = 14}, + [1542] = {.lex_state = 14}, + [1543] = {.lex_state = 14}, + [1544] = {.lex_state = 14}, + [1545] = {.lex_state = 14}, + [1546] = {.lex_state = 14}, + [1547] = {.lex_state = 14}, + [1548] = {.lex_state = 14}, + [1549] = {.lex_state = 14}, + [1550] = {.lex_state = 14}, + [1551] = {.lex_state = 14}, + [1552] = {.lex_state = 14}, + [1553] = {.lex_state = 14}, + [1554] = {.lex_state = 14}, + [1555] = {.lex_state = 14}, + [1556] = {.lex_state = 14}, + [1557] = {.lex_state = 14}, + [1558] = {.lex_state = 14}, + [1559] = {.lex_state = 14}, + [1560] = {.lex_state = 14}, + [1561] = {.lex_state = 14}, + [1562] = {.lex_state = 14}, + [1563] = {.lex_state = 14}, + [1564] = {.lex_state = 14}, + [1565] = {.lex_state = 14}, + [1566] = {.lex_state = 14}, + [1567] = {.lex_state = 14}, + [1568] = {.lex_state = 14}, + [1569] = {.lex_state = 14}, + [1570] = {.lex_state = 14}, + [1571] = {.lex_state = 14}, + [1572] = {.lex_state = 14}, + [1573] = {.lex_state = 14}, + [1574] = {.lex_state = 14}, + [1575] = {.lex_state = 14}, + [1576] = {.lex_state = 14}, + [1577] = {.lex_state = 14}, + [1578] = {.lex_state = 14}, + [1579] = {.lex_state = 14}, + [1580] = {.lex_state = 14}, + [1581] = {.lex_state = 14}, + [1582] = {.lex_state = 14}, + [1583] = {.lex_state = 14}, + [1584] = {.lex_state = 14}, + [1585] = {.lex_state = 14}, + [1586] = {.lex_state = 14}, + [1587] = {.lex_state = 14}, + [1588] = {.lex_state = 14}, + [1589] = {.lex_state = 14}, + [1590] = {.lex_state = 14}, + [1591] = {.lex_state = 14}, + [1592] = {.lex_state = 14}, + [1593] = {.lex_state = 14}, + [1594] = {.lex_state = 14}, + [1595] = {.lex_state = 14}, + [1596] = {.lex_state = 14}, + [1597] = {.lex_state = 14}, + [1598] = {.lex_state = 14}, + [1599] = {.lex_state = 14}, + [1600] = {.lex_state = 14}, + [1601] = {.lex_state = 14}, + [1602] = {.lex_state = 14}, + [1603] = {.lex_state = 14}, + [1604] = {.lex_state = 14}, + [1605] = {.lex_state = 14}, + [1606] = {.lex_state = 14}, + [1607] = {.lex_state = 14}, + [1608] = {.lex_state = 14}, + [1609] = {.lex_state = 14}, + [1610] = {.lex_state = 14}, + [1611] = {.lex_state = 14}, + [1612] = {.lex_state = 14}, + [1613] = {.lex_state = 14}, + [1614] = {.lex_state = 14}, + [1615] = {.lex_state = 14}, + [1616] = {.lex_state = 14}, + [1617] = {.lex_state = 14}, + [1618] = {.lex_state = 14}, + [1619] = {.lex_state = 14}, + [1620] = {.lex_state = 14}, + [1621] = {.lex_state = 14}, + [1622] = {.lex_state = 14}, + [1623] = {.lex_state = 14}, + [1624] = {.lex_state = 14}, + [1625] = {.lex_state = 14}, + [1626] = {.lex_state = 14}, + [1627] = {.lex_state = 14}, + [1628] = {.lex_state = 14}, + [1629] = {.lex_state = 14}, + [1630] = {.lex_state = 14}, + [1631] = {.lex_state = 14}, + [1632] = {.lex_state = 14}, + [1633] = {.lex_state = 14}, + [1634] = {.lex_state = 14}, + [1635] = {.lex_state = 14}, + [1636] = {.lex_state = 14}, + [1637] = {.lex_state = 14}, + [1638] = {.lex_state = 14}, + [1639] = {.lex_state = 14}, + [1640] = {.lex_state = 14}, + [1641] = {.lex_state = 14}, + [1642] = {.lex_state = 14}, + [1643] = {.lex_state = 14}, + [1644] = {.lex_state = 14}, + [1645] = {.lex_state = 14}, + [1646] = {.lex_state = 14}, + [1647] = {.lex_state = 14}, + [1648] = {.lex_state = 14}, + [1649] = {.lex_state = 14}, + [1650] = {.lex_state = 14}, + [1651] = {.lex_state = 14}, + [1652] = {.lex_state = 14}, + [1653] = {.lex_state = 14}, + [1654] = {.lex_state = 14}, + [1655] = {.lex_state = 14}, + [1656] = {.lex_state = 14}, + [1657] = {.lex_state = 14}, + [1658] = {.lex_state = 14}, + [1659] = {.lex_state = 14}, + [1660] = {.lex_state = 14}, + [1661] = {.lex_state = 14}, + [1662] = {.lex_state = 14}, + [1663] = {.lex_state = 14}, + [1664] = {.lex_state = 14}, + [1665] = {.lex_state = 14}, + [1666] = {.lex_state = 14}, + [1667] = {.lex_state = 14}, + [1668] = {.lex_state = 14}, + [1669] = {.lex_state = 14}, + [1670] = {.lex_state = 14}, + [1671] = {.lex_state = 14}, + [1672] = {.lex_state = 14}, + [1673] = {.lex_state = 14}, + [1674] = {.lex_state = 14}, + [1675] = {.lex_state = 14}, + [1676] = {.lex_state = 14}, + [1677] = {.lex_state = 14}, + [1678] = {.lex_state = 14}, + [1679] = {.lex_state = 14}, + [1680] = {.lex_state = 14}, + [1681] = {.lex_state = 14}, + [1682] = {.lex_state = 14}, + [1683] = {.lex_state = 14}, + [1684] = {.lex_state = 14}, + [1685] = {.lex_state = 14}, + [1686] = {.lex_state = 14}, + [1687] = {.lex_state = 14}, + [1688] = {.lex_state = 14}, + [1689] = {.lex_state = 14}, + [1690] = {.lex_state = 14}, + [1691] = {.lex_state = 14}, + [1692] = {.lex_state = 14}, + [1693] = {.lex_state = 14}, + [1694] = {.lex_state = 14}, + [1695] = {.lex_state = 14}, + [1696] = {.lex_state = 14}, + [1697] = {.lex_state = 14}, + [1698] = {.lex_state = 14}, + [1699] = {.lex_state = 14}, + [1700] = {.lex_state = 14}, + [1701] = {.lex_state = 14}, + [1702] = {.lex_state = 14}, + [1703] = {.lex_state = 14}, + [1704] = {.lex_state = 14}, + [1705] = {.lex_state = 14}, + [1706] = {.lex_state = 14}, + [1707] = {.lex_state = 14}, + [1708] = {.lex_state = 14}, + [1709] = {.lex_state = 14}, + [1710] = {.lex_state = 14}, + [1711] = {.lex_state = 14}, + [1712] = {.lex_state = 14}, + [1713] = {.lex_state = 14}, + [1714] = {.lex_state = 14}, + [1715] = {.lex_state = 14}, + [1716] = {.lex_state = 14}, + [1717] = {.lex_state = 14}, + [1718] = {.lex_state = 14}, + [1719] = {.lex_state = 14}, + [1720] = {.lex_state = 14}, + [1721] = {.lex_state = 14}, + [1722] = {.lex_state = 14}, + [1723] = {.lex_state = 14}, + [1724] = {.lex_state = 14}, + [1725] = {.lex_state = 14}, + [1726] = {.lex_state = 14}, + [1727] = {.lex_state = 14}, + [1728] = {.lex_state = 14}, + [1729] = {.lex_state = 14}, + [1730] = {.lex_state = 14}, + [1731] = {.lex_state = 14}, + [1732] = {.lex_state = 14}, + [1733] = {.lex_state = 14}, + [1734] = {.lex_state = 14}, + [1735] = {.lex_state = 14}, + [1736] = {.lex_state = 14}, + [1737] = {.lex_state = 14}, + [1738] = {.lex_state = 14}, + [1739] = {.lex_state = 14}, + [1740] = {.lex_state = 14}, + [1741] = {.lex_state = 14}, + [1742] = {.lex_state = 14}, + [1743] = {.lex_state = 14}, + [1744] = {.lex_state = 14}, + [1745] = {.lex_state = 14}, + [1746] = {.lex_state = 14}, + [1747] = {.lex_state = 14}, + [1748] = {.lex_state = 14}, + [1749] = {.lex_state = 14}, + [1750] = {.lex_state = 14}, + [1751] = {.lex_state = 14}, + [1752] = {.lex_state = 14}, + [1753] = {.lex_state = 14}, + [1754] = {.lex_state = 14}, + [1755] = {.lex_state = 14}, + [1756] = {.lex_state = 14}, + [1757] = {.lex_state = 14}, + [1758] = {.lex_state = 14}, + [1759] = {.lex_state = 14}, + [1760] = {.lex_state = 14}, + [1761] = {.lex_state = 14}, + [1762] = {.lex_state = 14}, + [1763] = {.lex_state = 14}, + [1764] = {.lex_state = 14}, + [1765] = {.lex_state = 14}, + [1766] = {.lex_state = 14}, + [1767] = {.lex_state = 14}, + [1768] = {.lex_state = 14}, + [1769] = {.lex_state = 14}, + [1770] = {.lex_state = 14}, + [1771] = {.lex_state = 14}, + [1772] = {.lex_state = 14}, + [1773] = {.lex_state = 14}, + [1774] = {.lex_state = 14}, + [1775] = {.lex_state = 14}, + [1776] = {.lex_state = 14}, + [1777] = {.lex_state = 14}, + [1778] = {.lex_state = 14}, + [1779] = {.lex_state = 14}, + [1780] = {.lex_state = 14}, + [1781] = {.lex_state = 14}, + [1782] = {.lex_state = 14}, + [1783] = {.lex_state = 14}, + [1784] = {.lex_state = 14}, + [1785] = {.lex_state = 14}, + [1786] = {.lex_state = 14}, + [1787] = {.lex_state = 14}, + [1788] = {.lex_state = 14}, + [1789] = {.lex_state = 14}, + [1790] = {.lex_state = 14}, + [1791] = {.lex_state = 14}, + [1792] = {.lex_state = 14}, + [1793] = {.lex_state = 14}, + [1794] = {.lex_state = 14}, + [1795] = {.lex_state = 14}, + [1796] = {.lex_state = 14}, + [1797] = {.lex_state = 14}, + [1798] = {.lex_state = 14}, + [1799] = {.lex_state = 14}, + [1800] = {.lex_state = 14}, + [1801] = {.lex_state = 14}, + [1802] = {.lex_state = 14}, + [1803] = {.lex_state = 14}, + [1804] = {.lex_state = 14}, + [1805] = {.lex_state = 14}, + [1806] = {.lex_state = 14}, + [1807] = {.lex_state = 14}, + [1808] = {.lex_state = 14}, + [1809] = {.lex_state = 14}, + [1810] = {.lex_state = 14}, + [1811] = {.lex_state = 14}, + [1812] = {.lex_state = 14}, + [1813] = {.lex_state = 14}, + [1814] = {.lex_state = 14}, + [1815] = {.lex_state = 14}, + [1816] = {.lex_state = 14}, + [1817] = {.lex_state = 14}, + [1818] = {.lex_state = 14}, + [1819] = {.lex_state = 14}, + [1820] = {.lex_state = 14}, + [1821] = {.lex_state = 14}, + [1822] = {.lex_state = 14}, + [1823] = {.lex_state = 14}, + [1824] = {.lex_state = 14}, + [1825] = {.lex_state = 14}, + [1826] = {.lex_state = 14}, + [1827] = {.lex_state = 14}, + [1828] = {.lex_state = 14}, + [1829] = {.lex_state = 14}, + [1830] = {.lex_state = 14}, + [1831] = {.lex_state = 14}, + [1832] = {.lex_state = 14}, + [1833] = {.lex_state = 14}, + [1834] = {.lex_state = 14}, + [1835] = {.lex_state = 14}, + [1836] = {.lex_state = 14}, + [1837] = {.lex_state = 14}, + [1838] = {.lex_state = 14}, + [1839] = {.lex_state = 14}, + [1840] = {.lex_state = 14}, + [1841] = {.lex_state = 14}, + [1842] = {.lex_state = 14}, + [1843] = {.lex_state = 14}, + [1844] = {.lex_state = 14}, + [1845] = {.lex_state = 14}, + [1846] = {.lex_state = 14}, + [1847] = {.lex_state = 14}, + [1848] = {.lex_state = 14}, + [1849] = {.lex_state = 14}, + [1850] = {.lex_state = 14}, + [1851] = {.lex_state = 14}, + [1852] = {.lex_state = 14}, + [1853] = {.lex_state = 14}, + [1854] = {.lex_state = 14}, + [1855] = {.lex_state = 14}, + [1856] = {.lex_state = 14}, + [1857] = {.lex_state = 14}, + [1858] = {.lex_state = 14}, + [1859] = {.lex_state = 14}, + [1860] = {.lex_state = 14}, + [1861] = {.lex_state = 14}, + [1862] = {.lex_state = 14}, + [1863] = {.lex_state = 14}, + [1864] = {.lex_state = 14}, + [1865] = {.lex_state = 14}, + [1866] = {.lex_state = 14}, + [1867] = {.lex_state = 14}, + [1868] = {.lex_state = 14}, + [1869] = {.lex_state = 14}, + [1870] = {.lex_state = 14}, + [1871] = {.lex_state = 14}, + [1872] = {.lex_state = 14}, + [1873] = {.lex_state = 14}, + [1874] = {.lex_state = 14}, + [1875] = {.lex_state = 14}, + [1876] = {.lex_state = 14}, + [1877] = {.lex_state = 14}, + [1878] = {.lex_state = 14}, + [1879] = {.lex_state = 14}, + [1880] = {.lex_state = 14}, + [1881] = {.lex_state = 14}, + [1882] = {.lex_state = 14}, + [1883] = {.lex_state = 14}, + [1884] = {.lex_state = 14}, + [1885] = {.lex_state = 14}, + [1886] = {.lex_state = 14}, + [1887] = {.lex_state = 14}, + [1888] = {.lex_state = 14}, + [1889] = {.lex_state = 14}, + [1890] = {.lex_state = 14}, + [1891] = {.lex_state = 14}, + [1892] = {.lex_state = 14}, + [1893] = {.lex_state = 14}, + [1894] = {.lex_state = 14}, + [1895] = {.lex_state = 14}, + [1896] = {.lex_state = 14}, + [1897] = {.lex_state = 14}, + [1898] = {.lex_state = 14}, + [1899] = {.lex_state = 14}, + [1900] = {.lex_state = 14}, + [1901] = {.lex_state = 14}, + [1902] = {.lex_state = 14}, + [1903] = {.lex_state = 14}, + [1904] = {.lex_state = 14}, + [1905] = {.lex_state = 14}, + [1906] = {.lex_state = 14}, + [1907] = {.lex_state = 14}, + [1908] = {.lex_state = 14}, + [1909] = {.lex_state = 14}, + [1910] = {.lex_state = 14}, + [1911] = {.lex_state = 14}, + [1912] = {.lex_state = 14}, + [1913] = {.lex_state = 14}, + [1914] = {.lex_state = 14}, + [1915] = {.lex_state = 14}, + [1916] = {.lex_state = 14}, + [1917] = {.lex_state = 14}, + [1918] = {.lex_state = 14}, + [1919] = {.lex_state = 14}, + [1920] = {.lex_state = 14}, + [1921] = {.lex_state = 14}, + [1922] = {.lex_state = 14}, + [1923] = {.lex_state = 14}, + [1924] = {.lex_state = 14}, + [1925] = {.lex_state = 14}, + [1926] = {.lex_state = 14}, + [1927] = {.lex_state = 14}, + [1928] = {.lex_state = 14}, + [1929] = {.lex_state = 14}, + [1930] = {.lex_state = 14}, + [1931] = {.lex_state = 14}, + [1932] = {.lex_state = 14}, + [1933] = {.lex_state = 14}, + [1934] = {.lex_state = 14}, + [1935] = {.lex_state = 14}, + [1936] = {.lex_state = 14}, + [1937] = {.lex_state = 14}, + [1938] = {.lex_state = 14}, + [1939] = {.lex_state = 14}, + [1940] = {.lex_state = 14}, + [1941] = {.lex_state = 14}, + [1942] = {.lex_state = 14}, + [1943] = {.lex_state = 14}, + [1944] = {.lex_state = 14}, + [1945] = {.lex_state = 14}, + [1946] = {.lex_state = 14}, + [1947] = {.lex_state = 14}, + [1948] = {.lex_state = 14}, + [1949] = {.lex_state = 14}, + [1950] = {.lex_state = 14}, + [1951] = {.lex_state = 14}, + [1952] = {.lex_state = 14}, + [1953] = {.lex_state = 14}, + [1954] = {.lex_state = 14}, + [1955] = {.lex_state = 14}, + [1956] = {.lex_state = 14}, + [1957] = {.lex_state = 14}, + [1958] = {.lex_state = 14}, + [1959] = {.lex_state = 14}, + [1960] = {.lex_state = 14}, + [1961] = {.lex_state = 14}, + [1962] = {.lex_state = 14}, + [1963] = {.lex_state = 14}, + [1964] = {.lex_state = 14}, + [1965] = {.lex_state = 14}, + [1966] = {.lex_state = 14}, + [1967] = {.lex_state = 14}, + [1968] = {.lex_state = 14}, + [1969] = {.lex_state = 14}, + [1970] = {.lex_state = 14}, + [1971] = {.lex_state = 14}, + [1972] = {.lex_state = 14}, + [1973] = {.lex_state = 14}, + [1974] = {.lex_state = 14}, + [1975] = {.lex_state = 14}, + [1976] = {.lex_state = 14}, + [1977] = {.lex_state = 14}, + [1978] = {.lex_state = 14}, + [1979] = {.lex_state = 14}, + [1980] = {.lex_state = 14}, + [1981] = {.lex_state = 14}, + [1982] = {.lex_state = 14}, + [1983] = {.lex_state = 14}, + [1984] = {.lex_state = 14}, + [1985] = {.lex_state = 14}, + [1986] = {.lex_state = 14}, + [1987] = {.lex_state = 14}, + [1988] = {.lex_state = 14}, + [1989] = {.lex_state = 14}, + [1990] = {.lex_state = 14}, + [1991] = {.lex_state = 14}, + [1992] = {.lex_state = 14}, + [1993] = {.lex_state = 14}, + [1994] = {.lex_state = 14}, + [1995] = {.lex_state = 14}, + [1996] = {.lex_state = 14}, + [1997] = {.lex_state = 14}, + [1998] = {.lex_state = 14}, + [1999] = {.lex_state = 14}, + [2000] = {.lex_state = 14}, + [2001] = {.lex_state = 14}, [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 3}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 2}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 2}, + [2003] = {.lex_state = 14}, + [2004] = {.lex_state = 14}, + [2005] = {.lex_state = 14}, + [2006] = {.lex_state = 14}, + [2007] = {.lex_state = 14}, + [2008] = {.lex_state = 14}, + [2009] = {.lex_state = 14}, + [2010] = {.lex_state = 14}, + [2011] = {.lex_state = 14}, + [2012] = {.lex_state = 14}, + [2013] = {.lex_state = 14}, + [2014] = {.lex_state = 14}, + [2015] = {.lex_state = 14}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 2}, - [2019] = {.lex_state = 2}, - [2020] = {.lex_state = 2}, - [2021] = {.lex_state = 2}, - [2022] = {.lex_state = 0}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 0}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 0}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 0}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 0}, + [2017] = {.lex_state = 14}, + [2018] = {.lex_state = 14}, + [2019] = {.lex_state = 14}, + [2020] = {.lex_state = 14}, + [2021] = {.lex_state = 14}, + [2022] = {.lex_state = 14}, + [2023] = {.lex_state = 14}, + [2024] = {.lex_state = 14}, + [2025] = {.lex_state = 14}, + [2026] = {.lex_state = 14}, + [2027] = {.lex_state = 14}, + [2028] = {.lex_state = 14}, + [2029] = {.lex_state = 14}, + [2030] = {.lex_state = 14}, + [2031] = {.lex_state = 14}, + [2032] = {.lex_state = 14}, + [2033] = {.lex_state = 14}, + [2034] = {.lex_state = 14}, + [2035] = {.lex_state = 14}, + [2036] = {.lex_state = 14}, + [2037] = {.lex_state = 14}, + [2038] = {.lex_state = 14}, + [2039] = {.lex_state = 14}, + [2040] = {.lex_state = 14}, + [2041] = {.lex_state = 14}, + [2042] = {.lex_state = 14}, + [2043] = {.lex_state = 14}, + [2044] = {.lex_state = 14}, + [2045] = {.lex_state = 14}, + [2046] = {.lex_state = 14}, + [2047] = {.lex_state = 14}, + [2048] = {.lex_state = 14}, + [2049] = {.lex_state = 14}, + [2050] = {.lex_state = 14}, + [2051] = {.lex_state = 14}, + [2052] = {.lex_state = 14}, + [2053] = {.lex_state = 14}, + [2054] = {.lex_state = 14}, + [2055] = {.lex_state = 14}, + [2056] = {.lex_state = 14}, + [2057] = {.lex_state = 14}, + [2058] = {.lex_state = 14}, [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, + [2060] = {.lex_state = 14}, + [2061] = {.lex_state = 14}, + [2062] = {.lex_state = 14}, + [2063] = {.lex_state = 14}, + [2064] = {.lex_state = 14}, + [2065] = {.lex_state = 14}, + [2066] = {.lex_state = 14}, [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 0}, + [2068] = {.lex_state = 14}, + [2069] = {.lex_state = 14}, + [2070] = {.lex_state = 14}, [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, @@ -9559,10 +11022,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2098] = {.lex_state = 0}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 0}, + [2101] = {.lex_state = 14}, [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, + [2104] = {.lex_state = 14}, [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, @@ -9575,7 +11038,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 0}, + [2117] = {.lex_state = 14}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, [2120] = {.lex_state = 0}, @@ -9592,10 +11055,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2131] = {.lex_state = 0}, [2132] = {.lex_state = 0}, [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, + [2134] = {.lex_state = 14}, [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, + [2137] = {.lex_state = 14}, [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, [2140] = {.lex_state = 0}, @@ -9667,7 +11130,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2206] = {.lex_state = 0}, [2207] = {.lex_state = 0}, [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 2}, + [2209] = {.lex_state = 0}, [2210] = {.lex_state = 0}, [2211] = {.lex_state = 0}, [2212] = {.lex_state = 0}, @@ -9682,22 +11145,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2221] = {.lex_state = 0}, [2222] = {.lex_state = 0}, [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 2}, + [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, [2227] = {.lex_state = 0}, [2228] = {.lex_state = 0}, [2229] = {.lex_state = 0}, [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 2}, - [2232] = {.lex_state = 2}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, [2233] = {.lex_state = 0}, [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, + [2235] = {.lex_state = 14}, + [2236] = {.lex_state = 14}, + [2237] = {.lex_state = 14}, + [2238] = {.lex_state = 14}, + [2239] = {.lex_state = 14}, [2240] = {.lex_state = 0}, [2241] = {.lex_state = 0}, [2242] = {.lex_state = 0}, @@ -9707,7 +11170,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2246] = {.lex_state = 0}, [2247] = {.lex_state = 0}, [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, + [2249] = {.lex_state = 14}, [2250] = {.lex_state = 0}, [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, @@ -9716,7 +11179,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2255] = {.lex_state = 0}, [2256] = {.lex_state = 0}, [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 2}, + [2258] = {.lex_state = 0}, [2259] = {.lex_state = 0}, [2260] = {.lex_state = 0}, [2261] = {.lex_state = 0}, @@ -9735,105 +11198,1281 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2274] = {.lex_state = 0}, [2275] = {.lex_state = 0}, [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, + [2277] = {.lex_state = 14}, [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, + [2279] = {.lex_state = 14}, [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 0}, - [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 0}, - [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 0}, - [2307] = {.lex_state = 0}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 0}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 0}, - [2322] = {.lex_state = 0}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 0}, - [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 0}, - [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 0}, - [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, - [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, - [2352] = {.lex_state = 0}, - [2353] = {.lex_state = 0}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 0}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 0}, - [2374] = {.lex_state = 0}, - [2375] = {.lex_state = 0}, + [2281] = {.lex_state = 14}, + [2282] = {.lex_state = 14}, + [2283] = {.lex_state = 14}, + [2284] = {.lex_state = 14}, + [2285] = {.lex_state = 14}, + [2286] = {.lex_state = 14}, + [2287] = {.lex_state = 14}, + [2288] = {.lex_state = 14}, + [2289] = {.lex_state = 13}, + [2290] = {.lex_state = 13}, + [2291] = {.lex_state = 13}, + [2292] = {.lex_state = 13}, + [2293] = {.lex_state = 13}, + [2294] = {.lex_state = 13}, + [2295] = {.lex_state = 13}, + [2296] = {.lex_state = 13}, + [2297] = {.lex_state = 13}, + [2298] = {.lex_state = 13}, + [2299] = {.lex_state = 13}, + [2300] = {.lex_state = 13}, + [2301] = {.lex_state = 13}, + [2302] = {.lex_state = 13}, + [2303] = {.lex_state = 13}, + [2304] = {.lex_state = 13}, + [2305] = {.lex_state = 13}, + [2306] = {.lex_state = 13}, + [2307] = {.lex_state = 13}, + [2308] = {.lex_state = 13}, + [2309] = {.lex_state = 13}, + [2310] = {.lex_state = 13}, + [2311] = {.lex_state = 13}, + [2312] = {.lex_state = 13}, + [2313] = {.lex_state = 13}, + [2314] = {.lex_state = 13}, + [2315] = {.lex_state = 13}, + [2316] = {.lex_state = 13}, + [2317] = {.lex_state = 13}, + [2318] = {.lex_state = 13}, + [2319] = {.lex_state = 13}, + [2320] = {.lex_state = 13}, + [2321] = {.lex_state = 13}, + [2322] = {.lex_state = 13}, + [2323] = {.lex_state = 13}, + [2324] = {.lex_state = 13}, + [2325] = {.lex_state = 13}, + [2326] = {.lex_state = 13}, + [2327] = {.lex_state = 13}, + [2328] = {.lex_state = 13}, + [2329] = {.lex_state = 13}, + [2330] = {.lex_state = 13}, + [2331] = {.lex_state = 13}, + [2332] = {.lex_state = 13}, + [2333] = {.lex_state = 13}, + [2334] = {.lex_state = 13}, + [2335] = {.lex_state = 13}, + [2336] = {.lex_state = 13}, + [2337] = {.lex_state = 13}, + [2338] = {.lex_state = 13}, + [2339] = {.lex_state = 13}, + [2340] = {.lex_state = 13}, + [2341] = {.lex_state = 13}, + [2342] = {.lex_state = 13}, + [2343] = {.lex_state = 13}, + [2344] = {.lex_state = 13}, + [2345] = {.lex_state = 13}, + [2346] = {.lex_state = 13}, + [2347] = {.lex_state = 13}, + [2348] = {.lex_state = 13}, + [2349] = {.lex_state = 13}, + [2350] = {.lex_state = 13}, + [2351] = {.lex_state = 13}, + [2352] = {.lex_state = 13}, + [2353] = {.lex_state = 13}, + [2354] = {.lex_state = 13}, + [2355] = {.lex_state = 13}, + [2356] = {.lex_state = 13}, + [2357] = {.lex_state = 13}, + [2358] = {.lex_state = 13}, + [2359] = {.lex_state = 13}, + [2360] = {.lex_state = 13}, + [2361] = {.lex_state = 13}, + [2362] = {.lex_state = 13}, + [2363] = {.lex_state = 13}, + [2364] = {.lex_state = 13}, + [2365] = {.lex_state = 13}, + [2366] = {.lex_state = 13}, + [2367] = {.lex_state = 13}, + [2368] = {.lex_state = 13}, + [2369] = {.lex_state = 13}, + [2370] = {.lex_state = 13}, + [2371] = {.lex_state = 13}, + [2372] = {.lex_state = 13}, + [2373] = {.lex_state = 13}, + [2374] = {.lex_state = 13}, + [2375] = {.lex_state = 13}, + [2376] = {.lex_state = 13}, + [2377] = {.lex_state = 13}, + [2378] = {.lex_state = 13}, + [2379] = {.lex_state = 13}, + [2380] = {.lex_state = 13}, + [2381] = {.lex_state = 13}, + [2382] = {.lex_state = 13}, + [2383] = {.lex_state = 13}, + [2384] = {.lex_state = 13}, + [2385] = {.lex_state = 13}, + [2386] = {.lex_state = 13}, + [2387] = {.lex_state = 13}, + [2388] = {.lex_state = 13}, + [2389] = {.lex_state = 13}, + [2390] = {.lex_state = 13}, + [2391] = {.lex_state = 13}, + [2392] = {.lex_state = 13}, + [2393] = {.lex_state = 13}, + [2394] = {.lex_state = 13}, + [2395] = {.lex_state = 13}, + [2396] = {.lex_state = 13}, + [2397] = {.lex_state = 13}, + [2398] = {.lex_state = 13}, + [2399] = {.lex_state = 13}, + [2400] = {.lex_state = 13}, + [2401] = {.lex_state = 13}, + [2402] = {.lex_state = 13}, + [2403] = {.lex_state = 13}, + [2404] = {.lex_state = 13}, + [2405] = {.lex_state = 13}, + [2406] = {.lex_state = 13}, + [2407] = {.lex_state = 13}, + [2408] = {.lex_state = 13}, + [2409] = {.lex_state = 13}, + [2410] = {.lex_state = 13}, + [2411] = {.lex_state = 13}, + [2412] = {.lex_state = 13}, + [2413] = {.lex_state = 13}, + [2414] = {.lex_state = 13}, + [2415] = {.lex_state = 13}, + [2416] = {.lex_state = 13}, + [2417] = {.lex_state = 13}, + [2418] = {.lex_state = 13}, + [2419] = {.lex_state = 13}, + [2420] = {.lex_state = 13}, + [2421] = {.lex_state = 13}, + [2422] = {.lex_state = 13}, + [2423] = {.lex_state = 13}, + [2424] = {.lex_state = 13}, + [2425] = {.lex_state = 13}, + [2426] = {.lex_state = 13}, + [2427] = {.lex_state = 13}, + [2428] = {.lex_state = 13}, + [2429] = {.lex_state = 13}, + [2430] = {.lex_state = 13}, + [2431] = {.lex_state = 13}, + [2432] = {.lex_state = 13}, + [2433] = {.lex_state = 13}, + [2434] = {.lex_state = 13}, + [2435] = {.lex_state = 13}, + [2436] = {.lex_state = 13}, + [2437] = {.lex_state = 13}, + [2438] = {.lex_state = 13}, + [2439] = {.lex_state = 13}, + [2440] = {.lex_state = 13}, + [2441] = {.lex_state = 13}, + [2442] = {.lex_state = 13}, + [2443] = {.lex_state = 13}, + [2444] = {.lex_state = 13}, + [2445] = {.lex_state = 13}, + [2446] = {.lex_state = 13}, + [2447] = {.lex_state = 13}, + [2448] = {.lex_state = 13}, + [2449] = {.lex_state = 13}, + [2450] = {.lex_state = 13}, + [2451] = {.lex_state = 13}, + [2452] = {.lex_state = 13}, + [2453] = {.lex_state = 13}, + [2454] = {.lex_state = 13}, + [2455] = {.lex_state = 13}, + [2456] = {.lex_state = 13}, + [2457] = {.lex_state = 13}, + [2458] = {.lex_state = 13}, + [2459] = {.lex_state = 13}, + [2460] = {.lex_state = 13}, + [2461] = {.lex_state = 13}, + [2462] = {.lex_state = 13}, + [2463] = {.lex_state = 13}, + [2464] = {.lex_state = 13}, + [2465] = {.lex_state = 13}, + [2466] = {.lex_state = 13}, + [2467] = {.lex_state = 13}, + [2468] = {.lex_state = 13}, + [2469] = {.lex_state = 13}, + [2470] = {.lex_state = 13}, + [2471] = {.lex_state = 13}, + [2472] = {.lex_state = 13}, + [2473] = {.lex_state = 13}, + [2474] = {.lex_state = 13}, + [2475] = {.lex_state = 13}, + [2476] = {.lex_state = 13}, + [2477] = {.lex_state = 13}, + [2478] = {.lex_state = 13}, + [2479] = {.lex_state = 13}, + [2480] = {.lex_state = 13}, + [2481] = {.lex_state = 13}, + [2482] = {.lex_state = 13}, + [2483] = {.lex_state = 13}, + [2484] = {.lex_state = 13}, + [2485] = {.lex_state = 13}, + [2486] = {.lex_state = 13}, + [2487] = {.lex_state = 13}, + [2488] = {.lex_state = 13}, + [2489] = {.lex_state = 13}, + [2490] = {.lex_state = 13}, + [2491] = {.lex_state = 13}, + [2492] = {.lex_state = 13}, + [2493] = {.lex_state = 13}, + [2494] = {.lex_state = 14}, + [2495] = {.lex_state = 14}, + [2496] = {.lex_state = 14}, + [2497] = {.lex_state = 14}, + [2498] = {.lex_state = 14}, + [2499] = {.lex_state = 14}, + [2500] = {.lex_state = 14}, + [2501] = {.lex_state = 14}, + [2502] = {.lex_state = 14}, + [2503] = {.lex_state = 14}, + [2504] = {.lex_state = 0}, + [2505] = {.lex_state = 0}, + [2506] = {.lex_state = 0}, + [2507] = {.lex_state = 0}, + [2508] = {.lex_state = 0}, + [2509] = {.lex_state = 0}, + [2510] = {.lex_state = 2}, + [2511] = {.lex_state = 2}, + [2512] = {.lex_state = 2}, + [2513] = {.lex_state = 2}, + [2514] = {.lex_state = 14}, + [2515] = {.lex_state = 14}, + [2516] = {.lex_state = 2}, + [2517] = {.lex_state = 2}, + [2518] = {.lex_state = 2}, + [2519] = {.lex_state = 14}, + [2520] = {.lex_state = 14}, + [2521] = {.lex_state = 0}, + [2522] = {.lex_state = 14}, + [2523] = {.lex_state = 2}, + [2524] = {.lex_state = 2}, + [2525] = {.lex_state = 14}, + [2526] = {.lex_state = 14}, + [2527] = {.lex_state = 0}, + [2528] = {.lex_state = 14}, + [2529] = {.lex_state = 14}, + [2530] = {.lex_state = 14}, + [2531] = {.lex_state = 14}, + [2532] = {.lex_state = 2}, + [2533] = {.lex_state = 2}, + [2534] = {.lex_state = 2}, + [2535] = {.lex_state = 2}, + [2536] = {.lex_state = 14}, + [2537] = {.lex_state = 2}, + [2538] = {.lex_state = 0}, + [2539] = {.lex_state = 0}, + [2540] = {.lex_state = 2}, + [2541] = {.lex_state = 2}, + [2542] = {.lex_state = 2}, + [2543] = {.lex_state = 2}, + [2544] = {.lex_state = 14}, + [2545] = {.lex_state = 14}, + [2546] = {.lex_state = 14}, + [2547] = {.lex_state = 14}, + [2548] = {.lex_state = 14}, + [2549] = {.lex_state = 14}, + [2550] = {.lex_state = 14}, + [2551] = {.lex_state = 14}, + [2552] = {.lex_state = 14}, + [2553] = {.lex_state = 14}, + [2554] = {.lex_state = 0}, + [2555] = {.lex_state = 14}, + [2556] = {.lex_state = 14}, + [2557] = {.lex_state = 14}, + [2558] = {.lex_state = 14}, + [2559] = {.lex_state = 14}, + [2560] = {.lex_state = 14}, + [2561] = {.lex_state = 14}, + [2562] = {.lex_state = 14}, + [2563] = {.lex_state = 14}, + [2564] = {.lex_state = 14}, + [2565] = {.lex_state = 14}, + [2566] = {.lex_state = 14}, + [2567] = {.lex_state = 0}, + [2568] = {.lex_state = 14}, + [2569] = {.lex_state = 14}, + [2570] = {.lex_state = 14}, + [2571] = {.lex_state = 14}, + [2572] = {.lex_state = 14}, + [2573] = {.lex_state = 14}, + [2574] = {.lex_state = 14}, + [2575] = {.lex_state = 14}, + [2576] = {.lex_state = 14}, + [2577] = {.lex_state = 14}, + [2578] = {.lex_state = 14}, + [2579] = {.lex_state = 14}, + [2580] = {.lex_state = 14}, + [2581] = {.lex_state = 14}, + [2582] = {.lex_state = 14}, + [2583] = {.lex_state = 14}, + [2584] = {.lex_state = 14}, + [2585] = {.lex_state = 14}, + [2586] = {.lex_state = 14}, + [2587] = {.lex_state = 14}, + [2588] = {.lex_state = 14}, + [2589] = {.lex_state = 14}, + [2590] = {.lex_state = 14}, + [2591] = {.lex_state = 14}, + [2592] = {.lex_state = 14}, + [2593] = {.lex_state = 14}, + [2594] = {.lex_state = 14}, + [2595] = {.lex_state = 14}, + [2596] = {.lex_state = 14}, + [2597] = {.lex_state = 14}, + [2598] = {.lex_state = 14}, + [2599] = {.lex_state = 14}, + [2600] = {.lex_state = 0}, + [2601] = {.lex_state = 0}, + [2602] = {.lex_state = 0}, + [2603] = {.lex_state = 14}, + [2604] = {.lex_state = 14}, + [2605] = {.lex_state = 0}, + [2606] = {.lex_state = 14}, + [2607] = {.lex_state = 14}, + [2608] = {.lex_state = 14}, + [2609] = {.lex_state = 14}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 14}, + [2613] = {.lex_state = 0}, + [2614] = {.lex_state = 14}, + [2615] = {.lex_state = 0}, + [2616] = {.lex_state = 0}, + [2617] = {.lex_state = 14}, + [2618] = {.lex_state = 14}, + [2619] = {.lex_state = 14}, + [2620] = {.lex_state = 14}, + [2621] = {.lex_state = 14}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 14}, + [2624] = {.lex_state = 0}, + [2625] = {.lex_state = 0}, + [2626] = {.lex_state = 14}, + [2627] = {.lex_state = 0}, + [2628] = {.lex_state = 0}, + [2629] = {.lex_state = 0}, + [2630] = {.lex_state = 14}, + [2631] = {.lex_state = 0}, + [2632] = {.lex_state = 14}, + [2633] = {.lex_state = 14}, + [2634] = {.lex_state = 14}, + [2635] = {.lex_state = 14}, + [2636] = {.lex_state = 14}, + [2637] = {.lex_state = 14}, + [2638] = {.lex_state = 14}, + [2639] = {.lex_state = 0}, + [2640] = {.lex_state = 0}, + [2641] = {.lex_state = 14}, + [2642] = {.lex_state = 14}, + [2643] = {.lex_state = 14}, + [2644] = {.lex_state = 14}, + [2645] = {.lex_state = 14}, + [2646] = {.lex_state = 14}, + [2647] = {.lex_state = 14}, + [2648] = {.lex_state = 14}, + [2649] = {.lex_state = 14}, + [2650] = {.lex_state = 14}, + [2651] = {.lex_state = 14}, + [2652] = {.lex_state = 14}, + [2653] = {.lex_state = 14}, + [2654] = {.lex_state = 0}, + [2655] = {.lex_state = 14}, + [2656] = {.lex_state = 0}, + [2657] = {.lex_state = 0}, + [2658] = {.lex_state = 0}, + [2659] = {.lex_state = 0}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 14}, + [2662] = {.lex_state = 14}, + [2663] = {.lex_state = 0}, + [2664] = {.lex_state = 14}, + [2665] = {.lex_state = 0}, + [2666] = {.lex_state = 14}, + [2667] = {.lex_state = 14}, + [2668] = {.lex_state = 0}, + [2669] = {.lex_state = 14}, + [2670] = {.lex_state = 0}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 0}, + [2673] = {.lex_state = 14}, + [2674] = {.lex_state = 14}, + [2675] = {.lex_state = 14}, + [2676] = {.lex_state = 0}, + [2677] = {.lex_state = 14}, + [2678] = {.lex_state = 14}, + [2679] = {.lex_state = 14}, + [2680] = {.lex_state = 14}, + [2681] = {.lex_state = 0}, + [2682] = {.lex_state = 14}, + [2683] = {.lex_state = 14}, + [2684] = {.lex_state = 14}, + [2685] = {.lex_state = 14}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 14}, + [2688] = {.lex_state = 14}, + [2689] = {.lex_state = 14}, + [2690] = {.lex_state = 0}, + [2691] = {.lex_state = 14}, + [2692] = {.lex_state = 14}, + [2693] = {.lex_state = 14}, + [2694] = {.lex_state = 14}, + [2695] = {.lex_state = 0}, + [2696] = {.lex_state = 0}, + [2697] = {.lex_state = 0}, + [2698] = {.lex_state = 0}, + [2699] = {.lex_state = 14}, + [2700] = {.lex_state = 14}, + [2701] = {.lex_state = 14}, + [2702] = {.lex_state = 14}, + [2703] = {.lex_state = 0}, + [2704] = {.lex_state = 0}, + [2705] = {.lex_state = 14}, + [2706] = {.lex_state = 14}, + [2707] = {.lex_state = 14}, + [2708] = {.lex_state = 14}, + [2709] = {.lex_state = 0}, + [2710] = {.lex_state = 14}, + [2711] = {.lex_state = 14}, + [2712] = {.lex_state = 14}, + [2713] = {.lex_state = 14}, + [2714] = {.lex_state = 14}, + [2715] = {.lex_state = 14}, + [2716] = {.lex_state = 14}, + [2717] = {.lex_state = 14}, + [2718] = {.lex_state = 0}, + [2719] = {.lex_state = 14}, + [2720] = {.lex_state = 0}, + [2721] = {.lex_state = 14}, + [2722] = {.lex_state = 14}, + [2723] = {.lex_state = 14}, + [2724] = {.lex_state = 14}, + [2725] = {.lex_state = 14}, + [2726] = {.lex_state = 14}, + [2727] = {.lex_state = 14}, + [2728] = {.lex_state = 14}, + [2729] = {.lex_state = 14}, + [2730] = {.lex_state = 14}, + [2731] = {.lex_state = 14}, + [2732] = {.lex_state = 14}, + [2733] = {.lex_state = 14}, + [2734] = {.lex_state = 14}, + [2735] = {.lex_state = 0}, + [2736] = {.lex_state = 14}, + [2737] = {.lex_state = 0}, + [2738] = {.lex_state = 0}, + [2739] = {.lex_state = 0}, + [2740] = {.lex_state = 0}, + [2741] = {.lex_state = 0}, + [2742] = {.lex_state = 14}, + [2743] = {.lex_state = 14}, + [2744] = {.lex_state = 14}, + [2745] = {.lex_state = 0}, + [2746] = {.lex_state = 0}, + [2747] = {.lex_state = 14}, + [2748] = {.lex_state = 0}, + [2749] = {.lex_state = 14}, + [2750] = {.lex_state = 14}, + [2751] = {.lex_state = 0}, + [2752] = {.lex_state = 0}, + [2753] = {.lex_state = 14}, + [2754] = {.lex_state = 0}, + [2755] = {.lex_state = 14}, + [2756] = {.lex_state = 14}, + [2757] = {.lex_state = 14}, + [2758] = {.lex_state = 14}, + [2759] = {.lex_state = 14}, + [2760] = {.lex_state = 0}, + [2761] = {.lex_state = 14}, + [2762] = {.lex_state = 14}, + [2763] = {.lex_state = 14}, + [2764] = {.lex_state = 14}, + [2765] = {.lex_state = 14}, + [2766] = {.lex_state = 0}, + [2767] = {.lex_state = 0}, + [2768] = {.lex_state = 14}, + [2769] = {.lex_state = 0}, + [2770] = {.lex_state = 14}, + [2771] = {.lex_state = 14}, + [2772] = {.lex_state = 14}, + [2773] = {.lex_state = 14}, + [2774] = {.lex_state = 14}, + [2775] = {.lex_state = 14}, + [2776] = {.lex_state = 14}, + [2777] = {.lex_state = 14}, + [2778] = {.lex_state = 14}, + [2779] = {.lex_state = 14}, + [2780] = {.lex_state = 14}, + [2781] = {.lex_state = 14}, + [2782] = {.lex_state = 0}, + [2783] = {.lex_state = 14}, + [2784] = {.lex_state = 14}, + [2785] = {.lex_state = 0}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 0}, + [2788] = {.lex_state = 0}, + [2789] = {.lex_state = 14}, + [2790] = {.lex_state = 0}, + [2791] = {.lex_state = 0}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 0}, + [2794] = {.lex_state = 0}, + [2795] = {.lex_state = 0}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 0}, + [2798] = {.lex_state = 0}, + [2799] = {.lex_state = 0}, + [2800] = {.lex_state = 0}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 0}, + [2803] = {.lex_state = 0}, + [2804] = {.lex_state = 0}, + [2805] = {.lex_state = 0}, + [2806] = {.lex_state = 0}, + [2807] = {.lex_state = 0}, + [2808] = {.lex_state = 0}, + [2809] = {.lex_state = 0}, + [2810] = {.lex_state = 0}, + [2811] = {.lex_state = 0}, + [2812] = {.lex_state = 0}, + [2813] = {.lex_state = 0}, + [2814] = {.lex_state = 0}, + [2815] = {.lex_state = 0}, + [2816] = {.lex_state = 0}, + [2817] = {.lex_state = 0}, + [2818] = {.lex_state = 0}, + [2819] = {.lex_state = 0}, + [2820] = {.lex_state = 0}, + [2821] = {.lex_state = 0}, + [2822] = {.lex_state = 0}, + [2823] = {.lex_state = 0}, + [2824] = {.lex_state = 0}, + [2825] = {.lex_state = 0}, + [2826] = {.lex_state = 0}, + [2827] = {.lex_state = 0}, + [2828] = {.lex_state = 0}, + [2829] = {.lex_state = 0}, + [2830] = {.lex_state = 0}, + [2831] = {.lex_state = 0}, + [2832] = {.lex_state = 0}, + [2833] = {.lex_state = 0}, + [2834] = {.lex_state = 0}, + [2835] = {.lex_state = 0}, + [2836] = {.lex_state = 0}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 0}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 0}, + [2841] = {.lex_state = 2}, + [2842] = {.lex_state = 0}, + [2843] = {.lex_state = 0}, + [2844] = {.lex_state = 0}, + [2845] = {.lex_state = 0}, + [2846] = {.lex_state = 0}, + [2847] = {.lex_state = 0}, + [2848] = {.lex_state = 0}, + [2849] = {.lex_state = 0}, + [2850] = {.lex_state = 0}, + [2851] = {.lex_state = 0}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 0}, + [2854] = {.lex_state = 0}, + [2855] = {.lex_state = 3}, + [2856] = {.lex_state = 0}, + [2857] = {.lex_state = 0}, + [2858] = {.lex_state = 3}, + [2859] = {.lex_state = 0}, + [2860] = {.lex_state = 0}, + [2861] = {.lex_state = 0}, + [2862] = {.lex_state = 0}, + [2863] = {.lex_state = 0}, + [2864] = {.lex_state = 0}, + [2865] = {.lex_state = 0}, + [2866] = {.lex_state = 0}, + [2867] = {.lex_state = 0}, + [2868] = {.lex_state = 0}, + [2869] = {.lex_state = 0}, + [2870] = {.lex_state = 0}, + [2871] = {.lex_state = 0}, + [2872] = {.lex_state = 0}, + [2873] = {.lex_state = 0}, + [2874] = {.lex_state = 0}, + [2875] = {.lex_state = 0}, + [2876] = {.lex_state = 0}, + [2877] = {.lex_state = 3}, + [2878] = {.lex_state = 0}, + [2879] = {.lex_state = 2}, + [2880] = {.lex_state = 0}, + [2881] = {.lex_state = 0}, + [2882] = {.lex_state = 0}, + [2883] = {.lex_state = 0}, + [2884] = {.lex_state = 0}, + [2885] = {.lex_state = 0}, + [2886] = {.lex_state = 0}, + [2887] = {.lex_state = 0}, + [2888] = {.lex_state = 0}, + [2889] = {.lex_state = 0}, + [2890] = {.lex_state = 0}, + [2891] = {.lex_state = 0}, + [2892] = {.lex_state = 0}, + [2893] = {.lex_state = 0}, + [2894] = {.lex_state = 0}, + [2895] = {.lex_state = 0}, + [2896] = {.lex_state = 0}, + [2897] = {.lex_state = 0}, + [2898] = {.lex_state = 0}, + [2899] = {.lex_state = 0}, + [2900] = {.lex_state = 0}, + [2901] = {.lex_state = 0}, + [2902] = {.lex_state = 0}, + [2903] = {.lex_state = 0}, + [2904] = {.lex_state = 0}, + [2905] = {.lex_state = 14}, + [2906] = {.lex_state = 0}, + [2907] = {.lex_state = 0}, + [2908] = {.lex_state = 0}, + [2909] = {.lex_state = 0}, + [2910] = {.lex_state = 0}, + [2911] = {.lex_state = 0}, + [2912] = {.lex_state = 0}, + [2913] = {.lex_state = 0}, + [2914] = {.lex_state = 0}, + [2915] = {.lex_state = 0}, + [2916] = {.lex_state = 0}, + [2917] = {.lex_state = 0}, + [2918] = {.lex_state = 0}, + [2919] = {.lex_state = 0}, + [2920] = {.lex_state = 0}, + [2921] = {.lex_state = 0}, + [2922] = {.lex_state = 0}, + [2923] = {.lex_state = 0}, + [2924] = {.lex_state = 0}, + [2925] = {.lex_state = 0}, + [2926] = {.lex_state = 2}, + [2927] = {.lex_state = 3}, + [2928] = {.lex_state = 0}, + [2929] = {.lex_state = 0}, + [2930] = {.lex_state = 0}, + [2931] = {.lex_state = 0}, + [2932] = {.lex_state = 0}, + [2933] = {.lex_state = 0}, + [2934] = {.lex_state = 0}, + [2935] = {.lex_state = 2}, + [2936] = {.lex_state = 2}, + [2937] = {.lex_state = 0}, + [2938] = {.lex_state = 14}, + [2939] = {.lex_state = 2}, + [2940] = {.lex_state = 2}, + [2941] = {.lex_state = 0}, + [2942] = {.lex_state = 0}, + [2943] = {.lex_state = 0}, + [2944] = {.lex_state = 0}, + [2945] = {.lex_state = 0}, + [2946] = {.lex_state = 0}, + [2947] = {.lex_state = 14}, + [2948] = {.lex_state = 0}, + [2949] = {.lex_state = 14}, + [2950] = {.lex_state = 0}, + [2951] = {.lex_state = 0}, + [2952] = {.lex_state = 0}, + [2953] = {.lex_state = 0}, + [2954] = {.lex_state = 0}, + [2955] = {.lex_state = 14}, + [2956] = {.lex_state = 14}, + [2957] = {.lex_state = 0}, + [2958] = {.lex_state = 0}, + [2959] = {.lex_state = 14}, + [2960] = {.lex_state = 0}, + [2961] = {.lex_state = 0}, + [2962] = {.lex_state = 0}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 0}, + [2965] = {.lex_state = 0}, + [2966] = {.lex_state = 0}, + [2967] = {.lex_state = 0}, + [2968] = {.lex_state = 0}, + [2969] = {.lex_state = 0}, + [2970] = {.lex_state = 0}, + [2971] = {.lex_state = 0}, + [2972] = {.lex_state = 14}, + [2973] = {.lex_state = 0}, + [2974] = {.lex_state = 0}, + [2975] = {.lex_state = 0}, + [2976] = {.lex_state = 0}, + [2977] = {.lex_state = 0}, + [2978] = {.lex_state = 0}, + [2979] = {.lex_state = 14}, + [2980] = {.lex_state = 0}, + [2981] = {.lex_state = 0}, + [2982] = {.lex_state = 0}, + [2983] = {.lex_state = 0}, + [2984] = {.lex_state = 0}, + [2985] = {.lex_state = 0}, + [2986] = {.lex_state = 0}, + [2987] = {.lex_state = 14}, + [2988] = {.lex_state = 14}, + [2989] = {.lex_state = 0}, + [2990] = {.lex_state = 0}, + [2991] = {.lex_state = 0}, + [2992] = {.lex_state = 14}, + [2993] = {.lex_state = 14}, + [2994] = {.lex_state = 0}, + [2995] = {.lex_state = 0}, + [2996] = {.lex_state = 0}, + [2997] = {.lex_state = 3}, + [2998] = {.lex_state = 0}, + [2999] = {.lex_state = 0}, + [3000] = {.lex_state = 0}, + [3001] = {.lex_state = 14}, + [3002] = {.lex_state = 0}, + [3003] = {.lex_state = 0}, + [3004] = {.lex_state = 14}, + [3005] = {.lex_state = 0}, + [3006] = {.lex_state = 0}, + [3007] = {.lex_state = 0}, + [3008] = {.lex_state = 0}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 0}, + [3012] = {.lex_state = 0}, + [3013] = {.lex_state = 0}, + [3014] = {.lex_state = 0}, + [3015] = {.lex_state = 0}, + [3016] = {.lex_state = 0}, + [3017] = {.lex_state = 0}, + [3018] = {.lex_state = 0}, + [3019] = {.lex_state = 0}, + [3020] = {.lex_state = 0}, + [3021] = {.lex_state = 0}, + [3022] = {.lex_state = 0}, + [3023] = {.lex_state = 0}, + [3024] = {.lex_state = 0}, + [3025] = {.lex_state = 0}, + [3026] = {.lex_state = 0}, + [3027] = {.lex_state = 0}, + [3028] = {.lex_state = 0}, + [3029] = {.lex_state = 14}, + [3030] = {.lex_state = 0}, + [3031] = {.lex_state = 14}, + [3032] = {.lex_state = 0}, + [3033] = {.lex_state = 0}, + [3034] = {.lex_state = 14}, + [3035] = {.lex_state = 0}, + [3036] = {.lex_state = 14}, + [3037] = {.lex_state = 14}, + [3038] = {.lex_state = 0}, + [3039] = {.lex_state = 14}, + [3040] = {.lex_state = 0}, + [3041] = {.lex_state = 0}, + [3042] = {.lex_state = 0}, + [3043] = {.lex_state = 0}, + [3044] = {.lex_state = 0}, + [3045] = {.lex_state = 0}, + [3046] = {.lex_state = 0}, + [3047] = {.lex_state = 0}, + [3048] = {.lex_state = 0}, + [3049] = {.lex_state = 0}, + [3050] = {.lex_state = 0}, + [3051] = {.lex_state = 0}, + [3052] = {.lex_state = 0}, + [3053] = {.lex_state = 0}, + [3054] = {.lex_state = 0}, + [3055] = {.lex_state = 2}, + [3056] = {.lex_state = 0}, + [3057] = {.lex_state = 0}, + [3058] = {.lex_state = 2}, + [3059] = {.lex_state = 2}, + [3060] = {.lex_state = 0}, + [3061] = {.lex_state = 0}, + [3062] = {.lex_state = 14}, + [3063] = {.lex_state = 2}, + [3064] = {.lex_state = 2}, + [3065] = {.lex_state = 2}, + [3066] = {.lex_state = 0}, + [3067] = {.lex_state = 0}, + [3068] = {.lex_state = 14}, + [3069] = {.lex_state = 2}, + [3070] = {.lex_state = 2}, + [3071] = {.lex_state = 0}, + [3072] = {.lex_state = 3}, + [3073] = {.lex_state = 0}, + [3074] = {.lex_state = 3}, + [3075] = {.lex_state = 0}, + [3076] = {.lex_state = 3}, + [3077] = {.lex_state = 0}, + [3078] = {.lex_state = 0}, + [3079] = {.lex_state = 0}, + [3080] = {.lex_state = 0}, + [3081] = {.lex_state = 0}, + [3082] = {.lex_state = 0}, + [3083] = {.lex_state = 3}, + [3084] = {.lex_state = 0}, + [3085] = {.lex_state = 0}, + [3086] = {.lex_state = 0}, + [3087] = {.lex_state = 0}, + [3088] = {.lex_state = 0}, + [3089] = {.lex_state = 0}, + [3090] = {.lex_state = 0}, + [3091] = {.lex_state = 0}, + [3092] = {.lex_state = 0}, + [3093] = {.lex_state = 0}, + [3094] = {.lex_state = 0}, + [3095] = {.lex_state = 2}, + [3096] = {.lex_state = 0}, + [3097] = {.lex_state = 2}, + [3098] = {.lex_state = 2}, + [3099] = {.lex_state = 2}, + [3100] = {.lex_state = 2}, + [3101] = {.lex_state = 2}, + [3102] = {.lex_state = 2}, + [3103] = {.lex_state = 2}, + [3104] = {.lex_state = 2}, + [3105] = {.lex_state = 2}, + [3106] = {.lex_state = 0}, + [3107] = {.lex_state = 0}, + [3108] = {.lex_state = 0}, + [3109] = {.lex_state = 0}, + [3110] = {.lex_state = 0}, + [3111] = {.lex_state = 0}, + [3112] = {.lex_state = 0}, + [3113] = {.lex_state = 0}, + [3114] = {.lex_state = 0}, + [3115] = {.lex_state = 0}, + [3116] = {.lex_state = 0}, + [3117] = {.lex_state = 0}, + [3118] = {.lex_state = 0}, + [3119] = {.lex_state = 0}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 0}, + [3122] = {.lex_state = 0}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 0}, + [3125] = {.lex_state = 14}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 0}, + [3128] = {.lex_state = 0}, + [3129] = {.lex_state = 0}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 14}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 14}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 0}, + [3137] = {.lex_state = 0}, + [3138] = {.lex_state = 0}, + [3139] = {.lex_state = 14}, + [3140] = {.lex_state = 0}, + [3141] = {.lex_state = 14}, + [3142] = {.lex_state = 14}, + [3143] = {.lex_state = 0}, + [3144] = {.lex_state = 0}, + [3145] = {.lex_state = 14}, + [3146] = {.lex_state = 0}, + [3147] = {.lex_state = 14}, + [3148] = {.lex_state = 0}, + [3149] = {.lex_state = 14}, + [3150] = {.lex_state = 0}, + [3151] = {.lex_state = 14}, + [3152] = {.lex_state = 0}, + [3153] = {.lex_state = 0}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 14}, + [3156] = {.lex_state = 0}, + [3157] = {.lex_state = 0}, + [3158] = {.lex_state = 0}, + [3159] = {.lex_state = 0}, + [3160] = {.lex_state = 0}, + [3161] = {.lex_state = 0}, + [3162] = {.lex_state = 0}, + [3163] = {.lex_state = 0}, + [3164] = {.lex_state = 0}, + [3165] = {.lex_state = 14}, + [3166] = {.lex_state = 0}, + [3167] = {.lex_state = 0}, + [3168] = {.lex_state = 0}, + [3169] = {.lex_state = 0}, + [3170] = {.lex_state = 0}, + [3171] = {.lex_state = 0}, + [3172] = {.lex_state = 14}, + [3173] = {.lex_state = 0}, + [3174] = {.lex_state = 0}, + [3175] = {.lex_state = 0}, + [3176] = {.lex_state = 0}, + [3177] = {.lex_state = 0}, + [3178] = {.lex_state = 14}, + [3179] = {.lex_state = 0}, + [3180] = {.lex_state = 0}, + [3181] = {.lex_state = 14}, + [3182] = {.lex_state = 0}, + [3183] = {.lex_state = 14}, + [3184] = {.lex_state = 0}, + [3185] = {.lex_state = 0}, + [3186] = {.lex_state = 0}, + [3187] = {.lex_state = 0}, + [3188] = {.lex_state = 0}, + [3189] = {.lex_state = 0}, + [3190] = {.lex_state = 0}, + [3191] = {.lex_state = 0}, + [3192] = {.lex_state = 0}, + [3193] = {.lex_state = 0}, + [3194] = {.lex_state = 0}, + [3195] = {.lex_state = 0}, + [3196] = {.lex_state = 0}, + [3197] = {.lex_state = 0}, + [3198] = {.lex_state = 0}, + [3199] = {.lex_state = 0}, + [3200] = {.lex_state = 0}, + [3201] = {.lex_state = 0}, + [3202] = {.lex_state = 14}, + [3203] = {.lex_state = 0}, + [3204] = {.lex_state = 0}, + [3205] = {.lex_state = 0}, + [3206] = {.lex_state = 0}, + [3207] = {.lex_state = 14}, + [3208] = {.lex_state = 0}, + [3209] = {.lex_state = 0}, + [3210] = {.lex_state = 0}, + [3211] = {.lex_state = 0}, + [3212] = {.lex_state = 0}, + [3213] = {.lex_state = 0}, + [3214] = {.lex_state = 0}, + [3215] = {.lex_state = 14}, + [3216] = {.lex_state = 0}, + [3217] = {.lex_state = 0}, + [3218] = {.lex_state = 0}, + [3219] = {.lex_state = 0}, + [3220] = {.lex_state = 0}, + [3221] = {.lex_state = 0}, + [3222] = {.lex_state = 0}, + [3223] = {.lex_state = 0}, + [3224] = {.lex_state = 0}, + [3225] = {.lex_state = 0}, + [3226] = {.lex_state = 0}, + [3227] = {.lex_state = 0}, + [3228] = {.lex_state = 14}, + [3229] = {.lex_state = 0}, + [3230] = {.lex_state = 0}, + [3231] = {.lex_state = 0}, + [3232] = {.lex_state = 0}, + [3233] = {.lex_state = 0}, + [3234] = {.lex_state = 0}, + [3235] = {.lex_state = 0}, + [3236] = {.lex_state = 0}, + [3237] = {.lex_state = 0}, + [3238] = {.lex_state = 0}, + [3239] = {.lex_state = 14}, + [3240] = {.lex_state = 14}, + [3241] = {.lex_state = 14}, + [3242] = {.lex_state = 14}, + [3243] = {.lex_state = 14}, + [3244] = {.lex_state = 14}, + [3245] = {.lex_state = 14}, + [3246] = {.lex_state = 14}, + [3247] = {.lex_state = 14}, + [3248] = {.lex_state = 0}, + [3249] = {.lex_state = 0}, + [3250] = {.lex_state = 0}, + [3251] = {.lex_state = 14}, + [3252] = {.lex_state = 14}, + [3253] = {.lex_state = 14}, + [3254] = {.lex_state = 14}, + [3255] = {.lex_state = 14}, + [3256] = {.lex_state = 14}, + [3257] = {.lex_state = 14}, + [3258] = {.lex_state = 0}, + [3259] = {.lex_state = 0}, + [3260] = {.lex_state = 0}, + [3261] = {.lex_state = 0}, + [3262] = {.lex_state = 0}, + [3263] = {.lex_state = 0}, + [3264] = {.lex_state = 0}, + [3265] = {.lex_state = 0}, + [3266] = {.lex_state = 0}, + [3267] = {.lex_state = 0}, + [3268] = {.lex_state = 0}, + [3269] = {.lex_state = 0}, + [3270] = {.lex_state = 0}, + [3271] = {.lex_state = 0}, + [3272] = {.lex_state = 0}, + [3273] = {.lex_state = 0}, + [3274] = {.lex_state = 0}, + [3275] = {.lex_state = 0}, + [3276] = {.lex_state = 0}, + [3277] = {.lex_state = 0}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 0}, + [3280] = {.lex_state = 0}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 0}, + [3284] = {.lex_state = 0}, + [3285] = {.lex_state = 0}, + [3286] = {.lex_state = 0}, + [3287] = {.lex_state = 0}, + [3288] = {.lex_state = 0}, + [3289] = {.lex_state = 0}, + [3290] = {.lex_state = 0}, + [3291] = {.lex_state = 14}, + [3292] = {.lex_state = 14}, + [3293] = {.lex_state = 14}, + [3294] = {.lex_state = 14}, + [3295] = {.lex_state = 14}, + [3296] = {.lex_state = 14}, + [3297] = {.lex_state = 14}, + [3298] = {.lex_state = 0}, + [3299] = {.lex_state = 0}, + [3300] = {.lex_state = 0}, + [3301] = {.lex_state = 0}, + [3302] = {.lex_state = 0}, + [3303] = {.lex_state = 0}, + [3304] = {.lex_state = 14}, + [3305] = {.lex_state = 14}, + [3306] = {.lex_state = 14}, + [3307] = {.lex_state = 14}, + [3308] = {.lex_state = 14}, + [3309] = {.lex_state = 14}, + [3310] = {.lex_state = 14}, + [3311] = {.lex_state = 0}, + [3312] = {.lex_state = 14}, + [3313] = {.lex_state = 0}, + [3314] = {.lex_state = 0}, + [3315] = {.lex_state = 0}, + [3316] = {.lex_state = 0}, + [3317] = {.lex_state = 0}, + [3318] = {.lex_state = 0}, + [3319] = {.lex_state = 0}, + [3320] = {.lex_state = 0}, + [3321] = {.lex_state = 0}, + [3322] = {.lex_state = 0}, + [3323] = {.lex_state = 0}, + [3324] = {.lex_state = 0}, + [3325] = {.lex_state = 14}, + [3326] = {.lex_state = 14}, + [3327] = {.lex_state = 0}, + [3328] = {.lex_state = 0}, + [3329] = {.lex_state = 14}, + [3330] = {.lex_state = 14}, + [3331] = {.lex_state = 14}, + [3332] = {.lex_state = 14}, + [3333] = {.lex_state = 14}, + [3334] = {.lex_state = 0}, + [3335] = {.lex_state = 0}, + [3336] = {.lex_state = 0}, + [3337] = {.lex_state = 0}, + [3338] = {.lex_state = 14}, + [3339] = {.lex_state = 0}, + [3340] = {.lex_state = 14}, + [3341] = {.lex_state = 0}, + [3342] = {.lex_state = 0}, + [3343] = {.lex_state = 0}, + [3344] = {.lex_state = 0}, + [3345] = {.lex_state = 14}, + [3346] = {.lex_state = 14}, + [3347] = {.lex_state = 0}, + [3348] = {.lex_state = 0}, + [3349] = {.lex_state = 0}, + [3350] = {.lex_state = 0}, + [3351] = {.lex_state = 0}, + [3352] = {.lex_state = 0}, + [3353] = {.lex_state = 2}, + [3354] = {.lex_state = 0}, + [3355] = {.lex_state = 14}, + [3356] = {.lex_state = 0}, + [3357] = {.lex_state = 14}, + [3358] = {.lex_state = 0}, + [3359] = {.lex_state = 14}, + [3360] = {.lex_state = 0}, + [3361] = {.lex_state = 0}, + [3362] = {.lex_state = 0}, + [3363] = {.lex_state = 0}, + [3364] = {.lex_state = 0}, + [3365] = {.lex_state = 0}, + [3366] = {.lex_state = 0}, + [3367] = {.lex_state = 0}, + [3368] = {.lex_state = 0}, + [3369] = {.lex_state = 2}, + [3370] = {.lex_state = 0}, + [3371] = {.lex_state = 2}, + [3372] = {.lex_state = 0}, + [3373] = {.lex_state = 0}, + [3374] = {.lex_state = 2}, + [3375] = {.lex_state = 2}, + [3376] = {.lex_state = 0}, + [3377] = {.lex_state = 0}, + [3378] = {.lex_state = 14}, + [3379] = {.lex_state = 0}, + [3380] = {.lex_state = 14}, + [3381] = {.lex_state = 0}, + [3382] = {.lex_state = 0}, + [3383] = {.lex_state = 0}, + [3384] = {.lex_state = 2}, + [3385] = {.lex_state = 0}, + [3386] = {.lex_state = 0}, + [3387] = {.lex_state = 14}, + [3388] = {.lex_state = 0}, + [3389] = {.lex_state = 14}, + [3390] = {.lex_state = 0}, + [3391] = {.lex_state = 14}, + [3392] = {.lex_state = 2}, + [3393] = {.lex_state = 0}, + [3394] = {.lex_state = 14}, + [3395] = {.lex_state = 14}, + [3396] = {.lex_state = 0}, + [3397] = {.lex_state = 0}, + [3398] = {.lex_state = 0}, + [3399] = {.lex_state = 14}, + [3400] = {.lex_state = 0}, + [3401] = {.lex_state = 14}, + [3402] = {.lex_state = 0}, + [3403] = {.lex_state = 0}, + [3404] = {.lex_state = 0}, + [3405] = {.lex_state = 0}, + [3406] = {.lex_state = 0}, + [3407] = {.lex_state = 0}, + [3408] = {.lex_state = 0}, + [3409] = {.lex_state = 0}, + [3410] = {.lex_state = 0}, + [3411] = {.lex_state = 14}, + [3412] = {.lex_state = 0}, + [3413] = {.lex_state = 14}, + [3414] = {.lex_state = 0}, + [3415] = {.lex_state = 0}, + [3416] = {.lex_state = 0}, + [3417] = {.lex_state = 0}, + [3418] = {.lex_state = 0}, + [3419] = {.lex_state = 14}, + [3420] = {.lex_state = 0}, + [3421] = {.lex_state = 0}, + [3422] = {.lex_state = 14}, + [3423] = {.lex_state = 0}, + [3424] = {.lex_state = 0}, + [3425] = {.lex_state = 0}, + [3426] = {.lex_state = 0}, + [3427] = {.lex_state = 0}, + [3428] = {.lex_state = 0}, + [3429] = {.lex_state = 0}, + [3430] = {.lex_state = 14}, + [3431] = {.lex_state = 0}, + [3432] = {.lex_state = 0}, + [3433] = {.lex_state = 0}, + [3434] = {.lex_state = 14}, + [3435] = {.lex_state = 0}, + [3436] = {.lex_state = 0}, + [3437] = {.lex_state = 0}, + [3438] = {.lex_state = 0}, + [3439] = {.lex_state = 0}, + [3440] = {.lex_state = 14}, + [3441] = {.lex_state = 14}, + [3442] = {.lex_state = 0}, + [3443] = {.lex_state = 0}, + [3444] = {.lex_state = 14}, + [3445] = {.lex_state = 14}, + [3446] = {.lex_state = 0}, + [3447] = {.lex_state = 0}, + [3448] = {.lex_state = 14}, + [3449] = {.lex_state = 0}, + [3450] = {.lex_state = 0}, + [3451] = {.lex_state = 0}, + [3452] = {.lex_state = 0}, + [3453] = {.lex_state = 0}, + [3454] = {.lex_state = 0}, + [3455] = {.lex_state = 0}, + [3456] = {.lex_state = 0}, + [3457] = {.lex_state = 0}, + [3458] = {.lex_state = 0}, + [3459] = {.lex_state = 0}, + [3460] = {.lex_state = 14}, + [3461] = {.lex_state = 0}, + [3462] = {.lex_state = 0}, + [3463] = {.lex_state = 14}, + [3464] = {.lex_state = 14}, + [3465] = {.lex_state = 0}, + [3466] = {.lex_state = 0}, + [3467] = {.lex_state = 0}, + [3468] = {.lex_state = 14}, + [3469] = {.lex_state = 0}, + [3470] = {.lex_state = 14}, + [3471] = {.lex_state = 0}, + [3472] = {.lex_state = 14}, + [3473] = {.lex_state = 0}, + [3474] = {.lex_state = 0}, + [3475] = {.lex_state = 0}, + [3476] = {.lex_state = 14}, + [3477] = {.lex_state = 0}, + [3478] = {.lex_state = 14}, + [3479] = {.lex_state = 0}, + [3480] = {.lex_state = 0}, + [3481] = {.lex_state = 0}, + [3482] = {.lex_state = 14}, + [3483] = {.lex_state = 0}, + [3484] = {.lex_state = 14}, + [3485] = {.lex_state = 14}, + [3486] = {.lex_state = 0}, + [3487] = {.lex_state = 0}, + [3488] = {.lex_state = 0}, + [3489] = {.lex_state = 14}, + [3490] = {.lex_state = 0}, + [3491] = {.lex_state = 0}, + [3492] = {.lex_state = 0}, + [3493] = {.lex_state = 2}, + [3494] = {.lex_state = 14}, + [3495] = {.lex_state = 0}, + [3496] = {.lex_state = 14}, + [3497] = {.lex_state = 0}, + [3498] = {.lex_state = 0}, + [3499] = {.lex_state = 0}, + [3500] = {.lex_state = 0}, + [3501] = {.lex_state = 14}, + [3502] = {.lex_state = 0}, + [3503] = {.lex_state = 0}, + [3504] = {.lex_state = 0}, + [3505] = {.lex_state = 14}, + [3506] = {.lex_state = 0}, + [3507] = {.lex_state = 0}, + [3508] = {.lex_state = 0}, + [3509] = {.lex_state = 0}, + [3510] = {.lex_state = 14}, + [3511] = {.lex_state = 0}, + [3512] = {.lex_state = 0}, + [3513] = {.lex_state = 14}, + [3514] = {.lex_state = 0}, + [3515] = {.lex_state = 0}, + [3516] = {.lex_state = 0}, + [3517] = {.lex_state = 0}, + [3518] = {.lex_state = 0}, + [3519] = {.lex_state = 0}, + [3520] = {.lex_state = 0}, + [3521] = {.lex_state = 0}, + [3522] = {.lex_state = 0}, + [3523] = {.lex_state = 0}, + [3524] = {.lex_state = 14}, + [3525] = {.lex_state = 0}, + [3526] = {.lex_state = 0}, + [3527] = {.lex_state = 14}, + [3528] = {.lex_state = 0}, + [3529] = {.lex_state = 0}, + [3530] = {.lex_state = 14}, + [3531] = {.lex_state = 0}, + [3532] = {.lex_state = 14}, + [3533] = {.lex_state = 0}, + [3534] = {.lex_state = 0}, + [3535] = {.lex_state = 0}, + [3536] = {.lex_state = 0}, + [3537] = {.lex_state = 0}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 0}, + [3540] = {.lex_state = 14}, + [3541] = {.lex_state = 0}, + [3542] = {.lex_state = 0}, + [3543] = {.lex_state = 0}, + [3544] = {.lex_state = 0}, + [3545] = {.lex_state = 0}, + [3546] = {.lex_state = 0}, + [3547] = {.lex_state = 0}, + [3548] = {.lex_state = 14}, + [3549] = {.lex_state = 0}, + [3550] = {.lex_state = 0}, + [3551] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9907,6 +12546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_xor_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), @@ -9932,9 +12577,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_LT_LT_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_CARET] = ACTIONS(1), @@ -9953,16 +12603,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(2315), - [sym__top_level_declaration] = STATE(1586), - [sym_import_declaration] = STATE(1586), - [sym_test_import_declaration] = STATE(1586), - [sym_test_declaration] = STATE(1586), - [sym_function_declaration] = STATE(1586), - [sym_type_declaration] = STATE(1586), - [sym_global_constant_declaration] = STATE(1586), - [sym_global_variable_declaration] = STATE(1586), - [aux_sym_source_file_repeat1] = STATE(1586), + [sym_source_file] = STATE(3481), + [sym__top_level_declaration] = STATE(2495), + [sym_import_declaration] = STATE(2495), + [sym_test_import_declaration] = STATE(2495), + [sym_test_declaration] = STATE(2495), + [sym_function_declaration] = STATE(2495), + [sym_type_declaration] = STATE(2495), + [sym_global_constant_declaration] = STATE(2495), + [sym_global_variable_declaration] = STATE(2495), + [aux_sym_source_file_repeat1] = STATE(2495), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), @@ -9972,49 +12622,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(15), }, [STATE(2)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1605), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(51), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1605), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(52), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2528), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(329), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2528), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(91), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -10083,81 +12733,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [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_AMP] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(97), + [sym__newline] = ACTIONS(105), }, [STATE(3)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1604), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(55), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1604), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(17), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1714), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(308), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1714), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(109), [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_DASH] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -10191,13 +12846,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -10214,81 +12869,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(127), + [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_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(99), + [sym__newline] = ACTIONS(133), }, [STATE(4)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1293), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(92), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1293), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(93), - [sym_identifier] = ACTIONS(101), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1717), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(340), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1717), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(109), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -10322,13 +12982,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -10345,81 +13005,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(127), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(125), + [sym__newline] = ACTIONS(135), }, [STATE(5)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1297), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(96), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1297), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(101), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2674), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(110), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2674), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(139), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -10453,13 +13118,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -10476,77 +13141,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(155), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(127), + [sym__newline] = ACTIONS(161), }, [STATE(6)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1729), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(122), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1729), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(129), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2758), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(135), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2758), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(139), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), @@ -10584,13 +13254,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -10607,77 +13277,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(155), + [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_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(151), + [sym__newline] = ACTIONS(163), }, [STATE(7)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1733), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(126), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1733), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(129), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2520), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(112), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2520), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), + [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), @@ -10715,13 +13390,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [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), @@ -10738,81 +13413,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [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_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(153), + [sym__newline] = ACTIONS(165), }, [STATE(8)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1869), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(197), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1869), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(155), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2519), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(294), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2519), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(295), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), + [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(163), + [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -10846,13 +13526,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), + [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), @@ -10869,69 +13549,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [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_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(179), + [sym__newline] = ACTIONS(167), }, [STATE(9)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1607), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(152), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1607), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(49), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2526), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(299), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2526), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(300), [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -11000,81 +13685,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [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_AMP] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(181), + [sym__newline] = ACTIONS(169), }, [STATE(10)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1602), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(155), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1602), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(17), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1716), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(330), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1716), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(331), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(109), [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_DASH] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -11108,13 +13798,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11131,81 +13821,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(127), + [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_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(183), + [sym__newline] = ACTIONS(171), }, [STATE(11)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1287), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(181), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1287), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(182), - [sym_identifier] = ACTIONS(101), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1713), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(334), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1713), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(335), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(109), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -11239,13 +13934,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11262,81 +13957,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(127), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(185), + [sym__newline] = ACTIONS(173), }, [STATE(12)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1291), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(184), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1291), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(101), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2608), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(338), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2608), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(339), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(139), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(39), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -11370,13 +14070,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11393,77 +14093,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(155), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(187), + [sym__newline] = ACTIONS(175), }, [STATE(13)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1783), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(188), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1783), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(189), - [sym_identifier] = ACTIONS(129), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2614), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(342), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2614), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(343), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(139), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), @@ -11501,13 +14206,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11524,121 +14229,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(155), + [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_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(189), + [sym__newline] = ACTIONS(177), }, [STATE(14)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1787), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(191), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1787), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2938), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(349), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2938), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(350), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(39), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11655,121 +14365,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(207), + [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_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(211), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(191), + [sym__newline] = ACTIONS(223), }, [STATE(15)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1934), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(203), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1934), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2949), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(353), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2949), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11786,81 +14501,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(207), + [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_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(211), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(193), + [sym__newline] = ACTIONS(225), }, [STATE(16)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1860), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(194), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1860), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(155), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1733), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(450), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1733), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(451), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), + [anon_sym_BANG] = ACTIONS(109), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -11894,13 +14614,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -11917,81 +14637,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(241), + [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_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(195), + [sym__newline] = ACTIONS(245), }, [STATE(17)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1309), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(278), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1309), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(197), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1735), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(453), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1735), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(454), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), + [anon_sym_BANG] = ACTIONS(109), [anon_sym_struct] = ACTIONS(23), [anon_sym_LPAREN] = ACTIONS(25), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(115), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -12025,13 +14750,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [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_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -12048,121 +14773,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(241), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(93), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(213), + [sym__newline] = ACTIONS(247), }, [STATE(18)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1311), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(281), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1311), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(103), - [anon_sym_struct] = ACTIONS(23), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3029), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(362), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3029), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(363), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(185), [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_DOLLAR] = ACTIONS(107), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_QMARK] = ACTIONS(35), [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(109), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [anon_sym_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_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), @@ -12179,3677 +14909,3865 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(77), [anon_sym_GT] = ACTIONS(79), [anon_sym_GT_EQ] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(81), + [anon_sym_AMP] = ACTIONS(207), + [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_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(211), [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(215), - }, - [STATE(19)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1875), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_capture_list] = STATE(200), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1875), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_argument_list] = STATE(507), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(37), - [anon_sym_LBRACK] = ACTIONS(163), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [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_PLUS] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(37), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(217), - }, - [STATE(20)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(332), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(37), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), - }, - [STATE(21)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(231), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(231), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_mut] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_void] = ACTIONS(231), - [anon_sym_anyopaque] = ACTIONS(231), - [anon_sym_bool] = ACTIONS(231), - [anon_sym_int] = ACTIONS(231), - [anon_sym_uint] = ACTIONS(231), - [anon_sym_float] = ACTIONS(231), - [anon_sym_range] = ACTIONS(231), - [anon_sym_i8] = ACTIONS(231), - [anon_sym_i16] = ACTIONS(231), - [anon_sym_i32] = ACTIONS(231), - [anon_sym_i64] = ACTIONS(231), - [anon_sym_u8] = ACTIONS(231), - [anon_sym_u16] = ACTIONS(231), - [anon_sym_u32] = ACTIONS(231), - [anon_sym_u64] = ACTIONS(231), - [anon_sym_isize] = ACTIONS(231), - [anon_sym_usize] = ACTIONS(231), - [anon_sym_f32] = ACTIONS(231), - [anon_sym_f64] = ACTIONS(231), - [anon_sym_c_char] = ACTIONS(231), - [anon_sym_c_schar] = ACTIONS(231), - [anon_sym_c_uchar] = ACTIONS(231), - [anon_sym_c_short] = ACTIONS(231), - [anon_sym_c_ushort] = ACTIONS(231), - [anon_sym_c_int] = ACTIONS(231), - [anon_sym_c_uint] = ACTIONS(231), - [anon_sym_c_long] = ACTIONS(231), - [anon_sym_c_ulong] = ACTIONS(231), - [anon_sym_c_longlong] = ACTIONS(231), - [anon_sym_c_ulonglong] = ACTIONS(231), - [anon_sym_c_float] = ACTIONS(231), - [anon_sym_c_double] = ACTIONS(231), - [anon_sym_c_longdouble] = ACTIONS(231), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_break] = ACTIONS(231), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_defer] = ACTIONS(231), - [anon_sym_errdefer] = ACTIONS(231), - [anon_sym_if] = ACTIONS(231), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(231), - [anon_sym_expand] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_match] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(237), - [anon_sym_orelse] = ACTIONS(231), - [anon_sym_catch] = ACTIONS(231), - [anon_sym_or] = ACTIONS(231), - [anon_sym_and] = ACTIONS(231), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(231), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(231), - [anon_sym_SLASH] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_try] = ACTIONS(231), - [anon_sym_DOT] = ACTIONS(231), - [anon_sym_CARET] = ACTIONS(237), - [anon_sym_true] = ACTIONS(231), - [anon_sym_false] = ACTIONS(231), - [sym_none] = ACTIONS(231), - [sym_undefined] = ACTIONS(231), - [sym_sink] = ACTIONS(231), - [sym_integer] = ACTIONS(231), - [sym_float] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_multiline_string] = ACTIONS(237), - [sym_character] = ACTIONS(237), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), - }, - [STATE(22)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(243), - [sym_identifier] = ACTIONS(245), - [anon_sym_import] = ACTIONS(247), - [anon_sym_test] = ACTIONS(247), - [anon_sym_hide] = ACTIONS(247), - [anon_sym_func] = ACTIONS(245), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(245), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_void] = ACTIONS(245), - [anon_sym_anyopaque] = ACTIONS(245), - [anon_sym_bool] = ACTIONS(245), - [anon_sym_int] = ACTIONS(245), - [anon_sym_uint] = ACTIONS(245), - [anon_sym_float] = ACTIONS(245), - [anon_sym_range] = ACTIONS(245), - [anon_sym_i8] = ACTIONS(245), - [anon_sym_i16] = ACTIONS(245), - [anon_sym_i32] = ACTIONS(245), - [anon_sym_i64] = ACTIONS(245), - [anon_sym_u8] = ACTIONS(245), - [anon_sym_u16] = ACTIONS(245), - [anon_sym_u32] = ACTIONS(245), - [anon_sym_u64] = ACTIONS(245), - [anon_sym_isize] = ACTIONS(245), - [anon_sym_usize] = ACTIONS(245), - [anon_sym_f32] = ACTIONS(245), - [anon_sym_f64] = ACTIONS(245), - [anon_sym_c_char] = ACTIONS(245), - [anon_sym_c_schar] = ACTIONS(245), - [anon_sym_c_uchar] = ACTIONS(245), - [anon_sym_c_short] = ACTIONS(245), - [anon_sym_c_ushort] = ACTIONS(245), - [anon_sym_c_int] = ACTIONS(245), - [anon_sym_c_uint] = ACTIONS(245), - [anon_sym_c_long] = ACTIONS(245), - [anon_sym_c_ulong] = ACTIONS(245), - [anon_sym_c_longlong] = ACTIONS(245), - [anon_sym_c_ulonglong] = ACTIONS(245), - [anon_sym_c_float] = ACTIONS(245), - [anon_sym_c_double] = ACTIONS(245), - [anon_sym_c_longdouble] = ACTIONS(245), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_return] = ACTIONS(245), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_break] = ACTIONS(245), - [anon_sym_continue] = ACTIONS(245), - [anon_sym_defer] = ACTIONS(245), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_else] = ACTIONS(247), - [anon_sym_while] = ACTIONS(245), - [anon_sym_expand] = ACTIONS(245), - [anon_sym_for] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_DOT_DOT] = ACTIONS(245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(249), - [anon_sym_orelse] = ACTIONS(245), - [anon_sym_catch] = ACTIONS(245), - [anon_sym_or] = ACTIONS(245), - [anon_sym_and] = ACTIONS(245), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_SLASH] = ACTIONS(245), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_try] = ACTIONS(245), - [anon_sym_DOT] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(249), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_none] = ACTIONS(245), - [sym_undefined] = ACTIONS(245), - [sym_sink] = ACTIONS(245), - [sym_integer] = ACTIONS(245), - [sym_float] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_multiline_string] = ACTIONS(249), - [sym_character] = ACTIONS(249), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(249), }, - [STATE(23)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(347), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [STATE(19)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3034), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_capture_list] = STATE(366), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3034), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_argument_list] = STATE(686), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(183), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(193), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [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(207), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(255), + [sym__newline] = ACTIONS(251), + }, + [STATE(20)] = { + [sym_type] = STATE(253), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(260), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(270), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_void] = ACTIONS(278), + [anon_sym_anyopaque] = ACTIONS(278), + [anon_sym_bool] = ACTIONS(278), + [anon_sym_int] = ACTIONS(278), + [anon_sym_uint] = ACTIONS(278), + [anon_sym_float] = ACTIONS(278), + [anon_sym_range] = ACTIONS(278), + [anon_sym_i8] = ACTIONS(278), + [anon_sym_i16] = ACTIONS(278), + [anon_sym_i32] = ACTIONS(278), + [anon_sym_i64] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(278), + [anon_sym_u16] = ACTIONS(278), + [anon_sym_u32] = ACTIONS(278), + [anon_sym_u64] = ACTIONS(278), + [anon_sym_isize] = ACTIONS(278), + [anon_sym_usize] = ACTIONS(278), + [anon_sym_f32] = ACTIONS(278), + [anon_sym_f64] = ACTIONS(278), + [anon_sym_c_char] = ACTIONS(278), + [anon_sym_c_schar] = ACTIONS(278), + [anon_sym_c_uchar] = ACTIONS(278), + [anon_sym_c_short] = ACTIONS(278), + [anon_sym_c_ushort] = ACTIONS(278), + [anon_sym_c_int] = ACTIONS(278), + [anon_sym_c_uint] = ACTIONS(278), + [anon_sym_c_long] = ACTIONS(278), + [anon_sym_c_ulong] = ACTIONS(278), + [anon_sym_c_longlong] = ACTIONS(278), + [anon_sym_c_ulonglong] = ACTIONS(278), + [anon_sym_c_float] = ACTIONS(278), + [anon_sym_c_double] = ACTIONS(278), + [anon_sym_c_longdouble] = ACTIONS(278), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(21)] = { + [sym_type] = STATE(264), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(288), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_void] = ACTIONS(302), + [anon_sym_anyopaque] = ACTIONS(302), + [anon_sym_bool] = ACTIONS(302), + [anon_sym_int] = ACTIONS(302), + [anon_sym_uint] = ACTIONS(302), + [anon_sym_float] = ACTIONS(302), + [anon_sym_range] = ACTIONS(302), + [anon_sym_i8] = ACTIONS(302), + [anon_sym_i16] = ACTIONS(302), + [anon_sym_i32] = ACTIONS(302), + [anon_sym_i64] = ACTIONS(302), + [anon_sym_u8] = ACTIONS(302), + [anon_sym_u16] = ACTIONS(302), + [anon_sym_u32] = ACTIONS(302), + [anon_sym_u64] = ACTIONS(302), + [anon_sym_isize] = ACTIONS(302), + [anon_sym_usize] = ACTIONS(302), + [anon_sym_f32] = ACTIONS(302), + [anon_sym_f64] = ACTIONS(302), + [anon_sym_c_char] = ACTIONS(302), + [anon_sym_c_schar] = ACTIONS(302), + [anon_sym_c_uchar] = ACTIONS(302), + [anon_sym_c_short] = ACTIONS(302), + [anon_sym_c_ushort] = ACTIONS(302), + [anon_sym_c_int] = ACTIONS(302), + [anon_sym_c_uint] = ACTIONS(302), + [anon_sym_c_long] = ACTIONS(302), + [anon_sym_c_ulong] = ACTIONS(302), + [anon_sym_c_longlong] = ACTIONS(302), + [anon_sym_c_ulonglong] = ACTIONS(302), + [anon_sym_c_float] = ACTIONS(302), + [anon_sym_c_double] = ACTIONS(302), + [anon_sym_c_longdouble] = ACTIONS(302), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_return] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(286), + [anon_sym_break] = ACTIONS(286), + [anon_sym_continue] = ACTIONS(286), + [anon_sym_defer] = ACTIONS(286), + [anon_sym_errdefer] = ACTIONS(286), + [anon_sym_if] = ACTIONS(286), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_expand] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(286), + [anon_sym_LT_LT_PIPE] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_try] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [sym_none] = ACTIONS(286), + [sym_undefined] = ACTIONS(286), + [sym_sink] = ACTIONS(286), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(281), + [sym_multiline_string] = ACTIONS(281), + [sym_character] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(22)] = { + [sym_type] = STATE(246), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(307), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(312), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_mut] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_void] = ACTIONS(326), + [anon_sym_anyopaque] = ACTIONS(326), + [anon_sym_bool] = ACTIONS(326), + [anon_sym_int] = ACTIONS(326), + [anon_sym_uint] = ACTIONS(326), + [anon_sym_float] = ACTIONS(326), + [anon_sym_range] = ACTIONS(326), + [anon_sym_i8] = ACTIONS(326), + [anon_sym_i16] = ACTIONS(326), + [anon_sym_i32] = ACTIONS(326), + [anon_sym_i64] = ACTIONS(326), + [anon_sym_u8] = ACTIONS(326), + [anon_sym_u16] = ACTIONS(326), + [anon_sym_u32] = ACTIONS(326), + [anon_sym_u64] = ACTIONS(326), + [anon_sym_isize] = ACTIONS(326), + [anon_sym_usize] = ACTIONS(326), + [anon_sym_f32] = ACTIONS(326), + [anon_sym_f64] = ACTIONS(326), + [anon_sym_c_char] = ACTIONS(326), + [anon_sym_c_schar] = ACTIONS(326), + [anon_sym_c_uchar] = ACTIONS(326), + [anon_sym_c_short] = ACTIONS(326), + [anon_sym_c_ushort] = ACTIONS(326), + [anon_sym_c_int] = ACTIONS(326), + [anon_sym_c_uint] = ACTIONS(326), + [anon_sym_c_long] = ACTIONS(326), + [anon_sym_c_ulong] = ACTIONS(326), + [anon_sym_c_longlong] = ACTIONS(326), + [anon_sym_c_ulonglong] = ACTIONS(326), + [anon_sym_c_float] = ACTIONS(326), + [anon_sym_c_double] = ACTIONS(326), + [anon_sym_c_longdouble] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_defer] = ACTIONS(310), + [anon_sym_errdefer] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_expand] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_try] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [sym_none] = ACTIONS(310), + [sym_undefined] = ACTIONS(310), + [sym_sink] = ACTIONS(310), + [sym_integer] = ACTIONS(310), + [sym_float] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_multiline_string] = ACTIONS(305), + [sym_character] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(23)] = { + [sym_type] = STATE(247), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(307), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(312), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(310), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_mut] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_void] = ACTIONS(326), + [anon_sym_anyopaque] = ACTIONS(326), + [anon_sym_bool] = ACTIONS(326), + [anon_sym_int] = ACTIONS(326), + [anon_sym_uint] = ACTIONS(326), + [anon_sym_float] = ACTIONS(326), + [anon_sym_range] = ACTIONS(326), + [anon_sym_i8] = ACTIONS(326), + [anon_sym_i16] = ACTIONS(326), + [anon_sym_i32] = ACTIONS(326), + [anon_sym_i64] = ACTIONS(326), + [anon_sym_u8] = ACTIONS(326), + [anon_sym_u16] = ACTIONS(326), + [anon_sym_u32] = ACTIONS(326), + [anon_sym_u64] = ACTIONS(326), + [anon_sym_isize] = ACTIONS(326), + [anon_sym_usize] = ACTIONS(326), + [anon_sym_f32] = ACTIONS(326), + [anon_sym_f64] = ACTIONS(326), + [anon_sym_c_char] = ACTIONS(326), + [anon_sym_c_schar] = ACTIONS(326), + [anon_sym_c_uchar] = ACTIONS(326), + [anon_sym_c_short] = ACTIONS(326), + [anon_sym_c_ushort] = ACTIONS(326), + [anon_sym_c_int] = ACTIONS(326), + [anon_sym_c_uint] = ACTIONS(326), + [anon_sym_c_long] = ACTIONS(326), + [anon_sym_c_ulong] = ACTIONS(326), + [anon_sym_c_longlong] = ACTIONS(326), + [anon_sym_c_ulonglong] = ACTIONS(326), + [anon_sym_c_float] = ACTIONS(326), + [anon_sym_c_double] = ACTIONS(326), + [anon_sym_c_longdouble] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_defer] = ACTIONS(310), + [anon_sym_errdefer] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_expand] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_try] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [sym_none] = ACTIONS(310), + [sym_undefined] = ACTIONS(310), + [sym_sink] = ACTIONS(310), + [sym_integer] = ACTIONS(310), + [sym_float] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_multiline_string] = ACTIONS(305), + [sym_character] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), }, [STATE(24)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(375), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(255), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(260), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(270), + [anon_sym_mut] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_void] = ACTIONS(278), + [anon_sym_anyopaque] = ACTIONS(278), + [anon_sym_bool] = ACTIONS(278), + [anon_sym_int] = ACTIONS(278), + [anon_sym_uint] = ACTIONS(278), + [anon_sym_float] = ACTIONS(278), + [anon_sym_range] = ACTIONS(278), + [anon_sym_i8] = ACTIONS(278), + [anon_sym_i16] = ACTIONS(278), + [anon_sym_i32] = ACTIONS(278), + [anon_sym_i64] = ACTIONS(278), + [anon_sym_u8] = ACTIONS(278), + [anon_sym_u16] = ACTIONS(278), + [anon_sym_u32] = ACTIONS(278), + [anon_sym_u64] = ACTIONS(278), + [anon_sym_isize] = ACTIONS(278), + [anon_sym_usize] = ACTIONS(278), + [anon_sym_f32] = ACTIONS(278), + [anon_sym_f64] = ACTIONS(278), + [anon_sym_c_char] = ACTIONS(278), + [anon_sym_c_schar] = ACTIONS(278), + [anon_sym_c_uchar] = ACTIONS(278), + [anon_sym_c_short] = ACTIONS(278), + [anon_sym_c_ushort] = ACTIONS(278), + [anon_sym_c_int] = ACTIONS(278), + [anon_sym_c_uint] = ACTIONS(278), + [anon_sym_c_long] = ACTIONS(278), + [anon_sym_c_ulong] = ACTIONS(278), + [anon_sym_c_longlong] = ACTIONS(278), + [anon_sym_c_ulonglong] = ACTIONS(278), + [anon_sym_c_float] = ACTIONS(278), + [anon_sym_c_double] = ACTIONS(278), + [anon_sym_c_longdouble] = ACTIONS(278), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(271), + [sym__newline] = ACTIONS(253), }, [STATE(25)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(187), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(591), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(837), - [aux_sym_block_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(275), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(235), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), + [anon_sym_import] = ACTIONS(338), + [anon_sym_test] = ACTIONS(338), + [anon_sym_hide] = ACTIONS(338), + [anon_sym_func] = ACTIONS(340), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(346), + [anon_sym_mut] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_void] = ACTIONS(354), + [anon_sym_anyopaque] = ACTIONS(354), + [anon_sym_bool] = ACTIONS(354), + [anon_sym_int] = ACTIONS(354), + [anon_sym_uint] = ACTIONS(354), + [anon_sym_float] = ACTIONS(354), + [anon_sym_range] = ACTIONS(354), + [anon_sym_i8] = ACTIONS(354), + [anon_sym_i16] = ACTIONS(354), + [anon_sym_i32] = ACTIONS(354), + [anon_sym_i64] = ACTIONS(354), + [anon_sym_u8] = ACTIONS(354), + [anon_sym_u16] = ACTIONS(354), + [anon_sym_u32] = ACTIONS(354), + [anon_sym_u64] = ACTIONS(354), + [anon_sym_isize] = ACTIONS(354), + [anon_sym_usize] = ACTIONS(354), + [anon_sym_f32] = ACTIONS(354), + [anon_sym_f64] = ACTIONS(354), + [anon_sym_c_char] = ACTIONS(354), + [anon_sym_c_schar] = ACTIONS(354), + [anon_sym_c_uchar] = ACTIONS(354), + [anon_sym_c_short] = ACTIONS(354), + [anon_sym_c_ushort] = ACTIONS(354), + [anon_sym_c_int] = ACTIONS(354), + [anon_sym_c_uint] = ACTIONS(354), + [anon_sym_c_long] = ACTIONS(354), + [anon_sym_c_ulong] = ACTIONS(354), + [anon_sym_c_longlong] = ACTIONS(354), + [anon_sym_c_ulonglong] = ACTIONS(354), + [anon_sym_c_float] = ACTIONS(354), + [anon_sym_c_double] = ACTIONS(354), + [anon_sym_c_longdouble] = ACTIONS(354), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_xor_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), + [anon_sym_return] = ACTIONS(338), + [anon_sym_yield] = ACTIONS(338), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_defer] = ACTIONS(338), + [anon_sym_errdefer] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [anon_sym_expand] = ACTIONS(338), + [anon_sym_for] = ACTIONS(338), + [anon_sym_match] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(333), + [anon_sym_try] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_true] = ACTIONS(338), + [anon_sym_false] = ACTIONS(338), + [sym_none] = ACTIONS(338), + [sym_undefined] = ACTIONS(338), + [sym_sink] = ACTIONS(338), + [sym_integer] = ACTIONS(338), + [sym_float] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(333), + [sym_multiline_string] = ACTIONS(333), + [sym_character] = ACTIONS(333), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(293), + [sym__newline] = ACTIONS(333), }, [STATE(26)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(355), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(255), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(357), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(357), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(357), + [anon_sym_anyopaque] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_int] = ACTIONS(357), + [anon_sym_uint] = ACTIONS(357), + [anon_sym_float] = ACTIONS(357), + [anon_sym_range] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_c_char] = ACTIONS(357), + [anon_sym_c_schar] = ACTIONS(357), + [anon_sym_c_uchar] = ACTIONS(357), + [anon_sym_c_short] = ACTIONS(357), + [anon_sym_c_ushort] = ACTIONS(357), + [anon_sym_c_int] = ACTIONS(357), + [anon_sym_c_uint] = ACTIONS(357), + [anon_sym_c_long] = ACTIONS(357), + [anon_sym_c_ulong] = ACTIONS(357), + [anon_sym_c_longlong] = ACTIONS(357), + [anon_sym_c_ulonglong] = ACTIONS(357), + [anon_sym_c_float] = ACTIONS(357), + [anon_sym_c_double] = ACTIONS(357), + [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(357), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(357), + [anon_sym_errdefer] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(357), + [anon_sym_expand] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_orelse] = ACTIONS(357), + [anon_sym_catch] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_and] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_xor] = ACTIONS(357), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_LT_LT_PIPE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_try] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [sym_none] = ACTIONS(357), + [sym_undefined] = ACTIONS(357), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(357), + [sym_float] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_multiline_string] = ACTIONS(359), + [sym_character] = ACTIONS(359), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(359), }, [STATE(27)] = { - [sym_type] = STATE(398), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(299), - [anon_sym_import] = ACTIONS(302), - [anon_sym_test] = ACTIONS(302), - [anon_sym_hide] = ACTIONS(302), - [anon_sym_func] = ACTIONS(304), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(307), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(310), - [anon_sym_mut] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_void] = ACTIONS(318), - [anon_sym_anyopaque] = ACTIONS(318), - [anon_sym_bool] = ACTIONS(318), - [anon_sym_int] = ACTIONS(318), - [anon_sym_uint] = ACTIONS(318), - [anon_sym_float] = ACTIONS(318), - [anon_sym_range] = ACTIONS(318), - [anon_sym_i8] = ACTIONS(318), - [anon_sym_i16] = ACTIONS(318), - [anon_sym_i32] = ACTIONS(318), - [anon_sym_i64] = ACTIONS(318), - [anon_sym_u8] = ACTIONS(318), - [anon_sym_u16] = ACTIONS(318), - [anon_sym_u32] = ACTIONS(318), - [anon_sym_u64] = ACTIONS(318), - [anon_sym_isize] = ACTIONS(318), - [anon_sym_usize] = ACTIONS(318), - [anon_sym_f32] = ACTIONS(318), - [anon_sym_f64] = ACTIONS(318), - [anon_sym_c_char] = ACTIONS(318), - [anon_sym_c_schar] = ACTIONS(318), - [anon_sym_c_uchar] = ACTIONS(318), - [anon_sym_c_short] = ACTIONS(318), - [anon_sym_c_ushort] = ACTIONS(318), - [anon_sym_c_int] = ACTIONS(318), - [anon_sym_c_uint] = ACTIONS(318), - [anon_sym_c_long] = ACTIONS(318), - [anon_sym_c_ulong] = ACTIONS(318), - [anon_sym_c_longlong] = ACTIONS(318), - [anon_sym_c_ulonglong] = ACTIONS(318), - [anon_sym_c_float] = ACTIONS(318), - [anon_sym_c_double] = ACTIONS(318), - [anon_sym_c_longdouble] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_defer] = ACTIONS(302), - [anon_sym_errdefer] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_expand] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_match] = ACTIONS(302), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(297), - [anon_sym_orelse] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(302), - [anon_sym_or] = ACTIONS(302), - [anon_sym_and] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_try] = ACTIONS(302), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [sym_none] = ACTIONS(302), - [sym_undefined] = ACTIONS(302), - [sym_sink] = ACTIONS(302), - [sym_integer] = ACTIONS(302), - [sym_float] = ACTIONS(297), - [anon_sym_DQUOTE] = ACTIONS(297), - [sym_multiline_string] = ACTIONS(297), - [sym_character] = ACTIONS(297), + [sym_type] = STATE(253), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(361), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(361), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_void] = ACTIONS(361), + [anon_sym_anyopaque] = ACTIONS(361), + [anon_sym_bool] = ACTIONS(361), + [anon_sym_int] = ACTIONS(361), + [anon_sym_uint] = ACTIONS(361), + [anon_sym_float] = ACTIONS(361), + [anon_sym_range] = ACTIONS(361), + [anon_sym_i8] = ACTIONS(361), + [anon_sym_i16] = ACTIONS(361), + [anon_sym_i32] = ACTIONS(361), + [anon_sym_i64] = ACTIONS(361), + [anon_sym_u8] = ACTIONS(361), + [anon_sym_u16] = ACTIONS(361), + [anon_sym_u32] = ACTIONS(361), + [anon_sym_u64] = ACTIONS(361), + [anon_sym_isize] = ACTIONS(361), + [anon_sym_usize] = ACTIONS(361), + [anon_sym_f32] = ACTIONS(361), + [anon_sym_f64] = ACTIONS(361), + [anon_sym_c_char] = ACTIONS(361), + [anon_sym_c_schar] = ACTIONS(361), + [anon_sym_c_uchar] = ACTIONS(361), + [anon_sym_c_short] = ACTIONS(361), + [anon_sym_c_ushort] = ACTIONS(361), + [anon_sym_c_int] = ACTIONS(361), + [anon_sym_c_uint] = ACTIONS(361), + [anon_sym_c_long] = ACTIONS(361), + [anon_sym_c_ulong] = ACTIONS(361), + [anon_sym_c_longlong] = ACTIONS(361), + [anon_sym_c_ulonglong] = ACTIONS(361), + [anon_sym_c_float] = ACTIONS(361), + [anon_sym_c_double] = ACTIONS(361), + [anon_sym_c_longdouble] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(361), + [anon_sym_yield] = ACTIONS(361), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(361), + [anon_sym_errdefer] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(361), + [anon_sym_expand] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_orelse] = ACTIONS(361), + [anon_sym_catch] = ACTIONS(361), + [anon_sym_or] = ACTIONS(361), + [anon_sym_and] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_xor] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_LT_LT_PIPE] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_try] = ACTIONS(361), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym_true] = ACTIONS(361), + [anon_sym_false] = ACTIONS(361), + [sym_none] = ACTIONS(361), + [sym_undefined] = ACTIONS(361), + [sym_sink] = ACTIONS(361), + [sym_integer] = ACTIONS(361), + [sym_float] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_multiline_string] = ACTIONS(363), + [sym_character] = ACTIONS(363), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(297), + [sym__newline] = ACTIONS(363), }, [STATE(28)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(334), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(264), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(365), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(365), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_void] = ACTIONS(365), + [anon_sym_anyopaque] = ACTIONS(365), + [anon_sym_bool] = ACTIONS(365), + [anon_sym_int] = ACTIONS(365), + [anon_sym_uint] = ACTIONS(365), + [anon_sym_float] = ACTIONS(365), + [anon_sym_range] = ACTIONS(365), + [anon_sym_i8] = ACTIONS(365), + [anon_sym_i16] = ACTIONS(365), + [anon_sym_i32] = ACTIONS(365), + [anon_sym_i64] = ACTIONS(365), + [anon_sym_u8] = ACTIONS(365), + [anon_sym_u16] = ACTIONS(365), + [anon_sym_u32] = ACTIONS(365), + [anon_sym_u64] = ACTIONS(365), + [anon_sym_isize] = ACTIONS(365), + [anon_sym_usize] = ACTIONS(365), + [anon_sym_f32] = ACTIONS(365), + [anon_sym_f64] = ACTIONS(365), + [anon_sym_c_char] = ACTIONS(365), + [anon_sym_c_schar] = ACTIONS(365), + [anon_sym_c_uchar] = ACTIONS(365), + [anon_sym_c_short] = ACTIONS(365), + [anon_sym_c_ushort] = ACTIONS(365), + [anon_sym_c_int] = ACTIONS(365), + [anon_sym_c_uint] = ACTIONS(365), + [anon_sym_c_long] = ACTIONS(365), + [anon_sym_c_ulong] = ACTIONS(365), + [anon_sym_c_longlong] = ACTIONS(365), + [anon_sym_c_ulonglong] = ACTIONS(365), + [anon_sym_c_float] = ACTIONS(365), + [anon_sym_c_double] = ACTIONS(365), + [anon_sym_c_longdouble] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_return] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_defer] = ACTIONS(365), + [anon_sym_errdefer] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(365), + [anon_sym_expand] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(367), + [anon_sym_orelse] = ACTIONS(365), + [anon_sym_catch] = ACTIONS(365), + [anon_sym_or] = ACTIONS(365), + [anon_sym_and] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(367), + [anon_sym_BANG_EQ] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_EQ] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_GT_EQ] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_xor] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_LT_LT_PIPE] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_try] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [sym_none] = ACTIONS(365), + [sym_undefined] = ACTIONS(365), + [sym_sink] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_multiline_string] = ACTIONS(367), + [sym_character] = ACTIONS(367), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(367), }, [STATE(29)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [anon_sym_import] = ACTIONS(326), - [anon_sym_test] = ACTIONS(326), - [anon_sym_hide] = ACTIONS(326), - [anon_sym_func] = ACTIONS(328), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(342), - [anon_sym_anyopaque] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_int] = ACTIONS(342), - [anon_sym_uint] = ACTIONS(342), - [anon_sym_float] = ACTIONS(342), - [anon_sym_range] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_c_char] = ACTIONS(342), - [anon_sym_c_schar] = ACTIONS(342), - [anon_sym_c_uchar] = ACTIONS(342), - [anon_sym_c_short] = ACTIONS(342), - [anon_sym_c_ushort] = ACTIONS(342), - [anon_sym_c_int] = ACTIONS(342), - [anon_sym_c_uint] = ACTIONS(342), - [anon_sym_c_long] = ACTIONS(342), - [anon_sym_c_ulong] = ACTIONS(342), - [anon_sym_c_longlong] = ACTIONS(342), - [anon_sym_c_ulonglong] = ACTIONS(342), - [anon_sym_c_float] = ACTIONS(342), - [anon_sym_c_double] = ACTIONS(342), - [anon_sym_c_longdouble] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_return] = ACTIONS(326), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_defer] = ACTIONS(326), - [anon_sym_errdefer] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_else] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_expand] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_match] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_try] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_true] = ACTIONS(326), - [anon_sym_false] = ACTIONS(326), - [sym_none] = ACTIONS(326), - [sym_undefined] = ACTIONS(326), - [sym_sink] = ACTIONS(326), - [sym_integer] = ACTIONS(326), - [sym_float] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(321), - [sym_multiline_string] = ACTIONS(321), - [sym_character] = ACTIONS(321), + [sym_type] = STATE(247), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(369), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_mut] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_void] = ACTIONS(369), + [anon_sym_anyopaque] = ACTIONS(369), + [anon_sym_bool] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_uint] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_range] = ACTIONS(369), + [anon_sym_i8] = ACTIONS(369), + [anon_sym_i16] = ACTIONS(369), + [anon_sym_i32] = ACTIONS(369), + [anon_sym_i64] = ACTIONS(369), + [anon_sym_u8] = ACTIONS(369), + [anon_sym_u16] = ACTIONS(369), + [anon_sym_u32] = ACTIONS(369), + [anon_sym_u64] = ACTIONS(369), + [anon_sym_isize] = ACTIONS(369), + [anon_sym_usize] = ACTIONS(369), + [anon_sym_f32] = ACTIONS(369), + [anon_sym_f64] = ACTIONS(369), + [anon_sym_c_char] = ACTIONS(369), + [anon_sym_c_schar] = ACTIONS(369), + [anon_sym_c_uchar] = ACTIONS(369), + [anon_sym_c_short] = ACTIONS(369), + [anon_sym_c_ushort] = ACTIONS(369), + [anon_sym_c_int] = ACTIONS(369), + [anon_sym_c_uint] = ACTIONS(369), + [anon_sym_c_long] = ACTIONS(369), + [anon_sym_c_ulong] = ACTIONS(369), + [anon_sym_c_longlong] = ACTIONS(369), + [anon_sym_c_ulonglong] = ACTIONS(369), + [anon_sym_c_float] = ACTIONS(369), + [anon_sym_c_double] = ACTIONS(369), + [anon_sym_c_longdouble] = ACTIONS(369), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_defer] = ACTIONS(369), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(369), + [anon_sym_expand] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_match] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_orelse] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(369), + [anon_sym_or] = ACTIONS(369), + [anon_sym_and] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_xor] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT_PIPE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_try] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_true] = ACTIONS(369), + [anon_sym_false] = ACTIONS(369), + [sym_none] = ACTIONS(369), + [sym_undefined] = ACTIONS(369), + [sym_sink] = ACTIONS(369), + [sym_integer] = ACTIONS(369), + [sym_float] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_multiline_string] = ACTIONS(371), + [sym_character] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(371), }, [STATE(30)] = { - [sym_type] = STATE(436), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [anon_sym_import] = ACTIONS(326), - [anon_sym_test] = ACTIONS(326), - [anon_sym_hide] = ACTIONS(326), - [anon_sym_func] = ACTIONS(328), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(342), - [anon_sym_anyopaque] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_int] = ACTIONS(342), - [anon_sym_uint] = ACTIONS(342), - [anon_sym_float] = ACTIONS(342), - [anon_sym_range] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_c_char] = ACTIONS(342), - [anon_sym_c_schar] = ACTIONS(342), - [anon_sym_c_uchar] = ACTIONS(342), - [anon_sym_c_short] = ACTIONS(342), - [anon_sym_c_ushort] = ACTIONS(342), - [anon_sym_c_int] = ACTIONS(342), - [anon_sym_c_uint] = ACTIONS(342), - [anon_sym_c_long] = ACTIONS(342), - [anon_sym_c_ulong] = ACTIONS(342), - [anon_sym_c_longlong] = ACTIONS(342), - [anon_sym_c_ulonglong] = ACTIONS(342), - [anon_sym_c_float] = ACTIONS(342), - [anon_sym_c_double] = ACTIONS(342), - [anon_sym_c_longdouble] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_return] = ACTIONS(326), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_defer] = ACTIONS(326), - [anon_sym_errdefer] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_else] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_expand] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_match] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_try] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_true] = ACTIONS(326), - [anon_sym_false] = ACTIONS(326), - [sym_none] = ACTIONS(326), - [sym_undefined] = ACTIONS(326), - [sym_sink] = ACTIONS(326), - [sym_integer] = ACTIONS(326), - [sym_float] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(321), - [sym_multiline_string] = ACTIONS(321), - [sym_character] = ACTIONS(321), + [sym_type] = STATE(3339), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(376), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(390), }, [STATE(31)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(335), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(28), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(3385), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(411), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(347), + [sym__newline] = ACTIONS(390), }, [STATE(32)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(349), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(352), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(366), - [anon_sym_anyopaque] = ACTIONS(366), - [anon_sym_bool] = ACTIONS(366), - [anon_sym_int] = ACTIONS(366), - [anon_sym_uint] = ACTIONS(366), - [anon_sym_float] = ACTIONS(366), - [anon_sym_range] = ACTIONS(366), - [anon_sym_i8] = ACTIONS(366), - [anon_sym_i16] = ACTIONS(366), - [anon_sym_i32] = ACTIONS(366), - [anon_sym_i64] = ACTIONS(366), - [anon_sym_u8] = ACTIONS(366), - [anon_sym_u16] = ACTIONS(366), - [anon_sym_u32] = ACTIONS(366), - [anon_sym_u64] = ACTIONS(366), - [anon_sym_isize] = ACTIONS(366), - [anon_sym_usize] = ACTIONS(366), - [anon_sym_f32] = ACTIONS(366), - [anon_sym_f64] = ACTIONS(366), - [anon_sym_c_char] = ACTIONS(366), - [anon_sym_c_schar] = ACTIONS(366), - [anon_sym_c_uchar] = ACTIONS(366), - [anon_sym_c_short] = ACTIONS(366), - [anon_sym_c_ushort] = ACTIONS(366), - [anon_sym_c_int] = ACTIONS(366), - [anon_sym_c_uint] = ACTIONS(366), - [anon_sym_c_long] = ACTIONS(366), - [anon_sym_c_ulong] = ACTIONS(366), - [anon_sym_c_longlong] = ACTIONS(366), - [anon_sym_c_ulonglong] = ACTIONS(366), - [anon_sym_c_float] = ACTIONS(366), - [anon_sym_c_double] = ACTIONS(366), - [anon_sym_c_longdouble] = ACTIONS(366), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_defer] = ACTIONS(233), - [anon_sym_errdefer] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_expand] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_match] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_try] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_true] = ACTIONS(233), - [anon_sym_false] = ACTIONS(233), - [sym_none] = ACTIONS(233), - [sym_undefined] = ACTIONS(233), - [sym_sink] = ACTIONS(233), - [sym_integer] = ACTIONS(233), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_type] = STATE(2080), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(357), + [anon_sym_func] = ACTIONS(357), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(357), + [anon_sym_anyopaque] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_int] = ACTIONS(357), + [anon_sym_uint] = ACTIONS(357), + [anon_sym_float] = ACTIONS(357), + [anon_sym_range] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_c_char] = ACTIONS(357), + [anon_sym_c_schar] = ACTIONS(357), + [anon_sym_c_uchar] = ACTIONS(357), + [anon_sym_c_short] = ACTIONS(357), + [anon_sym_c_ushort] = ACTIONS(357), + [anon_sym_c_int] = ACTIONS(357), + [anon_sym_c_uint] = ACTIONS(357), + [anon_sym_c_long] = ACTIONS(357), + [anon_sym_c_ulong] = ACTIONS(357), + [anon_sym_c_longlong] = ACTIONS(357), + [anon_sym_c_ulonglong] = ACTIONS(357), + [anon_sym_c_float] = ACTIONS(357), + [anon_sym_c_double] = ACTIONS(357), + [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(357), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(357), + [anon_sym_errdefer] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(357), + [anon_sym_expand] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_orelse] = ACTIONS(357), + [anon_sym_catch] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_and] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_xor] = ACTIONS(357), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_LT_LT_PIPE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_try] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [sym_none] = ACTIONS(357), + [sym_undefined] = ACTIONS(357), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(357), + [sym_float] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_multiline_string] = ACTIONS(359), + [sym_character] = ACTIONS(359), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(359), }, [STATE(33)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(349), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(352), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(369), + [sym_type] = STATE(2076), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(361), + [anon_sym_func] = ACTIONS(361), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_mut] = ACTIONS(419), [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(366), - [anon_sym_anyopaque] = ACTIONS(366), - [anon_sym_bool] = ACTIONS(366), - [anon_sym_int] = ACTIONS(366), - [anon_sym_uint] = ACTIONS(366), - [anon_sym_float] = ACTIONS(366), - [anon_sym_range] = ACTIONS(366), - [anon_sym_i8] = ACTIONS(366), - [anon_sym_i16] = ACTIONS(366), - [anon_sym_i32] = ACTIONS(366), - [anon_sym_i64] = ACTIONS(366), - [anon_sym_u8] = ACTIONS(366), - [anon_sym_u16] = ACTIONS(366), - [anon_sym_u32] = ACTIONS(366), - [anon_sym_u64] = ACTIONS(366), - [anon_sym_isize] = ACTIONS(366), - [anon_sym_usize] = ACTIONS(366), - [anon_sym_f32] = ACTIONS(366), - [anon_sym_f64] = ACTIONS(366), - [anon_sym_c_char] = ACTIONS(366), - [anon_sym_c_schar] = ACTIONS(366), - [anon_sym_c_uchar] = ACTIONS(366), - [anon_sym_c_short] = ACTIONS(366), - [anon_sym_c_ushort] = ACTIONS(366), - [anon_sym_c_int] = ACTIONS(366), - [anon_sym_c_uint] = ACTIONS(366), - [anon_sym_c_long] = ACTIONS(366), - [anon_sym_c_ulong] = ACTIONS(366), - [anon_sym_c_longlong] = ACTIONS(366), - [anon_sym_c_ulonglong] = ACTIONS(366), - [anon_sym_c_float] = ACTIONS(366), - [anon_sym_c_double] = ACTIONS(366), - [anon_sym_c_longdouble] = ACTIONS(366), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_defer] = ACTIONS(233), - [anon_sym_errdefer] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_expand] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_match] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_try] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_true] = ACTIONS(233), - [anon_sym_false] = ACTIONS(233), - [sym_none] = ACTIONS(233), - [sym_undefined] = ACTIONS(233), - [sym_sink] = ACTIONS(233), - [sym_integer] = ACTIONS(233), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [anon_sym_void] = ACTIONS(361), + [anon_sym_anyopaque] = ACTIONS(361), + [anon_sym_bool] = ACTIONS(361), + [anon_sym_int] = ACTIONS(361), + [anon_sym_uint] = ACTIONS(361), + [anon_sym_float] = ACTIONS(361), + [anon_sym_range] = ACTIONS(361), + [anon_sym_i8] = ACTIONS(361), + [anon_sym_i16] = ACTIONS(361), + [anon_sym_i32] = ACTIONS(361), + [anon_sym_i64] = ACTIONS(361), + [anon_sym_u8] = ACTIONS(361), + [anon_sym_u16] = ACTIONS(361), + [anon_sym_u32] = ACTIONS(361), + [anon_sym_u64] = ACTIONS(361), + [anon_sym_isize] = ACTIONS(361), + [anon_sym_usize] = ACTIONS(361), + [anon_sym_f32] = ACTIONS(361), + [anon_sym_f64] = ACTIONS(361), + [anon_sym_c_char] = ACTIONS(361), + [anon_sym_c_schar] = ACTIONS(361), + [anon_sym_c_uchar] = ACTIONS(361), + [anon_sym_c_short] = ACTIONS(361), + [anon_sym_c_ushort] = ACTIONS(361), + [anon_sym_c_int] = ACTIONS(361), + [anon_sym_c_uint] = ACTIONS(361), + [anon_sym_c_long] = ACTIONS(361), + [anon_sym_c_ulong] = ACTIONS(361), + [anon_sym_c_longlong] = ACTIONS(361), + [anon_sym_c_ulonglong] = ACTIONS(361), + [anon_sym_c_float] = ACTIONS(361), + [anon_sym_c_double] = ACTIONS(361), + [anon_sym_c_longdouble] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(361), + [anon_sym_yield] = ACTIONS(361), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(361), + [anon_sym_errdefer] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(361), + [anon_sym_expand] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_orelse] = ACTIONS(361), + [anon_sym_catch] = ACTIONS(361), + [anon_sym_or] = ACTIONS(361), + [anon_sym_and] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_xor] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_LT_LT_PIPE] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_try] = ACTIONS(361), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym_true] = ACTIONS(361), + [anon_sym_false] = ACTIONS(361), + [sym_none] = ACTIONS(361), + [sym_undefined] = ACTIONS(361), + [sym_sink] = ACTIONS(361), + [sym_integer] = ACTIONS(361), + [sym_float] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_multiline_string] = ACTIONS(363), + [sym_character] = ACTIONS(363), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(363), }, [STATE(34)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(243), - [sym_identifier] = ACTIONS(371), - [anon_sym_import] = ACTIONS(247), - [anon_sym_test] = ACTIONS(247), - [anon_sym_hide] = ACTIONS(247), - [anon_sym_func] = ACTIONS(374), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(243), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_mut] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_void] = ACTIONS(388), - [anon_sym_anyopaque] = ACTIONS(388), - [anon_sym_bool] = ACTIONS(388), - [anon_sym_int] = ACTIONS(388), - [anon_sym_uint] = ACTIONS(388), - [anon_sym_float] = ACTIONS(388), - [anon_sym_range] = ACTIONS(388), - [anon_sym_i8] = ACTIONS(388), - [anon_sym_i16] = ACTIONS(388), - [anon_sym_i32] = ACTIONS(388), - [anon_sym_i64] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(388), - [anon_sym_u16] = ACTIONS(388), - [anon_sym_u32] = ACTIONS(388), - [anon_sym_u64] = ACTIONS(388), - [anon_sym_isize] = ACTIONS(388), - [anon_sym_usize] = ACTIONS(388), - [anon_sym_f32] = ACTIONS(388), - [anon_sym_f64] = ACTIONS(388), - [anon_sym_c_char] = ACTIONS(388), - [anon_sym_c_schar] = ACTIONS(388), - [anon_sym_c_uchar] = ACTIONS(388), - [anon_sym_c_short] = ACTIONS(388), - [anon_sym_c_ushort] = ACTIONS(388), - [anon_sym_c_int] = ACTIONS(388), - [anon_sym_c_uint] = ACTIONS(388), - [anon_sym_c_long] = ACTIONS(388), - [anon_sym_c_ulong] = ACTIONS(388), - [anon_sym_c_longlong] = ACTIONS(388), - [anon_sym_c_ulonglong] = ACTIONS(388), - [anon_sym_c_float] = ACTIONS(388), - [anon_sym_c_double] = ACTIONS(388), - [anon_sym_c_longdouble] = ACTIONS(388), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_return] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(247), - [anon_sym_break] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(247), - [anon_sym_defer] = ACTIONS(247), - [anon_sym_errdefer] = ACTIONS(247), - [anon_sym_if] = ACTIONS(247), - [anon_sym_else] = ACTIONS(247), - [anon_sym_while] = ACTIONS(247), - [anon_sym_expand] = ACTIONS(247), - [anon_sym_for] = ACTIONS(247), - [anon_sym_match] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_try] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [sym_none] = ACTIONS(247), - [sym_undefined] = ACTIONS(247), - [sym_sink] = ACTIONS(247), - [sym_integer] = ACTIONS(247), - [sym_float] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(243), - [sym_multiline_string] = ACTIONS(243), - [sym_character] = ACTIONS(243), + [sym_type] = STATE(2106), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(369), + [anon_sym_func] = ACTIONS(369), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_mut] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_void] = ACTIONS(369), + [anon_sym_anyopaque] = ACTIONS(369), + [anon_sym_bool] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_uint] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_range] = ACTIONS(369), + [anon_sym_i8] = ACTIONS(369), + [anon_sym_i16] = ACTIONS(369), + [anon_sym_i32] = ACTIONS(369), + [anon_sym_i64] = ACTIONS(369), + [anon_sym_u8] = ACTIONS(369), + [anon_sym_u16] = ACTIONS(369), + [anon_sym_u32] = ACTIONS(369), + [anon_sym_u64] = ACTIONS(369), + [anon_sym_isize] = ACTIONS(369), + [anon_sym_usize] = ACTIONS(369), + [anon_sym_f32] = ACTIONS(369), + [anon_sym_f64] = ACTIONS(369), + [anon_sym_c_char] = ACTIONS(369), + [anon_sym_c_schar] = ACTIONS(369), + [anon_sym_c_uchar] = ACTIONS(369), + [anon_sym_c_short] = ACTIONS(369), + [anon_sym_c_ushort] = ACTIONS(369), + [anon_sym_c_int] = ACTIONS(369), + [anon_sym_c_uint] = ACTIONS(369), + [anon_sym_c_long] = ACTIONS(369), + [anon_sym_c_ulong] = ACTIONS(369), + [anon_sym_c_longlong] = ACTIONS(369), + [anon_sym_c_ulonglong] = ACTIONS(369), + [anon_sym_c_float] = ACTIONS(369), + [anon_sym_c_double] = ACTIONS(369), + [anon_sym_c_longdouble] = ACTIONS(369), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_defer] = ACTIONS(369), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(369), + [anon_sym_expand] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_match] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_orelse] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(369), + [anon_sym_or] = ACTIONS(369), + [anon_sym_and] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_xor] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT_PIPE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_try] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_true] = ACTIONS(369), + [anon_sym_false] = ACTIONS(369), + [sym_none] = ACTIONS(369), + [sym_undefined] = ACTIONS(369), + [sym_sink] = ACTIONS(369), + [sym_integer] = ACTIONS(369), + [sym_float] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_multiline_string] = ACTIONS(371), + [sym_character] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), + [sym__newline] = ACTIONS(371), }, [STATE(35)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(366), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(2100), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(365), + [anon_sym_func] = ACTIONS(365), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_void] = ACTIONS(365), + [anon_sym_anyopaque] = ACTIONS(365), + [anon_sym_bool] = ACTIONS(365), + [anon_sym_int] = ACTIONS(365), + [anon_sym_uint] = ACTIONS(365), + [anon_sym_float] = ACTIONS(365), + [anon_sym_range] = ACTIONS(365), + [anon_sym_i8] = ACTIONS(365), + [anon_sym_i16] = ACTIONS(365), + [anon_sym_i32] = ACTIONS(365), + [anon_sym_i64] = ACTIONS(365), + [anon_sym_u8] = ACTIONS(365), + [anon_sym_u16] = ACTIONS(365), + [anon_sym_u32] = ACTIONS(365), + [anon_sym_u64] = ACTIONS(365), + [anon_sym_isize] = ACTIONS(365), + [anon_sym_usize] = ACTIONS(365), + [anon_sym_f32] = ACTIONS(365), + [anon_sym_f64] = ACTIONS(365), + [anon_sym_c_char] = ACTIONS(365), + [anon_sym_c_schar] = ACTIONS(365), + [anon_sym_c_uchar] = ACTIONS(365), + [anon_sym_c_short] = ACTIONS(365), + [anon_sym_c_ushort] = ACTIONS(365), + [anon_sym_c_int] = ACTIONS(365), + [anon_sym_c_uint] = ACTIONS(365), + [anon_sym_c_long] = ACTIONS(365), + [anon_sym_c_ulong] = ACTIONS(365), + [anon_sym_c_longlong] = ACTIONS(365), + [anon_sym_c_ulonglong] = ACTIONS(365), + [anon_sym_c_float] = ACTIONS(365), + [anon_sym_c_double] = ACTIONS(365), + [anon_sym_c_longdouble] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_return] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_defer] = ACTIONS(365), + [anon_sym_errdefer] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(365), + [anon_sym_expand] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(367), + [anon_sym_orelse] = ACTIONS(365), + [anon_sym_catch] = ACTIONS(365), + [anon_sym_or] = ACTIONS(365), + [anon_sym_and] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(367), + [anon_sym_BANG_EQ] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_EQ] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_GT_EQ] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_xor] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_LT_LT_PIPE] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_try] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [sym_none] = ACTIONS(365), + [sym_undefined] = ACTIONS(365), + [sym_sink] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_multiline_string] = ACTIONS(367), + [sym_character] = ACTIONS(367), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(367), }, [STATE(36)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(391), - [anon_sym_import] = ACTIONS(326), - [anon_sym_test] = ACTIONS(326), - [anon_sym_hide] = ACTIONS(326), - [anon_sym_func] = ACTIONS(391), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_mut] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_void] = ACTIONS(391), - [anon_sym_anyopaque] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_int] = ACTIONS(391), - [anon_sym_uint] = ACTIONS(391), - [anon_sym_float] = ACTIONS(391), - [anon_sym_range] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_c_char] = ACTIONS(391), - [anon_sym_c_schar] = ACTIONS(391), - [anon_sym_c_uchar] = ACTIONS(391), - [anon_sym_c_short] = ACTIONS(391), - [anon_sym_c_ushort] = ACTIONS(391), - [anon_sym_c_int] = ACTIONS(391), - [anon_sym_c_uint] = ACTIONS(391), - [anon_sym_c_long] = ACTIONS(391), - [anon_sym_c_ulong] = ACTIONS(391), - [anon_sym_c_longlong] = ACTIONS(391), - [anon_sym_c_ulonglong] = ACTIONS(391), - [anon_sym_c_float] = ACTIONS(391), - [anon_sym_c_double] = ACTIONS(391), - [anon_sym_c_longdouble] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_return] = ACTIONS(391), - [anon_sym_yield] = ACTIONS(391), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_defer] = ACTIONS(391), - [anon_sym_errdefer] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_else] = ACTIONS(326), - [anon_sym_while] = ACTIONS(391), - [anon_sym_expand] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_orelse] = ACTIONS(391), - [anon_sym_catch] = ACTIONS(391), - [anon_sym_or] = ACTIONS(391), - [anon_sym_and] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_try] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_none] = ACTIONS(391), - [sym_undefined] = ACTIONS(391), - [sym_sink] = ACTIONS(391), - [sym_integer] = ACTIONS(391), - [sym_float] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [sym_multiline_string] = ACTIONS(393), - [sym_character] = ACTIONS(393), + [sym_type] = STATE(3385), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(411), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(393), + [sym__newline] = ACTIONS(390), }, [STATE(37)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(382), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(3339), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(376), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(390), }, [STATE(38)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(397), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(397), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_mut] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_void] = ACTIONS(397), - [anon_sym_anyopaque] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_int] = ACTIONS(397), - [anon_sym_uint] = ACTIONS(397), - [anon_sym_float] = ACTIONS(397), - [anon_sym_range] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_c_char] = ACTIONS(397), - [anon_sym_c_schar] = ACTIONS(397), - [anon_sym_c_uchar] = ACTIONS(397), - [anon_sym_c_short] = ACTIONS(397), - [anon_sym_c_ushort] = ACTIONS(397), - [anon_sym_c_int] = ACTIONS(397), - [anon_sym_c_uint] = ACTIONS(397), - [anon_sym_c_long] = ACTIONS(397), - [anon_sym_c_ulong] = ACTIONS(397), - [anon_sym_c_longlong] = ACTIONS(397), - [anon_sym_c_ulonglong] = ACTIONS(397), - [anon_sym_c_float] = ACTIONS(397), - [anon_sym_c_double] = ACTIONS(397), - [anon_sym_c_longdouble] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(397), - [anon_sym_yield] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_defer] = ACTIONS(397), - [anon_sym_errdefer] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(397), - [anon_sym_expand] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_orelse] = ACTIONS(397), - [anon_sym_catch] = ACTIONS(397), - [anon_sym_or] = ACTIONS(397), - [anon_sym_and] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_try] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_none] = ACTIONS(397), - [sym_undefined] = ACTIONS(397), - [sym_sink] = ACTIONS(397), - [sym_integer] = ACTIONS(397), - [sym_float] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [sym_multiline_string] = ACTIONS(399), - [sym_character] = ACTIONS(399), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(510), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(399), + [sym__newline] = ACTIONS(447), }, [STATE(39)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(363), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(403), + [sym__newline] = ACTIONS(449), }, [STATE(40)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(341), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(41), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(477), + [sym_identifier] = ACTIONS(479), + [anon_sym_import] = ACTIONS(479), + [anon_sym_test] = ACTIONS(479), + [anon_sym_hide] = ACTIONS(479), + [anon_sym_func] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(479), + [anon_sym_anyopaque] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_uint] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_range] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_c_char] = ACTIONS(479), + [anon_sym_c_schar] = ACTIONS(479), + [anon_sym_c_uchar] = ACTIONS(479), + [anon_sym_c_short] = ACTIONS(479), + [anon_sym_c_ushort] = ACTIONS(479), + [anon_sym_c_int] = ACTIONS(479), + [anon_sym_c_uint] = ACTIONS(479), + [anon_sym_c_long] = ACTIONS(479), + [anon_sym_c_ulong] = ACTIONS(479), + [anon_sym_c_longlong] = ACTIONS(479), + [anon_sym_c_ulonglong] = ACTIONS(479), + [anon_sym_c_float] = ACTIONS(479), + [anon_sym_c_double] = ACTIONS(479), + [anon_sym_c_longdouble] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_AMP_EQ] = ACTIONS(477), + [anon_sym_PIPE_EQ] = ACTIONS(477), + [anon_sym_xor_EQ] = ACTIONS(477), + [anon_sym_LT_LT_EQ] = ACTIONS(477), + [anon_sym_GT_GT_EQ] = ACTIONS(477), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_yield] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_defer] = ACTIONS(479), + [anon_sym_errdefer] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_expand] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(477), + [anon_sym_orelse] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_or] = ACTIONS(479), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_try] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [sym_none] = ACTIONS(479), + [sym_undefined] = ACTIONS(479), + [sym_sink] = ACTIONS(479), + [sym_integer] = ACTIONS(479), + [sym_float] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(477), + [sym_multiline_string] = ACTIONS(477), + [sym_character] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(405), + [sym__newline] = ACTIONS(477), }, [STATE(41)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(343), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(477), + [sym_identifier] = ACTIONS(479), + [anon_sym_import] = ACTIONS(479), + [anon_sym_test] = ACTIONS(479), + [anon_sym_hide] = ACTIONS(479), + [anon_sym_func] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_EQ] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(477), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_COMMA] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(479), + [anon_sym_anyopaque] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_uint] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_range] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_c_char] = ACTIONS(479), + [anon_sym_c_schar] = ACTIONS(479), + [anon_sym_c_uchar] = ACTIONS(479), + [anon_sym_c_short] = ACTIONS(479), + [anon_sym_c_ushort] = ACTIONS(479), + [anon_sym_c_int] = ACTIONS(479), + [anon_sym_c_uint] = ACTIONS(479), + [anon_sym_c_long] = ACTIONS(479), + [anon_sym_c_ulong] = ACTIONS(479), + [anon_sym_c_longlong] = ACTIONS(479), + [anon_sym_c_ulonglong] = ACTIONS(479), + [anon_sym_c_float] = ACTIONS(479), + [anon_sym_c_double] = ACTIONS(479), + [anon_sym_c_longdouble] = ACTIONS(479), + [anon_sym_PLUS_EQ] = ACTIONS(477), + [anon_sym_DASH_EQ] = ACTIONS(477), + [anon_sym_STAR_EQ] = ACTIONS(477), + [anon_sym_SLASH_EQ] = ACTIONS(477), + [anon_sym_AMP_EQ] = ACTIONS(477), + [anon_sym_PIPE_EQ] = ACTIONS(477), + [anon_sym_xor_EQ] = ACTIONS(477), + [anon_sym_LT_LT_EQ] = ACTIONS(477), + [anon_sym_GT_GT_EQ] = ACTIONS(477), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_yield] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_defer] = ACTIONS(479), + [anon_sym_errdefer] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_expand] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(477), + [anon_sym_orelse] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_or] = ACTIONS(479), + [anon_sym_and] = ACTIONS(479), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_try] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [sym_none] = ACTIONS(479), + [sym_undefined] = ACTIONS(479), + [sym_sink] = ACTIONS(479), + [sym_integer] = ACTIONS(479), + [sym_float] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(477), + [sym_multiline_string] = ACTIONS(477), + [sym_character] = ACTIONS(477), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(477), }, [STATE(42)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(350), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(43), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(421), + [sym__newline] = ACTIONS(449), }, [STATE(43)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(352), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_PIPE] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(449), }, [STATE(44)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(360), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_variant_payload] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(481), + [sym_identifier] = ACTIONS(483), + [anon_sym_import] = ACTIONS(483), + [anon_sym_test] = ACTIONS(483), + [anon_sym_hide] = ACTIONS(483), + [anon_sym_func] = ACTIONS(483), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(485), + [anon_sym_COMMA] = ACTIONS(481), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_void] = ACTIONS(483), + [anon_sym_anyopaque] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_uint] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_range] = ACTIONS(483), + [anon_sym_i8] = ACTIONS(483), + [anon_sym_i16] = ACTIONS(483), + [anon_sym_i32] = ACTIONS(483), + [anon_sym_i64] = ACTIONS(483), + [anon_sym_u8] = ACTIONS(483), + [anon_sym_u16] = ACTIONS(483), + [anon_sym_u32] = ACTIONS(483), + [anon_sym_u64] = ACTIONS(483), + [anon_sym_isize] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_f32] = ACTIONS(483), + [anon_sym_f64] = ACTIONS(483), + [anon_sym_c_char] = ACTIONS(483), + [anon_sym_c_schar] = ACTIONS(483), + [anon_sym_c_uchar] = ACTIONS(483), + [anon_sym_c_short] = ACTIONS(483), + [anon_sym_c_ushort] = ACTIONS(483), + [anon_sym_c_int] = ACTIONS(483), + [anon_sym_c_uint] = ACTIONS(483), + [anon_sym_c_long] = ACTIONS(483), + [anon_sym_c_ulong] = ACTIONS(483), + [anon_sym_c_longlong] = ACTIONS(483), + [anon_sym_c_ulonglong] = ACTIONS(483), + [anon_sym_c_float] = ACTIONS(483), + [anon_sym_c_double] = ACTIONS(483), + [anon_sym_c_longdouble] = ACTIONS(483), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_xor_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), + [anon_sym_return] = ACTIONS(483), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_defer] = ACTIONS(483), + [anon_sym_errdefer] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_expand] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_match] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(481), + [anon_sym_orelse] = ACTIONS(483), + [anon_sym_catch] = ACTIONS(483), + [anon_sym_or] = ACTIONS(483), + [anon_sym_and] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(483), + [anon_sym_xor] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_LT_LT_PIPE] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(483), + [anon_sym_SLASH] = ACTIONS(483), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_try] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [sym_none] = ACTIONS(483), + [sym_undefined] = ACTIONS(483), + [sym_sink] = ACTIONS(483), + [sym_integer] = ACTIONS(483), + [sym_float] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(481), + [sym_multiline_string] = ACTIONS(481), + [sym_character] = ACTIONS(481), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(481), }, [STATE(45)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(358), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(44), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_test] = ACTIONS(490), + [anon_sym_hide] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_defer] = ACTIONS(490), + [anon_sym_errdefer] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(437), + [sym__newline] = ACTIONS(488), }, [STATE(46)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(369), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(47), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_argument_list] = STATE(229), + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_import] = ACTIONS(494), + [anon_sym_test] = ACTIONS(494), + [anon_sym_hide] = ACTIONS(494), + [anon_sym_func] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_struct] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_void] = ACTIONS(494), + [anon_sym_anyopaque] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_int] = ACTIONS(494), + [anon_sym_uint] = ACTIONS(494), + [anon_sym_float] = ACTIONS(494), + [anon_sym_range] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_c_char] = ACTIONS(494), + [anon_sym_c_schar] = ACTIONS(494), + [anon_sym_c_uchar] = ACTIONS(494), + [anon_sym_c_short] = ACTIONS(494), + [anon_sym_c_ushort] = ACTIONS(494), + [anon_sym_c_int] = ACTIONS(494), + [anon_sym_c_uint] = ACTIONS(494), + [anon_sym_c_long] = ACTIONS(494), + [anon_sym_c_ulong] = ACTIONS(494), + [anon_sym_c_longlong] = ACTIONS(494), + [anon_sym_c_ulonglong] = ACTIONS(494), + [anon_sym_c_float] = ACTIONS(494), + [anon_sym_c_double] = ACTIONS(494), + [anon_sym_c_longdouble] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_xor_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(492), + [anon_sym_return] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_defer] = ACTIONS(494), + [anon_sym_errdefer] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_else] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_expand] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_orelse] = ACTIONS(494), + [anon_sym_catch] = ACTIONS(494), + [anon_sym_or] = ACTIONS(494), + [anon_sym_and] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_xor] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_LT_LT_PIPE] = ACTIONS(494), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_try] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_none] = ACTIONS(494), + [sym_undefined] = ACTIONS(494), + [sym_sink] = ACTIONS(494), + [sym_integer] = ACTIONS(494), + [sym_float] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [sym_multiline_string] = ACTIONS(492), + [sym_character] = ACTIONS(492), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(439), + [sym__newline] = ACTIONS(492), }, [STATE(47)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(371), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(532), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [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_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(48)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_error_capture] = STATE(377), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [aux_sym_type_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [anon_sym_import] = ACTIONS(504), + [anon_sym_test] = ACTIONS(504), + [anon_sym_hide] = ACTIONS(504), + [anon_sym_func] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_struct] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_void] = ACTIONS(504), + [anon_sym_anyopaque] = ACTIONS(504), + [anon_sym_bool] = ACTIONS(504), + [anon_sym_int] = ACTIONS(504), + [anon_sym_uint] = ACTIONS(504), + [anon_sym_float] = ACTIONS(504), + [anon_sym_range] = ACTIONS(504), + [anon_sym_i8] = ACTIONS(504), + [anon_sym_i16] = ACTIONS(504), + [anon_sym_i32] = ACTIONS(504), + [anon_sym_i64] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(504), + [anon_sym_u16] = ACTIONS(504), + [anon_sym_u32] = ACTIONS(504), + [anon_sym_u64] = ACTIONS(504), + [anon_sym_isize] = ACTIONS(504), + [anon_sym_usize] = ACTIONS(504), + [anon_sym_f32] = ACTIONS(504), + [anon_sym_f64] = ACTIONS(504), + [anon_sym_c_char] = ACTIONS(504), + [anon_sym_c_schar] = ACTIONS(504), + [anon_sym_c_uchar] = ACTIONS(504), + [anon_sym_c_short] = ACTIONS(504), + [anon_sym_c_ushort] = ACTIONS(504), + [anon_sym_c_int] = ACTIONS(504), + [anon_sym_c_uint] = ACTIONS(504), + [anon_sym_c_long] = ACTIONS(504), + [anon_sym_c_ulong] = ACTIONS(504), + [anon_sym_c_longlong] = ACTIONS(504), + [anon_sym_c_ulonglong] = ACTIONS(504), + [anon_sym_c_float] = ACTIONS(504), + [anon_sym_c_double] = ACTIONS(504), + [anon_sym_c_longdouble] = ACTIONS(504), + [anon_sym_PLUS_EQ] = ACTIONS(502), + [anon_sym_DASH_EQ] = ACTIONS(502), + [anon_sym_STAR_EQ] = ACTIONS(502), + [anon_sym_SLASH_EQ] = ACTIONS(502), + [anon_sym_AMP_EQ] = ACTIONS(502), + [anon_sym_PIPE_EQ] = ACTIONS(502), + [anon_sym_xor_EQ] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(502), + [anon_sym_GT_GT_EQ] = ACTIONS(502), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(502), + [anon_sym_return] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_defer] = ACTIONS(504), + [anon_sym_errdefer] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_expand] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_match] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(502), + [anon_sym_orelse] = ACTIONS(504), + [anon_sym_catch] = ACTIONS(504), + [anon_sym_or] = ACTIONS(504), + [anon_sym_and] = ACTIONS(504), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(504), + [anon_sym_xor] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(504), + [anon_sym_LT_LT_PIPE] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_SLASH] = ACTIONS(504), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_try] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_true] = ACTIONS(504), + [anon_sym_false] = ACTIONS(504), + [sym_none] = ACTIONS(504), + [sym_undefined] = ACTIONS(504), + [sym_sink] = ACTIONS(504), + [sym_integer] = ACTIONS(504), + [sym_float] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [sym_multiline_string] = ACTIONS(502), + [sym_character] = ACTIONS(502), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(502), }, [STATE(49)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1614), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1614), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [aux_sym_type_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_test] = ACTIONS(508), + [anon_sym_hide] = ACTIONS(508), + [anon_sym_func] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_struct] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(508), + [anon_sym_anyopaque] = ACTIONS(508), + [anon_sym_bool] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_uint] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_range] = ACTIONS(508), + [anon_sym_i8] = ACTIONS(508), + [anon_sym_i16] = ACTIONS(508), + [anon_sym_i32] = ACTIONS(508), + [anon_sym_i64] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(508), + [anon_sym_u16] = ACTIONS(508), + [anon_sym_u32] = ACTIONS(508), + [anon_sym_u64] = ACTIONS(508), + [anon_sym_isize] = ACTIONS(508), + [anon_sym_usize] = ACTIONS(508), + [anon_sym_f32] = ACTIONS(508), + [anon_sym_f64] = ACTIONS(508), + [anon_sym_c_char] = ACTIONS(508), + [anon_sym_c_schar] = ACTIONS(508), + [anon_sym_c_uchar] = ACTIONS(508), + [anon_sym_c_short] = ACTIONS(508), + [anon_sym_c_ushort] = ACTIONS(508), + [anon_sym_c_int] = ACTIONS(508), + [anon_sym_c_uint] = ACTIONS(508), + [anon_sym_c_long] = ACTIONS(508), + [anon_sym_c_ulong] = ACTIONS(508), + [anon_sym_c_longlong] = ACTIONS(508), + [anon_sym_c_ulonglong] = ACTIONS(508), + [anon_sym_c_float] = ACTIONS(508), + [anon_sym_c_double] = ACTIONS(508), + [anon_sym_c_longdouble] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(506), + [anon_sym_DASH_EQ] = ACTIONS(506), + [anon_sym_STAR_EQ] = ACTIONS(506), + [anon_sym_SLASH_EQ] = ACTIONS(506), + [anon_sym_AMP_EQ] = ACTIONS(506), + [anon_sym_PIPE_EQ] = ACTIONS(506), + [anon_sym_xor_EQ] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(506), + [anon_sym_GT_GT_EQ] = ACTIONS(506), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(506), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_defer] = ACTIONS(508), + [anon_sym_errdefer] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_expand] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_match] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(506), + [anon_sym_orelse] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_and] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_xor] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT_PIPE] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_try] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_true] = ACTIONS(508), + [anon_sym_false] = ACTIONS(508), + [sym_none] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [sym_sink] = ACTIONS(508), + [sym_integer] = ACTIONS(508), + [sym_float] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [sym_multiline_string] = ACTIONS(506), + [sym_character] = ACTIONS(506), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(506), }, [STATE(50)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(50), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_block_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(441), - [anon_sym_func] = ACTIONS(444), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_struct] = ACTIONS(450), - [anon_sym_LPAREN] = ACTIONS(453), - [anon_sym_LBRACE] = ACTIONS(456), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(464), - [anon_sym_void] = ACTIONS(467), - [anon_sym_anyopaque] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_int] = ACTIONS(467), - [anon_sym_uint] = ACTIONS(467), - [anon_sym_float] = ACTIONS(467), - [anon_sym_range] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_c_char] = ACTIONS(467), - [anon_sym_c_schar] = ACTIONS(467), - [anon_sym_c_uchar] = ACTIONS(467), - [anon_sym_c_short] = ACTIONS(467), - [anon_sym_c_ushort] = ACTIONS(467), - [anon_sym_c_int] = ACTIONS(467), - [anon_sym_c_uint] = ACTIONS(467), - [anon_sym_c_long] = ACTIONS(467), - [anon_sym_c_ulong] = ACTIONS(467), - [anon_sym_c_longlong] = ACTIONS(467), - [anon_sym_c_ulonglong] = ACTIONS(467), - [anon_sym_c_float] = ACTIONS(467), - [anon_sym_c_double] = ACTIONS(467), - [anon_sym_c_longdouble] = ACTIONS(467), - [anon_sym_return] = ACTIONS(470), - [anon_sym_yield] = ACTIONS(473), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_defer] = ACTIONS(482), - [anon_sym_errdefer] = ACTIONS(485), - [anon_sym_if] = ACTIONS(488), - [anon_sym_while] = ACTIONS(491), - [anon_sym_expand] = ACTIONS(494), - [anon_sym_for] = ACTIONS(497), - [anon_sym_match] = ACTIONS(500), - [anon_sym_AMP] = ACTIONS(447), - [anon_sym_try] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [sym_none] = ACTIONS(512), - [sym_undefined] = ACTIONS(512), + [aux_sym_type_repeat1] = STATE(49), + [ts_builtin_sym_end] = ACTIONS(513), + [sym_identifier] = ACTIONS(515), + [anon_sym_import] = ACTIONS(515), + [anon_sym_test] = ACTIONS(515), + [anon_sym_hide] = ACTIONS(515), + [anon_sym_func] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_EQ] = ACTIONS(515), + [anon_sym_struct] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_COMMA] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(515), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(515), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_void] = ACTIONS(515), + [anon_sym_anyopaque] = ACTIONS(515), + [anon_sym_bool] = ACTIONS(515), + [anon_sym_int] = ACTIONS(515), + [anon_sym_uint] = ACTIONS(515), + [anon_sym_float] = ACTIONS(515), + [anon_sym_range] = ACTIONS(515), + [anon_sym_i8] = ACTIONS(515), + [anon_sym_i16] = ACTIONS(515), + [anon_sym_i32] = ACTIONS(515), + [anon_sym_i64] = ACTIONS(515), + [anon_sym_u8] = ACTIONS(515), + [anon_sym_u16] = ACTIONS(515), + [anon_sym_u32] = ACTIONS(515), + [anon_sym_u64] = ACTIONS(515), + [anon_sym_isize] = ACTIONS(515), + [anon_sym_usize] = ACTIONS(515), + [anon_sym_f32] = ACTIONS(515), + [anon_sym_f64] = ACTIONS(515), + [anon_sym_c_char] = ACTIONS(515), + [anon_sym_c_schar] = ACTIONS(515), + [anon_sym_c_uchar] = ACTIONS(515), + [anon_sym_c_short] = ACTIONS(515), + [anon_sym_c_ushort] = ACTIONS(515), + [anon_sym_c_int] = ACTIONS(515), + [anon_sym_c_uint] = ACTIONS(515), + [anon_sym_c_long] = ACTIONS(515), + [anon_sym_c_ulong] = ACTIONS(515), + [anon_sym_c_longlong] = ACTIONS(515), + [anon_sym_c_ulonglong] = ACTIONS(515), + [anon_sym_c_float] = ACTIONS(515), + [anon_sym_c_double] = ACTIONS(515), + [anon_sym_c_longdouble] = ACTIONS(515), + [anon_sym_PLUS_EQ] = ACTIONS(513), + [anon_sym_DASH_EQ] = ACTIONS(513), + [anon_sym_STAR_EQ] = ACTIONS(513), + [anon_sym_SLASH_EQ] = ACTIONS(513), + [anon_sym_AMP_EQ] = ACTIONS(513), + [anon_sym_PIPE_EQ] = ACTIONS(513), + [anon_sym_xor_EQ] = ACTIONS(513), + [anon_sym_LT_LT_EQ] = ACTIONS(513), + [anon_sym_GT_GT_EQ] = ACTIONS(513), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(513), + [anon_sym_return] = ACTIONS(515), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_break] = ACTIONS(515), + [anon_sym_continue] = ACTIONS(515), + [anon_sym_defer] = ACTIONS(515), + [anon_sym_errdefer] = ACTIONS(515), + [anon_sym_if] = ACTIONS(515), + [anon_sym_else] = ACTIONS(515), + [anon_sym_while] = ACTIONS(515), + [anon_sym_expand] = ACTIONS(515), + [anon_sym_for] = ACTIONS(515), + [anon_sym_match] = ACTIONS(515), + [anon_sym_DOT_DOT] = ACTIONS(515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_orelse] = ACTIONS(515), + [anon_sym_catch] = ACTIONS(515), + [anon_sym_or] = ACTIONS(515), + [anon_sym_and] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_xor] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(515), + [anon_sym_LT_LT_PIPE] = ACTIONS(515), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_true] = ACTIONS(515), + [anon_sym_false] = ACTIONS(515), + [sym_none] = ACTIONS(515), + [sym_undefined] = ACTIONS(515), [sym_sink] = ACTIONS(515), - [sym_integer] = ACTIONS(512), - [sym_float] = ACTIONS(518), - [anon_sym_DQUOTE] = ACTIONS(521), - [sym_multiline_string] = ACTIONS(518), - [sym_character] = ACTIONS(518), + [sym_integer] = ACTIONS(515), + [sym_float] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [sym_multiline_string] = ACTIONS(513), + [sym_character] = ACTIONS(513), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(524), + [sym__newline] = ACTIONS(513), }, [STATE(51)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1601), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1601), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(53), - [sym_identifier] = ACTIONS(17), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(93), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(583), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1104), + [aux_sym_block_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -15883,1194 +18801,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(527), - }, - [STATE(52)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1601), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1601), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(53)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1615), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1615), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(54)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(58), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(529), - }, - [STATE(55)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1616), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1616), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(531), - }, - [STATE(56)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1616), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1616), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(57)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(533), - }, - [STATE(58)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(59)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(535), - }, - [STATE(60)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1620), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1620), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(61)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(537), }, - [STATE(62)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1317), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1317), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(197), + [STATE(52)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(520), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -17104,84 +18914,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [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_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(539), }, - [STATE(63)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), + [STATE(53)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(523), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -17215,84 +19027,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(64)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(407), + [STATE(54)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(513), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -17326,1305 +19140,877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [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(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(541), }, - [STATE(65)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(55)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(543), + [sym_identifier] = ACTIONS(545), + [anon_sym_import] = ACTIONS(545), + [anon_sym_test] = ACTIONS(545), + [anon_sym_hide] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(545), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_defer] = ACTIONS(545), + [anon_sym_errdefer] = ACTIONS(545), + [anon_sym_if] = ACTIONS(545), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(545), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(545), + [anon_sym_match] = ACTIONS(545), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(543), }, - [STATE(66)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [STATE(56)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(530), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(67)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(545), - }, - [STATE(68)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(69)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(547), }, - [STATE(70)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1322), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1322), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(71)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1322), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1322), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(57)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT_PIPE] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(549), }, - [STATE(72)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1315), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1315), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(58)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(551), + [sym__newline] = ACTIONS(549), }, - [STATE(73)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1316), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1316), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(59)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT_PIPE] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(553), + [sym__newline] = ACTIONS(549), }, - [STATE(74)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(60)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(549), }, - [STATE(75)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(61)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(549), }, - [STATE(76)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(407), + [STATE(62)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(521), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -18658,306 +20044,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(555), - }, - [STATE(77)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(78)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(86), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(557), }, - [STATE(79)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(407), + [STATE(63)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(347), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(591), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1048), + [aux_sym_block_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -18991,639 +20157,651 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(559), + [sym__newline] = ACTIONS(537), }, - [STATE(80)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(81)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1318), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1318), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(82)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1320), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1320), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(83)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1319), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1319), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(84)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1319), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1319), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(89), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(64)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(561), + [sym_identifier] = ACTIONS(563), + [anon_sym_import] = ACTIONS(563), + [anon_sym_test] = ACTIONS(563), + [anon_sym_hide] = ACTIONS(563), + [anon_sym_func] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(563), + [anon_sym_anyopaque] = ACTIONS(563), + [anon_sym_bool] = ACTIONS(563), + [anon_sym_int] = ACTIONS(563), + [anon_sym_uint] = ACTIONS(563), + [anon_sym_float] = ACTIONS(563), + [anon_sym_range] = ACTIONS(563), + [anon_sym_i8] = ACTIONS(563), + [anon_sym_i16] = ACTIONS(563), + [anon_sym_i32] = ACTIONS(563), + [anon_sym_i64] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(563), + [anon_sym_u16] = ACTIONS(563), + [anon_sym_u32] = ACTIONS(563), + [anon_sym_u64] = ACTIONS(563), + [anon_sym_isize] = ACTIONS(563), + [anon_sym_usize] = ACTIONS(563), + [anon_sym_f32] = ACTIONS(563), + [anon_sym_f64] = ACTIONS(563), + [anon_sym_c_char] = ACTIONS(563), + [anon_sym_c_schar] = ACTIONS(563), + [anon_sym_c_uchar] = ACTIONS(563), + [anon_sym_c_short] = ACTIONS(563), + [anon_sym_c_ushort] = ACTIONS(563), + [anon_sym_c_int] = ACTIONS(563), + [anon_sym_c_uint] = ACTIONS(563), + [anon_sym_c_long] = ACTIONS(563), + [anon_sym_c_ulong] = ACTIONS(563), + [anon_sym_c_longlong] = ACTIONS(563), + [anon_sym_c_ulonglong] = ACTIONS(563), + [anon_sym_c_float] = ACTIONS(563), + [anon_sym_c_double] = ACTIONS(563), + [anon_sym_c_longdouble] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [anon_sym_DASH_EQ] = ACTIONS(561), + [anon_sym_STAR_EQ] = ACTIONS(561), + [anon_sym_SLASH_EQ] = ACTIONS(561), + [anon_sym_AMP_EQ] = ACTIONS(561), + [anon_sym_PIPE_EQ] = ACTIONS(561), + [anon_sym_xor_EQ] = ACTIONS(561), + [anon_sym_LT_LT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_EQ] = ACTIONS(561), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(561), + [anon_sym_return] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_errdefer] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_expand] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(561), + [anon_sym_orelse] = ACTIONS(563), + [anon_sym_catch] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_and] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_try] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(563), + [anon_sym_false] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [sym_sink] = ACTIONS(563), + [sym_integer] = ACTIONS(563), + [sym_float] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_multiline_string] = ACTIONS(561), + [sym_character] = ACTIONS(561), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(561), }, - [STATE(85)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), + [STATE(65)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(66)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(549), + [anon_sym_DASH_EQ] = ACTIONS(549), + [anon_sym_STAR_EQ] = ACTIONS(549), + [anon_sym_SLASH_EQ] = ACTIONS(549), + [anon_sym_AMP_EQ] = ACTIONS(549), + [anon_sym_PIPE_EQ] = ACTIONS(549), + [anon_sym_xor_EQ] = ACTIONS(549), + [anon_sym_LT_LT_EQ] = ACTIONS(549), + [anon_sym_GT_GT_EQ] = ACTIONS(549), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(549), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT_PIPE] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(67)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(526), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(68)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(360), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(583), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1104), + [aux_sym_block_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(537), + }, + [STATE(69)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(515), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -19657,84 +20835,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [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(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(86)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), + [STATE(70)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_PIPE] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(71)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(93), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(591), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1048), + [aux_sym_block_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -19768,528 +21061,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(537), }, - [STATE(87)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), + [STATE(72)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(292), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(596), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1195), + [aux_sym_block_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(88)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(563), - }, - [STATE(89)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1321), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1321), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(90)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(91)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(187), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_block_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -20323,84 +21174,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(537), + }, + [STATE(73)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(567), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(567), }, - [STATE(92)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1298), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1298), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(101), + [STATE(74)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(540), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -20434,84 +21400,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(75)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(544), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(569), }, - [STATE(93)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1298), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1298), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), + [STATE(76)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(93), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(596), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1195), + [aux_sym_block_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -20545,195 +21626,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(537), }, - [STATE(94)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1295), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1295), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(77)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(449), }, - [STATE(95)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(273), + [STATE(78)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(551), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -20767,84 +21852,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(571), + [sym__newline] = ACTIONS(447), }, - [STATE(96)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1289), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1289), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(101), + [STATE(79)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(549), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -20878,1305 +21965,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(573), - }, - [STATE(97)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1289), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1289), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(98)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(103), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(575), - }, - [STATE(99)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(100)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(577), - }, - [STATE(101)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1292), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1292), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(102)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(579), - }, - [STATE(103)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(104)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(581), - }, - [STATE(105)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(583), - }, - [STATE(106)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(107)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(585), }, - [STATE(108)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), + [STATE(80)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(557), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -22210,195 +22078,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(109)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(587), }, - [STATE(110)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), + [STATE(81)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(559), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -22432,2304 +22191,762 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(111)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(82)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(451), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(451), + [anon_sym_LT_LT_PIPE] = ACTIONS(451), + [anon_sym_PLUS] = ACTIONS(451), + [anon_sym_SLASH] = ACTIONS(451), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(449), }, - [STATE(112)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(83)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(449), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(449), + [anon_sym_DASH_EQ] = ACTIONS(449), + [anon_sym_STAR_EQ] = ACTIONS(449), + [anon_sym_SLASH_EQ] = ACTIONS(449), + [anon_sym_AMP_EQ] = ACTIONS(449), + [anon_sym_PIPE_EQ] = ACTIONS(449), + [anon_sym_xor_EQ] = ACTIONS(449), + [anon_sym_LT_LT_EQ] = ACTIONS(449), + [anon_sym_GT_GT_EQ] = ACTIONS(449), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(589), + [sym__newline] = ACTIONS(449), }, - [STATE(113)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [STATE(84)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(563), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(114)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(591), - }, - [STATE(115)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(593), - }, - [STATE(116)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(117)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(118)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(119)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(120)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(595), - }, - [STATE(121)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(122)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1732), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1732), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(597), - }, - [STATE(123)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1732), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1732), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(124)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1737), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1737), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(125)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(599), - }, - [STATE(126)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1738), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1738), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(601), - }, - [STATE(127)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1738), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1738), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(128)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(603), }, - [STATE(129)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [STATE(85)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_error_capture] = STATE(565), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(130)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(86)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(561), + [sym_identifier] = ACTIONS(563), + [anon_sym_import] = ACTIONS(563), + [anon_sym_test] = ACTIONS(563), + [anon_sym_hide] = ACTIONS(563), + [anon_sym_func] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(563), + [anon_sym_anyopaque] = ACTIONS(563), + [anon_sym_bool] = ACTIONS(563), + [anon_sym_int] = ACTIONS(563), + [anon_sym_uint] = ACTIONS(563), + [anon_sym_float] = ACTIONS(563), + [anon_sym_range] = ACTIONS(563), + [anon_sym_i8] = ACTIONS(563), + [anon_sym_i16] = ACTIONS(563), + [anon_sym_i32] = ACTIONS(563), + [anon_sym_i64] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(563), + [anon_sym_u16] = ACTIONS(563), + [anon_sym_u32] = ACTIONS(563), + [anon_sym_u64] = ACTIONS(563), + [anon_sym_isize] = ACTIONS(563), + [anon_sym_usize] = ACTIONS(563), + [anon_sym_f32] = ACTIONS(563), + [anon_sym_f64] = ACTIONS(563), + [anon_sym_c_char] = ACTIONS(563), + [anon_sym_c_schar] = ACTIONS(563), + [anon_sym_c_uchar] = ACTIONS(563), + [anon_sym_c_short] = ACTIONS(563), + [anon_sym_c_ushort] = ACTIONS(563), + [anon_sym_c_int] = ACTIONS(563), + [anon_sym_c_uint] = ACTIONS(563), + [anon_sym_c_long] = ACTIONS(563), + [anon_sym_c_ulong] = ACTIONS(563), + [anon_sym_c_longlong] = ACTIONS(563), + [anon_sym_c_ulonglong] = ACTIONS(563), + [anon_sym_c_float] = ACTIONS(563), + [anon_sym_c_double] = ACTIONS(563), + [anon_sym_c_longdouble] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(561), + [anon_sym_DASH_EQ] = ACTIONS(561), + [anon_sym_STAR_EQ] = ACTIONS(561), + [anon_sym_SLASH_EQ] = ACTIONS(561), + [anon_sym_AMP_EQ] = ACTIONS(561), + [anon_sym_PIPE_EQ] = ACTIONS(561), + [anon_sym_xor_EQ] = ACTIONS(561), + [anon_sym_LT_LT_EQ] = ACTIONS(561), + [anon_sym_GT_GT_EQ] = ACTIONS(561), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(561), + [anon_sym_return] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_errdefer] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_expand] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(561), + [anon_sym_orelse] = ACTIONS(563), + [anon_sym_catch] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_try] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(563), + [anon_sym_false] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [sym_sink] = ACTIONS(563), + [sym_integer] = ACTIONS(563), + [sym_float] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_multiline_string] = ACTIONS(561), + [sym_character] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(561), + }, + [STATE(87)] = { + [ts_builtin_sym_end] = ACTIONS(605), + [sym_identifier] = ACTIONS(607), + [anon_sym_import] = ACTIONS(607), + [anon_sym_test] = ACTIONS(607), + [anon_sym_hide] = ACTIONS(607), + [anon_sym_func] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(607), + [anon_sym_anyopaque] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_int] = ACTIONS(607), + [anon_sym_uint] = ACTIONS(607), + [anon_sym_float] = ACTIONS(607), + [anon_sym_range] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_c_char] = ACTIONS(607), + [anon_sym_c_schar] = ACTIONS(607), + [anon_sym_c_uchar] = ACTIONS(607), + [anon_sym_c_short] = ACTIONS(607), + [anon_sym_c_ushort] = ACTIONS(607), + [anon_sym_c_int] = ACTIONS(607), + [anon_sym_c_uint] = ACTIONS(607), + [anon_sym_c_long] = ACTIONS(607), + [anon_sym_c_ulong] = ACTIONS(607), + [anon_sym_c_longlong] = ACTIONS(607), + [anon_sym_c_ulonglong] = ACTIONS(607), + [anon_sym_c_float] = ACTIONS(607), + [anon_sym_c_double] = ACTIONS(607), + [anon_sym_c_longdouble] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_xor_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(605), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_defer] = ACTIONS(607), + [anon_sym_errdefer] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_expand] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(605), + [anon_sym_orelse] = ACTIONS(607), + [anon_sym_catch] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_and] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_xor] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_LT_LT_PIPE] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(607), + [anon_sym_SLASH] = ACTIONS(607), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_try] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_true] = ACTIONS(607), + [anon_sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_undefined] = ACTIONS(607), + [sym_sink] = ACTIONS(607), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_multiline_string] = ACTIONS(605), + [sym_character] = ACTIONS(605), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(605), }, - [STATE(131)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1740), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1740), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), + [STATE(88)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -24763,528 +22980,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(132)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(607), - }, - [STATE(133)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(134)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(89)] = { + [ts_builtin_sym_end] = ACTIONS(609), + [sym_identifier] = ACTIONS(611), + [anon_sym_import] = ACTIONS(611), + [anon_sym_test] = ACTIONS(611), + [anon_sym_hide] = ACTIONS(611), + [anon_sym_func] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_STAR] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_void] = ACTIONS(611), + [anon_sym_anyopaque] = ACTIONS(611), + [anon_sym_bool] = ACTIONS(611), + [anon_sym_int] = ACTIONS(611), + [anon_sym_uint] = ACTIONS(611), + [anon_sym_float] = ACTIONS(611), + [anon_sym_range] = ACTIONS(611), + [anon_sym_i8] = ACTIONS(611), + [anon_sym_i16] = ACTIONS(611), + [anon_sym_i32] = ACTIONS(611), + [anon_sym_i64] = ACTIONS(611), + [anon_sym_u8] = ACTIONS(611), + [anon_sym_u16] = ACTIONS(611), + [anon_sym_u32] = ACTIONS(611), + [anon_sym_u64] = ACTIONS(611), + [anon_sym_isize] = ACTIONS(611), + [anon_sym_usize] = ACTIONS(611), + [anon_sym_f32] = ACTIONS(611), + [anon_sym_f64] = ACTIONS(611), + [anon_sym_c_char] = ACTIONS(611), + [anon_sym_c_schar] = ACTIONS(611), + [anon_sym_c_uchar] = ACTIONS(611), + [anon_sym_c_short] = ACTIONS(611), + [anon_sym_c_ushort] = ACTIONS(611), + [anon_sym_c_int] = ACTIONS(611), + [anon_sym_c_uint] = ACTIONS(611), + [anon_sym_c_long] = ACTIONS(611), + [anon_sym_c_ulong] = ACTIONS(611), + [anon_sym_c_longlong] = ACTIONS(611), + [anon_sym_c_ulonglong] = ACTIONS(611), + [anon_sym_c_float] = ACTIONS(611), + [anon_sym_c_double] = ACTIONS(611), + [anon_sym_c_longdouble] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_xor_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(609), + [anon_sym_return] = ACTIONS(611), + [anon_sym_yield] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_errdefer] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_else] = ACTIONS(611), + [anon_sym_while] = ACTIONS(611), + [anon_sym_expand] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_DOT_DOT] = ACTIONS(611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_orelse] = ACTIONS(611), + [anon_sym_catch] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_and] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(611), + [anon_sym_xor] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_LT_LT_PIPE] = ACTIONS(611), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_TILDE] = ACTIONS(609), + [anon_sym_try] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(609), + [anon_sym_true] = ACTIONS(611), + [anon_sym_false] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_undefined] = ACTIONS(611), + [sym_sink] = ACTIONS(611), + [sym_integer] = ACTIONS(611), + [sym_float] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [sym_multiline_string] = ACTIONS(609), + [sym_character] = ACTIONS(609), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(609), }, - [STATE(135)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(90)] = { + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(611), + [sym__newline] = ACTIONS(390), }, - [STATE(136)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), + [STATE(91)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2515), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2515), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -25318,195 +23316,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), + [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(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(137)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(92)] = { + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_import] = ACTIONS(615), + [anon_sym_test] = ACTIONS(615), + [anon_sym_hide] = ACTIONS(615), + [anon_sym_func] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_void] = ACTIONS(615), + [anon_sym_anyopaque] = ACTIONS(615), + [anon_sym_bool] = ACTIONS(615), + [anon_sym_int] = ACTIONS(615), + [anon_sym_uint] = ACTIONS(615), + [anon_sym_float] = ACTIONS(615), + [anon_sym_range] = ACTIONS(615), + [anon_sym_i8] = ACTIONS(615), + [anon_sym_i16] = ACTIONS(615), + [anon_sym_i32] = ACTIONS(615), + [anon_sym_i64] = ACTIONS(615), + [anon_sym_u8] = ACTIONS(615), + [anon_sym_u16] = ACTIONS(615), + [anon_sym_u32] = ACTIONS(615), + [anon_sym_u64] = ACTIONS(615), + [anon_sym_isize] = ACTIONS(615), + [anon_sym_usize] = ACTIONS(615), + [anon_sym_f32] = ACTIONS(615), + [anon_sym_f64] = ACTIONS(615), + [anon_sym_c_char] = ACTIONS(615), + [anon_sym_c_schar] = ACTIONS(615), + [anon_sym_c_uchar] = ACTIONS(615), + [anon_sym_c_short] = ACTIONS(615), + [anon_sym_c_ushort] = ACTIONS(615), + [anon_sym_c_int] = ACTIONS(615), + [anon_sym_c_uint] = ACTIONS(615), + [anon_sym_c_long] = ACTIONS(615), + [anon_sym_c_ulong] = ACTIONS(615), + [anon_sym_c_longlong] = ACTIONS(615), + [anon_sym_c_ulonglong] = ACTIONS(615), + [anon_sym_c_float] = ACTIONS(615), + [anon_sym_c_double] = ACTIONS(615), + [anon_sym_c_longdouble] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_xor_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(613), + [anon_sym_return] = ACTIONS(615), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_else] = ACTIONS(615), + [anon_sym_while] = ACTIONS(615), + [anon_sym_expand] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(613), + [anon_sym_orelse] = ACTIONS(615), + [anon_sym_catch] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_and] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_xor] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_LT_LT_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_true] = ACTIONS(615), + [anon_sym_false] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_undefined] = ACTIONS(615), + [sym_sink] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [sym_multiline_string] = ACTIONS(613), + [sym_character] = ACTIONS(613), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(613), }, - [STATE(138)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), + [STATE(93)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(109), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(517), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -25540,1527 +23540,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(139)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(615), - }, - [STATE(140)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(141)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(142)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(147), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(617), - }, - [STATE(143)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(144)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(148), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(619), }, - [STATE(145)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(94)] = { + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_test] = ACTIONS(623), + [anon_sym_hide] = ACTIONS(623), + [anon_sym_func] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_anyopaque] = ACTIONS(623), + [anon_sym_bool] = ACTIONS(623), + [anon_sym_int] = ACTIONS(623), + [anon_sym_uint] = ACTIONS(623), + [anon_sym_float] = ACTIONS(623), + [anon_sym_range] = ACTIONS(623), + [anon_sym_i8] = ACTIONS(623), + [anon_sym_i16] = ACTIONS(623), + [anon_sym_i32] = ACTIONS(623), + [anon_sym_i64] = ACTIONS(623), + [anon_sym_u8] = ACTIONS(623), + [anon_sym_u16] = ACTIONS(623), + [anon_sym_u32] = ACTIONS(623), + [anon_sym_u64] = ACTIONS(623), + [anon_sym_isize] = ACTIONS(623), + [anon_sym_usize] = ACTIONS(623), + [anon_sym_f32] = ACTIONS(623), + [anon_sym_f64] = ACTIONS(623), + [anon_sym_c_char] = ACTIONS(623), + [anon_sym_c_schar] = ACTIONS(623), + [anon_sym_c_uchar] = ACTIONS(623), + [anon_sym_c_short] = ACTIONS(623), + [anon_sym_c_ushort] = ACTIONS(623), + [anon_sym_c_int] = ACTIONS(623), + [anon_sym_c_uint] = ACTIONS(623), + [anon_sym_c_long] = ACTIONS(623), + [anon_sym_c_ulong] = ACTIONS(623), + [anon_sym_c_longlong] = ACTIONS(623), + [anon_sym_c_ulonglong] = ACTIONS(623), + [anon_sym_c_float] = ACTIONS(623), + [anon_sym_c_double] = ACTIONS(623), + [anon_sym_c_longdouble] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_xor_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(621), + [anon_sym_return] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_errdefer] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(621), + [anon_sym_orelse] = ACTIONS(623), + [anon_sym_catch] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_and] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_xor] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT_PIPE] = ACTIONS(623), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_try] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_true] = ACTIONS(623), + [anon_sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [sym_sink] = ACTIONS(623), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [sym_multiline_string] = ACTIONS(621), + [sym_character] = ACTIONS(621), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(621), }, - [STATE(146)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), + [STATE(95)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(147)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(148)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(149)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(150)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(623), - }, - [STATE(151)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(152)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1614), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1614), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -27094,84 +23764,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(625), }, - [STATE(153)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1595), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1595), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), + [STATE(96)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -27205,84 +23876,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(154)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(158), - [sym_identifier] = ACTIONS(257), + [STATE(97)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -27316,1416 +23988,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(627), }, - [STATE(155)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1617), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1617), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(98)] = { + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [anon_sym_import] = ACTIONS(631), + [anon_sym_test] = ACTIONS(631), + [anon_sym_hide] = ACTIONS(631), + [anon_sym_func] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_DASH] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(631), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = ACTIONS(631), + [anon_sym_uint] = ACTIONS(631), + [anon_sym_float] = ACTIONS(631), + [anon_sym_range] = ACTIONS(631), + [anon_sym_i8] = ACTIONS(631), + [anon_sym_i16] = ACTIONS(631), + [anon_sym_i32] = ACTIONS(631), + [anon_sym_i64] = ACTIONS(631), + [anon_sym_u8] = ACTIONS(631), + [anon_sym_u16] = ACTIONS(631), + [anon_sym_u32] = ACTIONS(631), + [anon_sym_u64] = ACTIONS(631), + [anon_sym_isize] = ACTIONS(631), + [anon_sym_usize] = ACTIONS(631), + [anon_sym_f32] = ACTIONS(631), + [anon_sym_f64] = ACTIONS(631), + [anon_sym_c_char] = ACTIONS(631), + [anon_sym_c_schar] = ACTIONS(631), + [anon_sym_c_uchar] = ACTIONS(631), + [anon_sym_c_short] = ACTIONS(631), + [anon_sym_c_ushort] = ACTIONS(631), + [anon_sym_c_int] = ACTIONS(631), + [anon_sym_c_uint] = ACTIONS(631), + [anon_sym_c_long] = ACTIONS(631), + [anon_sym_c_ulong] = ACTIONS(631), + [anon_sym_c_longlong] = ACTIONS(631), + [anon_sym_c_ulonglong] = ACTIONS(631), + [anon_sym_c_float] = ACTIONS(631), + [anon_sym_c_double] = ACTIONS(631), + [anon_sym_c_longdouble] = ACTIONS(631), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_xor_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(629), + [anon_sym_return] = ACTIONS(631), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_defer] = ACTIONS(631), + [anon_sym_errdefer] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_else] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_expand] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_match] = ACTIONS(631), + [anon_sym_DOT_DOT] = ACTIONS(631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(629), + [anon_sym_orelse] = ACTIONS(631), + [anon_sym_catch] = ACTIONS(631), + [anon_sym_or] = ACTIONS(631), + [anon_sym_and] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_xor] = ACTIONS(631), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(631), + [anon_sym_LT_LT_PIPE] = ACTIONS(631), + [anon_sym_PLUS] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(631), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_try] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_true] = ACTIONS(631), + [anon_sym_false] = ACTIONS(631), + [sym_none] = ACTIONS(631), + [sym_undefined] = ACTIONS(631), + [sym_sink] = ACTIONS(631), + [sym_integer] = ACTIONS(631), + [sym_float] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_multiline_string] = ACTIONS(629), + [sym_character] = ACTIONS(629), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(629), }, - [STATE(156)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1617), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1617), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(157)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(631), - }, - [STATE(158)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(159)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(165), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(99)] = { + [ts_builtin_sym_end] = ACTIONS(633), + [sym_identifier] = ACTIONS(635), + [anon_sym_import] = ACTIONS(635), + [anon_sym_test] = ACTIONS(635), + [anon_sym_hide] = ACTIONS(635), + [anon_sym_func] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(635), + [anon_sym_struct] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_void] = ACTIONS(635), + [anon_sym_anyopaque] = ACTIONS(635), + [anon_sym_bool] = ACTIONS(635), + [anon_sym_int] = ACTIONS(635), + [anon_sym_uint] = ACTIONS(635), + [anon_sym_float] = ACTIONS(635), + [anon_sym_range] = ACTIONS(635), + [anon_sym_i8] = ACTIONS(635), + [anon_sym_i16] = ACTIONS(635), + [anon_sym_i32] = ACTIONS(635), + [anon_sym_i64] = ACTIONS(635), + [anon_sym_u8] = ACTIONS(635), + [anon_sym_u16] = ACTIONS(635), + [anon_sym_u32] = ACTIONS(635), + [anon_sym_u64] = ACTIONS(635), + [anon_sym_isize] = ACTIONS(635), + [anon_sym_usize] = ACTIONS(635), + [anon_sym_f32] = ACTIONS(635), + [anon_sym_f64] = ACTIONS(635), + [anon_sym_c_char] = ACTIONS(635), + [anon_sym_c_schar] = ACTIONS(635), + [anon_sym_c_uchar] = ACTIONS(635), + [anon_sym_c_short] = ACTIONS(635), + [anon_sym_c_ushort] = ACTIONS(635), + [anon_sym_c_int] = ACTIONS(635), + [anon_sym_c_uint] = ACTIONS(635), + [anon_sym_c_long] = ACTIONS(635), + [anon_sym_c_ulong] = ACTIONS(635), + [anon_sym_c_longlong] = ACTIONS(635), + [anon_sym_c_ulonglong] = ACTIONS(635), + [anon_sym_c_float] = ACTIONS(635), + [anon_sym_c_double] = ACTIONS(635), + [anon_sym_c_longdouble] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(633), + [anon_sym_DASH_EQ] = ACTIONS(633), + [anon_sym_STAR_EQ] = ACTIONS(633), + [anon_sym_SLASH_EQ] = ACTIONS(633), + [anon_sym_AMP_EQ] = ACTIONS(633), + [anon_sym_PIPE_EQ] = ACTIONS(633), + [anon_sym_xor_EQ] = ACTIONS(633), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_GT_GT_EQ] = ACTIONS(633), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(633), + [anon_sym_return] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(635), + [anon_sym_break] = ACTIONS(635), + [anon_sym_continue] = ACTIONS(635), + [anon_sym_defer] = ACTIONS(635), + [anon_sym_errdefer] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_expand] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_match] = ACTIONS(635), + [anon_sym_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(633), + [anon_sym_orelse] = ACTIONS(635), + [anon_sym_catch] = ACTIONS(635), + [anon_sym_or] = ACTIONS(635), + [anon_sym_and] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(633), + [anon_sym_BANG_EQ] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(635), + [anon_sym_xor] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(635), + [anon_sym_LT_LT_PIPE] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_try] = ACTIONS(635), + [anon_sym_DOT] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_true] = ACTIONS(635), + [anon_sym_false] = ACTIONS(635), + [sym_none] = ACTIONS(635), + [sym_undefined] = ACTIONS(635), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(635), + [sym_float] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [sym_multiline_string] = ACTIONS(633), + [sym_character] = ACTIONS(633), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(633), }, - [STATE(160)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1618), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1618), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(161)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(167), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(635), - }, - [STATE(162)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(163)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(169), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(100)] = { + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(639), + [anon_sym_import] = ACTIONS(639), + [anon_sym_test] = ACTIONS(639), + [anon_sym_hide] = ACTIONS(639), + [anon_sym_func] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(639), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(639), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_void] = ACTIONS(639), + [anon_sym_anyopaque] = ACTIONS(639), + [anon_sym_bool] = ACTIONS(639), + [anon_sym_int] = ACTIONS(639), + [anon_sym_uint] = ACTIONS(639), + [anon_sym_float] = ACTIONS(639), + [anon_sym_range] = ACTIONS(639), + [anon_sym_i8] = ACTIONS(639), + [anon_sym_i16] = ACTIONS(639), + [anon_sym_i32] = ACTIONS(639), + [anon_sym_i64] = ACTIONS(639), + [anon_sym_u8] = ACTIONS(639), + [anon_sym_u16] = ACTIONS(639), + [anon_sym_u32] = ACTIONS(639), + [anon_sym_u64] = ACTIONS(639), + [anon_sym_isize] = ACTIONS(639), + [anon_sym_usize] = ACTIONS(639), + [anon_sym_f32] = ACTIONS(639), + [anon_sym_f64] = ACTIONS(639), + [anon_sym_c_char] = ACTIONS(639), + [anon_sym_c_schar] = ACTIONS(639), + [anon_sym_c_uchar] = ACTIONS(639), + [anon_sym_c_short] = ACTIONS(639), + [anon_sym_c_ushort] = ACTIONS(639), + [anon_sym_c_int] = ACTIONS(639), + [anon_sym_c_uint] = ACTIONS(639), + [anon_sym_c_long] = ACTIONS(639), + [anon_sym_c_ulong] = ACTIONS(639), + [anon_sym_c_longlong] = ACTIONS(639), + [anon_sym_c_ulonglong] = ACTIONS(639), + [anon_sym_c_float] = ACTIONS(639), + [anon_sym_c_double] = ACTIONS(639), + [anon_sym_c_longdouble] = ACTIONS(639), + [anon_sym_PLUS_EQ] = ACTIONS(637), + [anon_sym_DASH_EQ] = ACTIONS(637), + [anon_sym_STAR_EQ] = ACTIONS(637), + [anon_sym_SLASH_EQ] = ACTIONS(637), + [anon_sym_AMP_EQ] = ACTIONS(637), + [anon_sym_PIPE_EQ] = ACTIONS(637), + [anon_sym_xor_EQ] = ACTIONS(637), + [anon_sym_LT_LT_EQ] = ACTIONS(637), + [anon_sym_GT_GT_EQ] = ACTIONS(637), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(637), + [anon_sym_return] = ACTIONS(639), + [anon_sym_yield] = ACTIONS(639), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_defer] = ACTIONS(639), + [anon_sym_errdefer] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_else] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_expand] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_match] = ACTIONS(639), + [anon_sym_DOT_DOT] = ACTIONS(639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(637), + [anon_sym_orelse] = ACTIONS(639), + [anon_sym_catch] = ACTIONS(639), + [anon_sym_or] = ACTIONS(639), + [anon_sym_and] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(639), + [anon_sym_xor] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(639), + [anon_sym_LT_LT_PIPE] = ACTIONS(639), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_SLASH] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_try] = ACTIONS(639), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_true] = ACTIONS(639), + [anon_sym_false] = ACTIONS(639), + [sym_none] = ACTIONS(639), + [sym_undefined] = ACTIONS(639), + [sym_sink] = ACTIONS(639), + [sym_integer] = ACTIONS(639), + [sym_float] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_multiline_string] = ACTIONS(637), + [sym_character] = ACTIONS(637), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(637), }, - [STATE(164)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(170), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(639), - }, - [STATE(165)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(166)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(101)] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [anon_sym_import] = ACTIONS(643), + [anon_sym_test] = ACTIONS(643), + [anon_sym_hide] = ACTIONS(643), + [anon_sym_func] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(641), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_void] = ACTIONS(643), + [anon_sym_anyopaque] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_int] = ACTIONS(643), + [anon_sym_uint] = ACTIONS(643), + [anon_sym_float] = ACTIONS(643), + [anon_sym_range] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_c_char] = ACTIONS(643), + [anon_sym_c_schar] = ACTIONS(643), + [anon_sym_c_uchar] = ACTIONS(643), + [anon_sym_c_short] = ACTIONS(643), + [anon_sym_c_ushort] = ACTIONS(643), + [anon_sym_c_int] = ACTIONS(643), + [anon_sym_c_uint] = ACTIONS(643), + [anon_sym_c_long] = ACTIONS(643), + [anon_sym_c_ulong] = ACTIONS(643), + [anon_sym_c_longlong] = ACTIONS(643), + [anon_sym_c_ulonglong] = ACTIONS(643), + [anon_sym_c_float] = ACTIONS(643), + [anon_sym_c_double] = ACTIONS(643), + [anon_sym_c_longdouble] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(641), + [anon_sym_DASH_EQ] = ACTIONS(641), + [anon_sym_STAR_EQ] = ACTIONS(641), + [anon_sym_SLASH_EQ] = ACTIONS(641), + [anon_sym_AMP_EQ] = ACTIONS(641), + [anon_sym_PIPE_EQ] = ACTIONS(641), + [anon_sym_xor_EQ] = ACTIONS(641), + [anon_sym_LT_LT_EQ] = ACTIONS(641), + [anon_sym_GT_GT_EQ] = ACTIONS(641), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(641), + [anon_sym_return] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_defer] = ACTIONS(643), + [anon_sym_errdefer] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [anon_sym_expand] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(641), + [anon_sym_orelse] = ACTIONS(643), + [anon_sym_catch] = ACTIONS(643), + [anon_sym_or] = ACTIONS(643), + [anon_sym_and] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), + [anon_sym_xor] = ACTIONS(643), + [anon_sym_LT_LT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(643), + [anon_sym_LT_LT_PIPE] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_try] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym_true] = ACTIONS(643), + [anon_sym_false] = ACTIONS(643), + [sym_none] = ACTIONS(643), + [sym_undefined] = ACTIONS(643), + [sym_sink] = ACTIONS(643), + [sym_integer] = ACTIONS(643), + [sym_float] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_multiline_string] = ACTIONS(641), + [sym_character] = ACTIONS(641), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(641), }, - [STATE(167)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), + [STATE(102)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2525), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2525), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -28759,861 +24548,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), + [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(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(168)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(175), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(643), - }, - [STATE(169)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(170)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(171)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(176), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(103)] = { + [ts_builtin_sym_end] = ACTIONS(645), + [sym_identifier] = ACTIONS(647), + [anon_sym_import] = ACTIONS(647), + [anon_sym_test] = ACTIONS(647), + [anon_sym_hide] = ACTIONS(647), + [anon_sym_func] = ACTIONS(647), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_EQ] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_COMMA] = ACTIONS(645), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_QMARK] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_void] = ACTIONS(647), + [anon_sym_anyopaque] = ACTIONS(647), + [anon_sym_bool] = ACTIONS(647), + [anon_sym_int] = ACTIONS(647), + [anon_sym_uint] = ACTIONS(647), + [anon_sym_float] = ACTIONS(647), + [anon_sym_range] = ACTIONS(647), + [anon_sym_i8] = ACTIONS(647), + [anon_sym_i16] = ACTIONS(647), + [anon_sym_i32] = ACTIONS(647), + [anon_sym_i64] = ACTIONS(647), + [anon_sym_u8] = ACTIONS(647), + [anon_sym_u16] = ACTIONS(647), + [anon_sym_u32] = ACTIONS(647), + [anon_sym_u64] = ACTIONS(647), + [anon_sym_isize] = ACTIONS(647), + [anon_sym_usize] = ACTIONS(647), + [anon_sym_f32] = ACTIONS(647), + [anon_sym_f64] = ACTIONS(647), + [anon_sym_c_char] = ACTIONS(647), + [anon_sym_c_schar] = ACTIONS(647), + [anon_sym_c_uchar] = ACTIONS(647), + [anon_sym_c_short] = ACTIONS(647), + [anon_sym_c_ushort] = ACTIONS(647), + [anon_sym_c_int] = ACTIONS(647), + [anon_sym_c_uint] = ACTIONS(647), + [anon_sym_c_long] = ACTIONS(647), + [anon_sym_c_ulong] = ACTIONS(647), + [anon_sym_c_longlong] = ACTIONS(647), + [anon_sym_c_ulonglong] = ACTIONS(647), + [anon_sym_c_float] = ACTIONS(647), + [anon_sym_c_double] = ACTIONS(647), + [anon_sym_c_longdouble] = ACTIONS(647), + [anon_sym_PLUS_EQ] = ACTIONS(645), + [anon_sym_DASH_EQ] = ACTIONS(645), + [anon_sym_STAR_EQ] = ACTIONS(645), + [anon_sym_SLASH_EQ] = ACTIONS(645), + [anon_sym_AMP_EQ] = ACTIONS(645), + [anon_sym_PIPE_EQ] = ACTIONS(645), + [anon_sym_xor_EQ] = ACTIONS(645), + [anon_sym_LT_LT_EQ] = ACTIONS(645), + [anon_sym_GT_GT_EQ] = ACTIONS(645), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(645), + [anon_sym_return] = ACTIONS(647), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_break] = ACTIONS(647), + [anon_sym_continue] = ACTIONS(647), + [anon_sym_defer] = ACTIONS(647), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(647), + [anon_sym_while] = ACTIONS(647), + [anon_sym_expand] = ACTIONS(647), + [anon_sym_for] = ACTIONS(647), + [anon_sym_match] = ACTIONS(647), + [anon_sym_DOT_DOT] = ACTIONS(647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(645), + [anon_sym_orelse] = ACTIONS(647), + [anon_sym_catch] = ACTIONS(647), + [anon_sym_or] = ACTIONS(647), + [anon_sym_and] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_xor] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_LT_LT_PIPE] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(647), + [anon_sym_SLASH] = ACTIONS(647), + [anon_sym_TILDE] = ACTIONS(645), + [anon_sym_try] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(647), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_true] = ACTIONS(647), + [anon_sym_false] = ACTIONS(647), + [sym_none] = ACTIONS(647), + [sym_undefined] = ACTIONS(647), + [sym_sink] = ACTIONS(647), + [sym_integer] = ACTIONS(647), + [sym_float] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [sym_multiline_string] = ACTIONS(645), + [sym_character] = ACTIONS(645), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(645), }, - [STATE(172)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(173)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(177), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(647), - }, - [STATE(174)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(104)] = { + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_import] = ACTIONS(651), + [anon_sym_test] = ACTIONS(651), + [anon_sym_hide] = ACTIONS(651), + [anon_sym_func] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_struct] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(651), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_void] = ACTIONS(651), + [anon_sym_anyopaque] = ACTIONS(651), + [anon_sym_bool] = ACTIONS(651), + [anon_sym_int] = ACTIONS(651), + [anon_sym_uint] = ACTIONS(651), + [anon_sym_float] = ACTIONS(651), + [anon_sym_range] = ACTIONS(651), + [anon_sym_i8] = ACTIONS(651), + [anon_sym_i16] = ACTIONS(651), + [anon_sym_i32] = ACTIONS(651), + [anon_sym_i64] = ACTIONS(651), + [anon_sym_u8] = ACTIONS(651), + [anon_sym_u16] = ACTIONS(651), + [anon_sym_u32] = ACTIONS(651), + [anon_sym_u64] = ACTIONS(651), + [anon_sym_isize] = ACTIONS(651), + [anon_sym_usize] = ACTIONS(651), + [anon_sym_f32] = ACTIONS(651), + [anon_sym_f64] = ACTIONS(651), + [anon_sym_c_char] = ACTIONS(651), + [anon_sym_c_schar] = ACTIONS(651), + [anon_sym_c_uchar] = ACTIONS(651), + [anon_sym_c_short] = ACTIONS(651), + [anon_sym_c_ushort] = ACTIONS(651), + [anon_sym_c_int] = ACTIONS(651), + [anon_sym_c_uint] = ACTIONS(651), + [anon_sym_c_long] = ACTIONS(651), + [anon_sym_c_ulong] = ACTIONS(651), + [anon_sym_c_longlong] = ACTIONS(651), + [anon_sym_c_ulonglong] = ACTIONS(651), + [anon_sym_c_float] = ACTIONS(651), + [anon_sym_c_double] = ACTIONS(651), + [anon_sym_c_longdouble] = ACTIONS(651), + [anon_sym_PLUS_EQ] = ACTIONS(649), + [anon_sym_DASH_EQ] = ACTIONS(649), + [anon_sym_STAR_EQ] = ACTIONS(649), + [anon_sym_SLASH_EQ] = ACTIONS(649), + [anon_sym_AMP_EQ] = ACTIONS(649), + [anon_sym_PIPE_EQ] = ACTIONS(649), + [anon_sym_xor_EQ] = ACTIONS(649), + [anon_sym_LT_LT_EQ] = ACTIONS(649), + [anon_sym_GT_GT_EQ] = ACTIONS(649), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_defer] = ACTIONS(651), + [anon_sym_errdefer] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_else] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_expand] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_match] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT_EQ] = ACTIONS(649), + [anon_sym_orelse] = ACTIONS(651), + [anon_sym_catch] = ACTIONS(651), + [anon_sym_or] = ACTIONS(651), + [anon_sym_and] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(651), + [anon_sym_xor] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(651), + [anon_sym_LT_LT_PIPE] = ACTIONS(651), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_SLASH] = ACTIONS(651), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_try] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_true] = ACTIONS(651), + [anon_sym_false] = ACTIONS(651), + [sym_none] = ACTIONS(651), + [sym_undefined] = ACTIONS(651), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(651), + [sym_float] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_multiline_string] = ACTIONS(649), + [sym_character] = ACTIONS(649), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(649), }, - [STATE(175)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), + [STATE(105)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -29647,1416 +24884,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(176)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(177)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(178)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(179)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(651), - }, - [STATE(180)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(181)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1288), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1288), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(653), }, - [STATE(182)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1288), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1288), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(183)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1294), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1294), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(184)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1296), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1296), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(186), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(106)] = { + [ts_builtin_sym_end] = ACTIONS(655), + [sym_identifier] = ACTIONS(657), + [anon_sym_import] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_hide] = ACTIONS(657), + [anon_sym_func] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_EQ] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_COMMA] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(657), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_STAR] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_void] = ACTIONS(657), + [anon_sym_anyopaque] = ACTIONS(657), + [anon_sym_bool] = ACTIONS(657), + [anon_sym_int] = ACTIONS(657), + [anon_sym_uint] = ACTIONS(657), + [anon_sym_float] = ACTIONS(657), + [anon_sym_range] = ACTIONS(657), + [anon_sym_i8] = ACTIONS(657), + [anon_sym_i16] = ACTIONS(657), + [anon_sym_i32] = ACTIONS(657), + [anon_sym_i64] = ACTIONS(657), + [anon_sym_u8] = ACTIONS(657), + [anon_sym_u16] = ACTIONS(657), + [anon_sym_u32] = ACTIONS(657), + [anon_sym_u64] = ACTIONS(657), + [anon_sym_isize] = ACTIONS(657), + [anon_sym_usize] = ACTIONS(657), + [anon_sym_f32] = ACTIONS(657), + [anon_sym_f64] = ACTIONS(657), + [anon_sym_c_char] = ACTIONS(657), + [anon_sym_c_schar] = ACTIONS(657), + [anon_sym_c_uchar] = ACTIONS(657), + [anon_sym_c_short] = ACTIONS(657), + [anon_sym_c_ushort] = ACTIONS(657), + [anon_sym_c_int] = ACTIONS(657), + [anon_sym_c_uint] = ACTIONS(657), + [anon_sym_c_long] = ACTIONS(657), + [anon_sym_c_ulong] = ACTIONS(657), + [anon_sym_c_longlong] = ACTIONS(657), + [anon_sym_c_ulonglong] = ACTIONS(657), + [anon_sym_c_float] = ACTIONS(657), + [anon_sym_c_double] = ACTIONS(657), + [anon_sym_c_longdouble] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(655), + [anon_sym_DASH_EQ] = ACTIONS(655), + [anon_sym_STAR_EQ] = ACTIONS(655), + [anon_sym_SLASH_EQ] = ACTIONS(655), + [anon_sym_AMP_EQ] = ACTIONS(655), + [anon_sym_PIPE_EQ] = ACTIONS(655), + [anon_sym_xor_EQ] = ACTIONS(655), + [anon_sym_LT_LT_EQ] = ACTIONS(655), + [anon_sym_GT_GT_EQ] = ACTIONS(655), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(655), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(657), + [anon_sym_break] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_errdefer] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_expand] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_match] = ACTIONS(657), + [anon_sym_DOT_DOT] = ACTIONS(657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(655), + [anon_sym_orelse] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_or] = ACTIONS(657), + [anon_sym_and] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(657), + [anon_sym_xor] = ACTIONS(657), + [anon_sym_LT_LT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(657), + [anon_sym_LT_LT_PIPE] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_SLASH] = ACTIONS(657), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_try] = ACTIONS(657), + [anon_sym_DOT] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(655), + [anon_sym_true] = ACTIONS(657), + [anon_sym_false] = ACTIONS(657), + [sym_none] = ACTIONS(657), + [sym_undefined] = ACTIONS(657), + [sym_sink] = ACTIONS(657), + [sym_integer] = ACTIONS(657), + [sym_float] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(655), + [sym_multiline_string] = ACTIONS(655), + [sym_character] = ACTIONS(655), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(655), }, - [STATE(185)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1296), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1296), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(186)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1290), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1290), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(187)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(50), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_block_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(107)] = { + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [anon_sym_import] = ACTIONS(661), + [anon_sym_test] = ACTIONS(661), + [anon_sym_hide] = ACTIONS(661), + [anon_sym_func] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_EQ] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_COMMA] = ACTIONS(659), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(661), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_void] = ACTIONS(661), + [anon_sym_anyopaque] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_int] = ACTIONS(661), + [anon_sym_uint] = ACTIONS(661), + [anon_sym_float] = ACTIONS(661), + [anon_sym_range] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_c_char] = ACTIONS(661), + [anon_sym_c_schar] = ACTIONS(661), + [anon_sym_c_uchar] = ACTIONS(661), + [anon_sym_c_short] = ACTIONS(661), + [anon_sym_c_ushort] = ACTIONS(661), + [anon_sym_c_int] = ACTIONS(661), + [anon_sym_c_uint] = ACTIONS(661), + [anon_sym_c_long] = ACTIONS(661), + [anon_sym_c_ulong] = ACTIONS(661), + [anon_sym_c_longlong] = ACTIONS(661), + [anon_sym_c_ulonglong] = ACTIONS(661), + [anon_sym_c_float] = ACTIONS(661), + [anon_sym_c_double] = ACTIONS(661), + [anon_sym_c_longdouble] = ACTIONS(661), + [anon_sym_PLUS_EQ] = ACTIONS(659), + [anon_sym_DASH_EQ] = ACTIONS(659), + [anon_sym_STAR_EQ] = ACTIONS(659), + [anon_sym_SLASH_EQ] = ACTIONS(659), + [anon_sym_AMP_EQ] = ACTIONS(659), + [anon_sym_PIPE_EQ] = ACTIONS(659), + [anon_sym_xor_EQ] = ACTIONS(659), + [anon_sym_LT_LT_EQ] = ACTIONS(659), + [anon_sym_GT_GT_EQ] = ACTIONS(659), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(659), + [anon_sym_return] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_else] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_expand] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(659), + [anon_sym_orelse] = ACTIONS(661), + [anon_sym_catch] = ACTIONS(661), + [anon_sym_or] = ACTIONS(661), + [anon_sym_and] = ACTIONS(661), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_xor] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(661), + [anon_sym_LT_LT_PIPE] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(661), + [anon_sym_SLASH] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_try] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(659), + [anon_sym_true] = ACTIONS(661), + [anon_sym_false] = ACTIONS(661), + [sym_none] = ACTIONS(661), + [sym_undefined] = ACTIONS(661), + [sym_sink] = ACTIONS(661), + [sym_integer] = ACTIONS(661), + [sym_float] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_multiline_string] = ACTIONS(659), + [sym_character] = ACTIONS(659), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(659), }, - [STATE(188)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1786), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1786), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(190), - [sym_identifier] = ACTIONS(129), + [STATE(108)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1744), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1744), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -31090,417 +25220,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(661), - }, - [STATE(189)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1786), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1786), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(190)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1788), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1788), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(191)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1789), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1789), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(663), }, - [STATE(192)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1789), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1789), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), + [STATE(109)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(109), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(665), + [anon_sym_func] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(671), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_LPAREN] = ACTIONS(677), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(688), + [anon_sym_void] = ACTIONS(691), + [anon_sym_anyopaque] = ACTIONS(691), + [anon_sym_bool] = ACTIONS(691), + [anon_sym_int] = ACTIONS(691), + [anon_sym_uint] = ACTIONS(691), + [anon_sym_float] = ACTIONS(691), + [anon_sym_range] = ACTIONS(691), + [anon_sym_i8] = ACTIONS(691), + [anon_sym_i16] = ACTIONS(691), + [anon_sym_i32] = ACTIONS(691), + [anon_sym_i64] = ACTIONS(691), + [anon_sym_u8] = ACTIONS(691), + [anon_sym_u16] = ACTIONS(691), + [anon_sym_u32] = ACTIONS(691), + [anon_sym_u64] = ACTIONS(691), + [anon_sym_isize] = ACTIONS(691), + [anon_sym_usize] = ACTIONS(691), + [anon_sym_f32] = ACTIONS(691), + [anon_sym_f64] = ACTIONS(691), + [anon_sym_c_char] = ACTIONS(691), + [anon_sym_c_schar] = ACTIONS(691), + [anon_sym_c_uchar] = ACTIONS(691), + [anon_sym_c_short] = ACTIONS(691), + [anon_sym_c_ushort] = ACTIONS(691), + [anon_sym_c_int] = ACTIONS(691), + [anon_sym_c_uint] = ACTIONS(691), + [anon_sym_c_long] = ACTIONS(691), + [anon_sym_c_ulong] = ACTIONS(691), + [anon_sym_c_longlong] = ACTIONS(691), + [anon_sym_c_ulonglong] = ACTIONS(691), + [anon_sym_c_float] = ACTIONS(691), + [anon_sym_c_double] = ACTIONS(691), + [anon_sym_c_longdouble] = ACTIONS(691), + [anon_sym_return] = ACTIONS(694), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_defer] = ACTIONS(706), + [anon_sym_errdefer] = ACTIONS(709), + [anon_sym_if] = ACTIONS(712), + [anon_sym_while] = ACTIONS(715), + [anon_sym_expand] = ACTIONS(718), + [anon_sym_for] = ACTIONS(721), + [anon_sym_match] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(671), + [anon_sym_TILDE] = ACTIONS(671), + [anon_sym_try] = ACTIONS(727), + [anon_sym_DOT] = ACTIONS(730), + [anon_sym_true] = ACTIONS(733), + [anon_sym_false] = ACTIONS(733), + [sym_none] = ACTIONS(736), + [sym_undefined] = ACTIONS(736), + [sym_sink] = ACTIONS(739), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(745), + [sym_multiline_string] = ACTIONS(742), + [sym_character] = ACTIONS(742), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(748), + }, + [STATE(110)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2755), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2755), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(133), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -31534,10407 +25444,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(193)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1790), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1790), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(194)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1867), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1867), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(665), - }, - [STATE(195)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1867), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1867), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(196)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1874), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1874), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(197)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1876), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1876), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(667), - }, - [STATE(198)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1876), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1876), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(199)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1882), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1882), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(200)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1931), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1931), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(669), - }, - [STATE(201)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1931), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1931), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(202)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1963), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1963), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(203)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1967), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1967), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(671), - }, - [STATE(204)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1967), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1967), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(205)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(206)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(673), - }, - [STATE(207)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(675), - }, - [STATE(208)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(209)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(677), - }, - [STATE(210)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(216), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(679), - }, - [STATE(211)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(212)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(681), - }, - [STATE(213)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(683), - }, - [STATE(214)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(215)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(685), - }, - [STATE(216)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(217)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(687), - }, - [STATE(218)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(219)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(220)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(225), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(689), - }, - [STATE(221)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(222)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(226), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(691), - }, - [STATE(223)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(693), - }, - [STATE(224)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(225)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(226)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(227)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(228)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(695), - }, - [STATE(229)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(230)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(232), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(697), - }, - [STATE(231)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(699), - }, - [STATE(232)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(233)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(701), - }, - [STATE(234)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(703), - }, - [STATE(235)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(236)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(242), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(705), - }, - [STATE(237)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(707), - }, - [STATE(238)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(239)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(245), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(709), - }, - [STATE(240)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(241)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(711), - }, - [STATE(242)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(243)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(244)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(713), - }, - [STATE(245)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(246)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(250), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(715), - }, - [STATE(247)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(717), - }, - [STATE(248)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(249)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(250)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(251)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(252)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(719), - }, - [STATE(253)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(254)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(256), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(721), - }, - [STATE(255)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(723), - }, - [STATE(256)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(257)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(262), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(725), - }, - [STATE(258)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(727), - }, - [STATE(259)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(260)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(266), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(729), - }, - [STATE(261)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(731), - }, - [STATE(262)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(263)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(733), - }, - [STATE(264)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(265)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(735), - }, - [STATE(266)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(267)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(268)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(737), - }, - [STATE(269)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(270)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(739), - }, - [STATE(271)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(741), - }, - [STATE(272)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(273)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(274)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(275)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(276)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(277), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(743), - }, - [STATE(277)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(278)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1310), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1310), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(745), - }, - [STATE(279)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1310), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1310), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(280)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1312), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1312), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(281)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1307), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1307), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(283), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(747), - }, - [STATE(282)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1307), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1307), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(283)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1314), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1314), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(284)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(286), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(749), - }, - [STATE(285)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(751), }, - [STATE(286)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(111)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2755), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2755), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -41968,84 +25556,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [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_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(287)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(292), - [sym_identifier] = ACTIONS(197), + [STATE(112)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2536), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2536), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -42079,528 +25668,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [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_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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(753), }, - [STATE(288)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(113)] = { + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(757), + [anon_sym_import] = ACTIONS(757), + [anon_sym_test] = ACTIONS(757), + [anon_sym_hide] = ACTIONS(757), + [anon_sym_func] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_void] = ACTIONS(757), + [anon_sym_anyopaque] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_int] = ACTIONS(757), + [anon_sym_uint] = ACTIONS(757), + [anon_sym_float] = ACTIONS(757), + [anon_sym_range] = ACTIONS(757), + [anon_sym_i8] = ACTIONS(757), + [anon_sym_i16] = ACTIONS(757), + [anon_sym_i32] = ACTIONS(757), + [anon_sym_i64] = ACTIONS(757), + [anon_sym_u8] = ACTIONS(757), + [anon_sym_u16] = ACTIONS(757), + [anon_sym_u32] = ACTIONS(757), + [anon_sym_u64] = ACTIONS(757), + [anon_sym_isize] = ACTIONS(757), + [anon_sym_usize] = ACTIONS(757), + [anon_sym_f32] = ACTIONS(757), + [anon_sym_f64] = ACTIONS(757), + [anon_sym_c_char] = ACTIONS(757), + [anon_sym_c_schar] = ACTIONS(757), + [anon_sym_c_uchar] = ACTIONS(757), + [anon_sym_c_short] = ACTIONS(757), + [anon_sym_c_ushort] = ACTIONS(757), + [anon_sym_c_int] = ACTIONS(757), + [anon_sym_c_uint] = ACTIONS(757), + [anon_sym_c_long] = ACTIONS(757), + [anon_sym_c_ulong] = ACTIONS(757), + [anon_sym_c_longlong] = ACTIONS(757), + [anon_sym_c_ulonglong] = ACTIONS(757), + [anon_sym_c_float] = ACTIONS(757), + [anon_sym_c_double] = ACTIONS(757), + [anon_sym_c_longdouble] = ACTIONS(757), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_AMP_EQ] = ACTIONS(755), + [anon_sym_PIPE_EQ] = ACTIONS(755), + [anon_sym_xor_EQ] = ACTIONS(755), + [anon_sym_LT_LT_EQ] = ACTIONS(755), + [anon_sym_GT_GT_EQ] = ACTIONS(755), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(755), + [anon_sym_return] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(757), + [anon_sym_break] = ACTIONS(757), + [anon_sym_continue] = ACTIONS(757), + [anon_sym_defer] = ACTIONS(757), + [anon_sym_errdefer] = ACTIONS(757), + [anon_sym_if] = ACTIONS(757), + [anon_sym_else] = ACTIONS(757), + [anon_sym_while] = ACTIONS(757), + [anon_sym_expand] = ACTIONS(757), + [anon_sym_for] = ACTIONS(757), + [anon_sym_match] = ACTIONS(757), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(755), + [anon_sym_orelse] = ACTIONS(757), + [anon_sym_catch] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(757), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_LT_LT] = ACTIONS(757), + [anon_sym_GT_GT] = ACTIONS(757), + [anon_sym_LT_LT_PIPE] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(757), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_try] = ACTIONS(757), + [anon_sym_DOT] = ACTIONS(757), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_true] = ACTIONS(757), + [anon_sym_false] = ACTIONS(757), + [sym_none] = ACTIONS(757), + [sym_undefined] = ACTIONS(757), + [sym_sink] = ACTIONS(757), + [sym_integer] = ACTIONS(757), + [sym_float] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [sym_multiline_string] = ACTIONS(755), + [sym_character] = ACTIONS(755), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(755), }, - [STATE(289)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(290)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(757), - }, - [STATE(291)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(114)] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(761), + [anon_sym_import] = ACTIONS(761), + [anon_sym_test] = ACTIONS(761), + [anon_sym_hide] = ACTIONS(761), + [anon_sym_func] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_struct] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(761), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(761), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_void] = ACTIONS(761), + [anon_sym_anyopaque] = ACTIONS(761), + [anon_sym_bool] = ACTIONS(761), + [anon_sym_int] = ACTIONS(761), + [anon_sym_uint] = ACTIONS(761), + [anon_sym_float] = ACTIONS(761), + [anon_sym_range] = ACTIONS(761), + [anon_sym_i8] = ACTIONS(761), + [anon_sym_i16] = ACTIONS(761), + [anon_sym_i32] = ACTIONS(761), + [anon_sym_i64] = ACTIONS(761), + [anon_sym_u8] = ACTIONS(761), + [anon_sym_u16] = ACTIONS(761), + [anon_sym_u32] = ACTIONS(761), + [anon_sym_u64] = ACTIONS(761), + [anon_sym_isize] = ACTIONS(761), + [anon_sym_usize] = ACTIONS(761), + [anon_sym_f32] = ACTIONS(761), + [anon_sym_f64] = ACTIONS(761), + [anon_sym_c_char] = ACTIONS(761), + [anon_sym_c_schar] = ACTIONS(761), + [anon_sym_c_uchar] = ACTIONS(761), + [anon_sym_c_short] = ACTIONS(761), + [anon_sym_c_ushort] = ACTIONS(761), + [anon_sym_c_int] = ACTIONS(761), + [anon_sym_c_uint] = ACTIONS(761), + [anon_sym_c_long] = ACTIONS(761), + [anon_sym_c_ulong] = ACTIONS(761), + [anon_sym_c_longlong] = ACTIONS(761), + [anon_sym_c_ulonglong] = ACTIONS(761), + [anon_sym_c_float] = ACTIONS(761), + [anon_sym_c_double] = ACTIONS(761), + [anon_sym_c_longdouble] = ACTIONS(761), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_AMP_EQ] = ACTIONS(759), + [anon_sym_PIPE_EQ] = ACTIONS(759), + [anon_sym_xor_EQ] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(759), + [anon_sym_GT_GT_EQ] = ACTIONS(759), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(759), + [anon_sym_return] = ACTIONS(761), + [anon_sym_yield] = ACTIONS(761), + [anon_sym_break] = ACTIONS(761), + [anon_sym_continue] = ACTIONS(761), + [anon_sym_defer] = ACTIONS(761), + [anon_sym_errdefer] = ACTIONS(761), + [anon_sym_if] = ACTIONS(761), + [anon_sym_else] = ACTIONS(761), + [anon_sym_while] = ACTIONS(761), + [anon_sym_expand] = ACTIONS(761), + [anon_sym_for] = ACTIONS(761), + [anon_sym_match] = ACTIONS(761), + [anon_sym_DOT_DOT] = ACTIONS(761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(759), + [anon_sym_orelse] = ACTIONS(761), + [anon_sym_catch] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(761), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(761), + [anon_sym_LT_LT_PIPE] = ACTIONS(761), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(761), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_try] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_true] = ACTIONS(761), + [anon_sym_false] = ACTIONS(761), + [sym_none] = ACTIONS(761), + [sym_undefined] = ACTIONS(761), + [sym_sink] = ACTIONS(761), + [sym_integer] = ACTIONS(761), + [sym_float] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [sym_multiline_string] = ACTIONS(759), + [sym_character] = ACTIONS(759), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(759), }, - [STATE(292)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(115)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -42634,84 +26004,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(293)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(197), + [STATE(116)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -42745,306 +26116,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(761), - }, - [STATE(294)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(295)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(302), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(763), }, - [STATE(296)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(117)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43078,306 +26228,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(297)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(298)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(765), }, - [STATE(299)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(118)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43411,84 +26340,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(300)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(197), + [STATE(119)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43522,84 +26452,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(767), }, - [STATE(301)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(197), + [STATE(120)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43633,84 +26564,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [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_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(121)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(769), }, - [STATE(302)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(122)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1739), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1739), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43744,84 +26788,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [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_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(303)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(123)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1739), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1739), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(148), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -43855,2637 +26900,869 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [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_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(304)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(305)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(306)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(307), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(771), }, - [STATE(307)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1217), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1217), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(308)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1266), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1266), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(310), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(124)] = { + [ts_builtin_sym_end] = ACTIONS(773), + [sym_identifier] = ACTIONS(775), + [anon_sym_import] = ACTIONS(775), + [anon_sym_test] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_func] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_struct] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_void] = ACTIONS(775), + [anon_sym_anyopaque] = ACTIONS(775), + [anon_sym_bool] = ACTIONS(775), + [anon_sym_int] = ACTIONS(775), + [anon_sym_uint] = ACTIONS(775), + [anon_sym_float] = ACTIONS(775), + [anon_sym_range] = ACTIONS(775), + [anon_sym_i8] = ACTIONS(775), + [anon_sym_i16] = ACTIONS(775), + [anon_sym_i32] = ACTIONS(775), + [anon_sym_i64] = ACTIONS(775), + [anon_sym_u8] = ACTIONS(775), + [anon_sym_u16] = ACTIONS(775), + [anon_sym_u32] = ACTIONS(775), + [anon_sym_u64] = ACTIONS(775), + [anon_sym_isize] = ACTIONS(775), + [anon_sym_usize] = ACTIONS(775), + [anon_sym_f32] = ACTIONS(775), + [anon_sym_f64] = ACTIONS(775), + [anon_sym_c_char] = ACTIONS(775), + [anon_sym_c_schar] = ACTIONS(775), + [anon_sym_c_uchar] = ACTIONS(775), + [anon_sym_c_short] = ACTIONS(775), + [anon_sym_c_ushort] = ACTIONS(775), + [anon_sym_c_int] = ACTIONS(775), + [anon_sym_c_uint] = ACTIONS(775), + [anon_sym_c_long] = ACTIONS(775), + [anon_sym_c_ulong] = ACTIONS(775), + [anon_sym_c_longlong] = ACTIONS(775), + [anon_sym_c_ulonglong] = ACTIONS(775), + [anon_sym_c_float] = ACTIONS(775), + [anon_sym_c_double] = ACTIONS(775), + [anon_sym_c_longdouble] = ACTIONS(775), + [anon_sym_PLUS_EQ] = ACTIONS(773), + [anon_sym_DASH_EQ] = ACTIONS(773), + [anon_sym_STAR_EQ] = ACTIONS(773), + [anon_sym_SLASH_EQ] = ACTIONS(773), + [anon_sym_AMP_EQ] = ACTIONS(773), + [anon_sym_PIPE_EQ] = ACTIONS(773), + [anon_sym_xor_EQ] = ACTIONS(773), + [anon_sym_LT_LT_EQ] = ACTIONS(773), + [anon_sym_GT_GT_EQ] = ACTIONS(773), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(773), + [anon_sym_return] = ACTIONS(775), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_defer] = ACTIONS(775), + [anon_sym_errdefer] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_else] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_expand] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(773), + [anon_sym_orelse] = ACTIONS(775), + [anon_sym_catch] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_LT_LT_PIPE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_try] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [sym_none] = ACTIONS(775), + [sym_undefined] = ACTIONS(775), + [sym_sink] = ACTIONS(775), + [sym_integer] = ACTIONS(775), + [sym_float] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_multiline_string] = ACTIONS(773), + [sym_character] = ACTIONS(773), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(773), }, - [STATE(309)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1182), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1182), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(313), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(775), - }, - [STATE(310)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(311)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1280), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1280), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(316), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(125)] = { + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [anon_sym_import] = ACTIONS(779), + [anon_sym_test] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_func] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_struct] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_void] = ACTIONS(779), + [anon_sym_anyopaque] = ACTIONS(779), + [anon_sym_bool] = ACTIONS(779), + [anon_sym_int] = ACTIONS(779), + [anon_sym_uint] = ACTIONS(779), + [anon_sym_float] = ACTIONS(779), + [anon_sym_range] = ACTIONS(779), + [anon_sym_i8] = ACTIONS(779), + [anon_sym_i16] = ACTIONS(779), + [anon_sym_i32] = ACTIONS(779), + [anon_sym_i64] = ACTIONS(779), + [anon_sym_u8] = ACTIONS(779), + [anon_sym_u16] = ACTIONS(779), + [anon_sym_u32] = ACTIONS(779), + [anon_sym_u64] = ACTIONS(779), + [anon_sym_isize] = ACTIONS(779), + [anon_sym_usize] = ACTIONS(779), + [anon_sym_f32] = ACTIONS(779), + [anon_sym_f64] = ACTIONS(779), + [anon_sym_c_char] = ACTIONS(779), + [anon_sym_c_schar] = ACTIONS(779), + [anon_sym_c_uchar] = ACTIONS(779), + [anon_sym_c_short] = ACTIONS(779), + [anon_sym_c_ushort] = ACTIONS(779), + [anon_sym_c_int] = ACTIONS(779), + [anon_sym_c_uint] = ACTIONS(779), + [anon_sym_c_long] = ACTIONS(779), + [anon_sym_c_ulong] = ACTIONS(779), + [anon_sym_c_longlong] = ACTIONS(779), + [anon_sym_c_ulonglong] = ACTIONS(779), + [anon_sym_c_float] = ACTIONS(779), + [anon_sym_c_double] = ACTIONS(779), + [anon_sym_c_longdouble] = ACTIONS(779), + [anon_sym_PLUS_EQ] = ACTIONS(777), + [anon_sym_DASH_EQ] = ACTIONS(777), + [anon_sym_STAR_EQ] = ACTIONS(777), + [anon_sym_SLASH_EQ] = ACTIONS(777), + [anon_sym_AMP_EQ] = ACTIONS(777), + [anon_sym_PIPE_EQ] = ACTIONS(777), + [anon_sym_xor_EQ] = ACTIONS(777), + [anon_sym_LT_LT_EQ] = ACTIONS(777), + [anon_sym_GT_GT_EQ] = ACTIONS(777), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(777), + [anon_sym_return] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(779), + [anon_sym_errdefer] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_expand] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(777), + [anon_sym_orelse] = ACTIONS(779), + [anon_sym_catch] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_LT_LT_PIPE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_try] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [sym_none] = ACTIONS(779), + [sym_undefined] = ACTIONS(779), + [sym_sink] = ACTIONS(779), + [sym_integer] = ACTIONS(779), + [sym_float] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_multiline_string] = ACTIONS(777), + [sym_character] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(777), }, - [STATE(312)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1144), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1144), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(318), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(779), - }, - [STATE(313)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(314)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1069), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1069), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(320), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(126)] = { + [ts_builtin_sym_end] = ACTIONS(781), + [sym_identifier] = ACTIONS(783), + [anon_sym_import] = ACTIONS(783), + [anon_sym_test] = ACTIONS(783), + [anon_sym_hide] = ACTIONS(783), + [anon_sym_func] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_EQ] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_COMMA] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(783), + [anon_sym_QMARK] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(781), + [anon_sym_void] = ACTIONS(783), + [anon_sym_anyopaque] = ACTIONS(783), + [anon_sym_bool] = ACTIONS(783), + [anon_sym_int] = ACTIONS(783), + [anon_sym_uint] = ACTIONS(783), + [anon_sym_float] = ACTIONS(783), + [anon_sym_range] = ACTIONS(783), + [anon_sym_i8] = ACTIONS(783), + [anon_sym_i16] = ACTIONS(783), + [anon_sym_i32] = ACTIONS(783), + [anon_sym_i64] = ACTIONS(783), + [anon_sym_u8] = ACTIONS(783), + [anon_sym_u16] = ACTIONS(783), + [anon_sym_u32] = ACTIONS(783), + [anon_sym_u64] = ACTIONS(783), + [anon_sym_isize] = ACTIONS(783), + [anon_sym_usize] = ACTIONS(783), + [anon_sym_f32] = ACTIONS(783), + [anon_sym_f64] = ACTIONS(783), + [anon_sym_c_char] = ACTIONS(783), + [anon_sym_c_schar] = ACTIONS(783), + [anon_sym_c_uchar] = ACTIONS(783), + [anon_sym_c_short] = ACTIONS(783), + [anon_sym_c_ushort] = ACTIONS(783), + [anon_sym_c_int] = ACTIONS(783), + [anon_sym_c_uint] = ACTIONS(783), + [anon_sym_c_long] = ACTIONS(783), + [anon_sym_c_ulong] = ACTIONS(783), + [anon_sym_c_longlong] = ACTIONS(783), + [anon_sym_c_ulonglong] = ACTIONS(783), + [anon_sym_c_float] = ACTIONS(783), + [anon_sym_c_double] = ACTIONS(783), + [anon_sym_c_longdouble] = ACTIONS(783), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_AMP_EQ] = ACTIONS(781), + [anon_sym_PIPE_EQ] = ACTIONS(781), + [anon_sym_xor_EQ] = ACTIONS(781), + [anon_sym_LT_LT_EQ] = ACTIONS(781), + [anon_sym_GT_GT_EQ] = ACTIONS(781), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(781), + [anon_sym_return] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(783), + [anon_sym_break] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(783), + [anon_sym_defer] = ACTIONS(783), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(783), + [anon_sym_else] = ACTIONS(783), + [anon_sym_while] = ACTIONS(783), + [anon_sym_expand] = ACTIONS(783), + [anon_sym_for] = ACTIONS(783), + [anon_sym_match] = ACTIONS(783), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(781), + [anon_sym_orelse] = ACTIONS(783), + [anon_sym_catch] = ACTIONS(783), + [anon_sym_or] = ACTIONS(783), + [anon_sym_and] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_xor] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(783), + [anon_sym_LT_LT_PIPE] = ACTIONS(783), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_try] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_true] = ACTIONS(783), + [anon_sym_false] = ACTIONS(783), + [sym_none] = ACTIONS(783), + [sym_undefined] = ACTIONS(783), + [sym_sink] = ACTIONS(783), + [sym_integer] = ACTIONS(783), + [sym_float] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(781), + [sym_multiline_string] = ACTIONS(781), + [sym_character] = ACTIONS(781), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(781), }, - [STATE(315)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1070), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1070), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(783), - }, - [STATE(316)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1072), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1072), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(317)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1074), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1074), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(323), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(127)] = { + [ts_builtin_sym_end] = ACTIONS(785), + [sym_identifier] = ACTIONS(787), + [anon_sym_import] = ACTIONS(787), + [anon_sym_test] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_func] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_struct] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_void] = ACTIONS(787), + [anon_sym_anyopaque] = ACTIONS(787), + [anon_sym_bool] = ACTIONS(787), + [anon_sym_int] = ACTIONS(787), + [anon_sym_uint] = ACTIONS(787), + [anon_sym_float] = ACTIONS(787), + [anon_sym_range] = ACTIONS(787), + [anon_sym_i8] = ACTIONS(787), + [anon_sym_i16] = ACTIONS(787), + [anon_sym_i32] = ACTIONS(787), + [anon_sym_i64] = ACTIONS(787), + [anon_sym_u8] = ACTIONS(787), + [anon_sym_u16] = ACTIONS(787), + [anon_sym_u32] = ACTIONS(787), + [anon_sym_u64] = ACTIONS(787), + [anon_sym_isize] = ACTIONS(787), + [anon_sym_usize] = ACTIONS(787), + [anon_sym_f32] = ACTIONS(787), + [anon_sym_f64] = ACTIONS(787), + [anon_sym_c_char] = ACTIONS(787), + [anon_sym_c_schar] = ACTIONS(787), + [anon_sym_c_uchar] = ACTIONS(787), + [anon_sym_c_short] = ACTIONS(787), + [anon_sym_c_ushort] = ACTIONS(787), + [anon_sym_c_int] = ACTIONS(787), + [anon_sym_c_uint] = ACTIONS(787), + [anon_sym_c_long] = ACTIONS(787), + [anon_sym_c_ulong] = ACTIONS(787), + [anon_sym_c_longlong] = ACTIONS(787), + [anon_sym_c_ulonglong] = ACTIONS(787), + [anon_sym_c_float] = ACTIONS(787), + [anon_sym_c_double] = ACTIONS(787), + [anon_sym_c_longdouble] = ACTIONS(787), + [anon_sym_PLUS_EQ] = ACTIONS(785), + [anon_sym_DASH_EQ] = ACTIONS(785), + [anon_sym_STAR_EQ] = ACTIONS(785), + [anon_sym_SLASH_EQ] = ACTIONS(785), + [anon_sym_AMP_EQ] = ACTIONS(785), + [anon_sym_PIPE_EQ] = ACTIONS(785), + [anon_sym_xor_EQ] = ACTIONS(785), + [anon_sym_LT_LT_EQ] = ACTIONS(785), + [anon_sym_GT_GT_EQ] = ACTIONS(785), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(785), + [anon_sym_return] = ACTIONS(787), + [anon_sym_yield] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_defer] = ACTIONS(787), + [anon_sym_errdefer] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_expand] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(785), + [anon_sym_orelse] = ACTIONS(787), + [anon_sym_catch] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_LT_LT] = ACTIONS(787), + [anon_sym_GT_GT] = ACTIONS(787), + [anon_sym_LT_LT_PIPE] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_try] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(785), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), + [sym_undefined] = ACTIONS(787), + [sym_sink] = ACTIONS(787), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(785), + [anon_sym_DQUOTE] = ACTIONS(785), + [sym_multiline_string] = ACTIONS(785), + [sym_character] = ACTIONS(785), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(785), }, - [STATE(318)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(319)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1075), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1075), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(787), - }, - [STATE(320)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1139), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1139), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(321)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(322)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1140), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1140), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(327), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(128)] = { + [ts_builtin_sym_end] = ACTIONS(789), + [sym_identifier] = ACTIONS(791), + [anon_sym_import] = ACTIONS(791), + [anon_sym_test] = ACTIONS(791), + [anon_sym_hide] = ACTIONS(791), + [anon_sym_func] = ACTIONS(791), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_struct] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_COMMA] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(791), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(791), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_void] = ACTIONS(791), + [anon_sym_anyopaque] = ACTIONS(791), + [anon_sym_bool] = ACTIONS(791), + [anon_sym_int] = ACTIONS(791), + [anon_sym_uint] = ACTIONS(791), + [anon_sym_float] = ACTIONS(791), + [anon_sym_range] = ACTIONS(791), + [anon_sym_i8] = ACTIONS(791), + [anon_sym_i16] = ACTIONS(791), + [anon_sym_i32] = ACTIONS(791), + [anon_sym_i64] = ACTIONS(791), + [anon_sym_u8] = ACTIONS(791), + [anon_sym_u16] = ACTIONS(791), + [anon_sym_u32] = ACTIONS(791), + [anon_sym_u64] = ACTIONS(791), + [anon_sym_isize] = ACTIONS(791), + [anon_sym_usize] = ACTIONS(791), + [anon_sym_f32] = ACTIONS(791), + [anon_sym_f64] = ACTIONS(791), + [anon_sym_c_char] = ACTIONS(791), + [anon_sym_c_schar] = ACTIONS(791), + [anon_sym_c_uchar] = ACTIONS(791), + [anon_sym_c_short] = ACTIONS(791), + [anon_sym_c_ushort] = ACTIONS(791), + [anon_sym_c_int] = ACTIONS(791), + [anon_sym_c_uint] = ACTIONS(791), + [anon_sym_c_long] = ACTIONS(791), + [anon_sym_c_ulong] = ACTIONS(791), + [anon_sym_c_longlong] = ACTIONS(791), + [anon_sym_c_ulonglong] = ACTIONS(791), + [anon_sym_c_float] = ACTIONS(791), + [anon_sym_c_double] = ACTIONS(791), + [anon_sym_c_longdouble] = ACTIONS(791), + [anon_sym_PLUS_EQ] = ACTIONS(789), + [anon_sym_DASH_EQ] = ACTIONS(789), + [anon_sym_STAR_EQ] = ACTIONS(789), + [anon_sym_SLASH_EQ] = ACTIONS(789), + [anon_sym_AMP_EQ] = ACTIONS(789), + [anon_sym_PIPE_EQ] = ACTIONS(789), + [anon_sym_xor_EQ] = ACTIONS(789), + [anon_sym_LT_LT_EQ] = ACTIONS(789), + [anon_sym_GT_GT_EQ] = ACTIONS(789), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(789), + [anon_sym_return] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(791), + [anon_sym_break] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(791), + [anon_sym_defer] = ACTIONS(791), + [anon_sym_errdefer] = ACTIONS(791), + [anon_sym_if] = ACTIONS(791), + [anon_sym_else] = ACTIONS(791), + [anon_sym_while] = ACTIONS(791), + [anon_sym_expand] = ACTIONS(791), + [anon_sym_for] = ACTIONS(791), + [anon_sym_match] = ACTIONS(791), + [anon_sym_DOT_DOT] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(789), + [anon_sym_orelse] = ACTIONS(791), + [anon_sym_catch] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(791), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_GT_GT] = ACTIONS(791), + [anon_sym_LT_LT_PIPE] = ACTIONS(791), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_try] = ACTIONS(791), + [anon_sym_DOT] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_true] = ACTIONS(791), + [anon_sym_false] = ACTIONS(791), + [sym_none] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [sym_sink] = ACTIONS(791), + [sym_integer] = ACTIONS(791), + [sym_float] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [sym_multiline_string] = ACTIONS(789), + [sym_character] = ACTIONS(789), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(789), }, - [STATE(323)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(324)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1145), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1145), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(791), - }, - [STATE(325)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1147), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1147), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(329), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(129)] = { + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(795), + [anon_sym_import] = ACTIONS(795), + [anon_sym_test] = ACTIONS(795), + [anon_sym_hide] = ACTIONS(795), + [anon_sym_func] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(795), + [anon_sym_struct] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_void] = ACTIONS(795), + [anon_sym_anyopaque] = ACTIONS(795), + [anon_sym_bool] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_uint] = ACTIONS(795), + [anon_sym_float] = ACTIONS(795), + [anon_sym_range] = ACTIONS(795), + [anon_sym_i8] = ACTIONS(795), + [anon_sym_i16] = ACTIONS(795), + [anon_sym_i32] = ACTIONS(795), + [anon_sym_i64] = ACTIONS(795), + [anon_sym_u8] = ACTIONS(795), + [anon_sym_u16] = ACTIONS(795), + [anon_sym_u32] = ACTIONS(795), + [anon_sym_u64] = ACTIONS(795), + [anon_sym_isize] = ACTIONS(795), + [anon_sym_usize] = ACTIONS(795), + [anon_sym_f32] = ACTIONS(795), + [anon_sym_f64] = ACTIONS(795), + [anon_sym_c_char] = ACTIONS(795), + [anon_sym_c_schar] = ACTIONS(795), + [anon_sym_c_uchar] = ACTIONS(795), + [anon_sym_c_short] = ACTIONS(795), + [anon_sym_c_ushort] = ACTIONS(795), + [anon_sym_c_int] = ACTIONS(795), + [anon_sym_c_uint] = ACTIONS(795), + [anon_sym_c_long] = ACTIONS(795), + [anon_sym_c_ulong] = ACTIONS(795), + [anon_sym_c_longlong] = ACTIONS(795), + [anon_sym_c_ulonglong] = ACTIONS(795), + [anon_sym_c_float] = ACTIONS(795), + [anon_sym_c_double] = ACTIONS(795), + [anon_sym_c_longdouble] = ACTIONS(795), + [anon_sym_PLUS_EQ] = ACTIONS(793), + [anon_sym_DASH_EQ] = ACTIONS(793), + [anon_sym_STAR_EQ] = ACTIONS(793), + [anon_sym_SLASH_EQ] = ACTIONS(793), + [anon_sym_AMP_EQ] = ACTIONS(793), + [anon_sym_PIPE_EQ] = ACTIONS(793), + [anon_sym_xor_EQ] = ACTIONS(793), + [anon_sym_LT_LT_EQ] = ACTIONS(793), + [anon_sym_GT_GT_EQ] = ACTIONS(793), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(793), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(795), + [anon_sym_break] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(795), + [anon_sym_defer] = ACTIONS(795), + [anon_sym_errdefer] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_else] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_expand] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_DOT_DOT] = ACTIONS(795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(793), + [anon_sym_orelse] = ACTIONS(795), + [anon_sym_catch] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(795), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_LT_LT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(795), + [anon_sym_LT_LT_PIPE] = ACTIONS(795), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_try] = ACTIONS(795), + [anon_sym_DOT] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [sym_none] = ACTIONS(795), + [sym_undefined] = ACTIONS(795), + [sym_sink] = ACTIONS(795), + [sym_integer] = ACTIONS(795), + [sym_float] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [sym_multiline_string] = ACTIONS(793), + [sym_character] = ACTIONS(793), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(793), }, - [STATE(326)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1149), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1149), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(130)] = { + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(258), + [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_void] = ACTIONS(258), + [anon_sym_anyopaque] = ACTIONS(258), + [anon_sym_bool] = ACTIONS(258), + [anon_sym_int] = ACTIONS(258), + [anon_sym_uint] = ACTIONS(258), + [anon_sym_float] = ACTIONS(258), + [anon_sym_range] = ACTIONS(258), + [anon_sym_i8] = ACTIONS(258), + [anon_sym_i16] = ACTIONS(258), + [anon_sym_i32] = ACTIONS(258), + [anon_sym_i64] = ACTIONS(258), + [anon_sym_u8] = ACTIONS(258), + [anon_sym_u16] = ACTIONS(258), + [anon_sym_u32] = ACTIONS(258), + [anon_sym_u64] = ACTIONS(258), + [anon_sym_isize] = ACTIONS(258), + [anon_sym_usize] = ACTIONS(258), + [anon_sym_f32] = ACTIONS(258), + [anon_sym_f64] = ACTIONS(258), + [anon_sym_c_char] = ACTIONS(258), + [anon_sym_c_schar] = ACTIONS(258), + [anon_sym_c_uchar] = ACTIONS(258), + [anon_sym_c_short] = ACTIONS(258), + [anon_sym_c_ushort] = ACTIONS(258), + [anon_sym_c_int] = ACTIONS(258), + [anon_sym_c_uint] = ACTIONS(258), + [anon_sym_c_long] = ACTIONS(258), + [anon_sym_c_ulong] = ACTIONS(258), + [anon_sym_c_longlong] = ACTIONS(258), + [anon_sym_c_ulonglong] = ACTIONS(258), + [anon_sym_c_float] = ACTIONS(258), + [anon_sym_c_double] = ACTIONS(258), + [anon_sym_c_longdouble] = ACTIONS(258), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(253), }, - [STATE(327)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1183), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1183), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), + [STATE(131)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1738), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1738), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -46519,637 +27796,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(328)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1184), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1184), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(329)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(330)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1186), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1186), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(205), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(795), - }, - [STATE(331)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1968), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym__branch_body] = STATE(1968), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(332)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(797), }, - [STATE(333)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(257), + [STATE(132)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1743), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1743), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47183,83 +27908,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(799), }, - [STATE(334)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(385), - [sym_identifier] = ACTIONS(273), + [STATE(133)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2620), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2620), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47293,83 +28020,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(134)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(801), }, - [STATE(335)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(273), + [STATE(135)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2621), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2621), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47403,83 +28244,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(803), }, - [STATE(336)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), + [STATE(136)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2621), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2621), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47513,193 +28356,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(337)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(137)] = { + [ts_builtin_sym_end] = ACTIONS(805), + [sym_identifier] = ACTIONS(807), + [anon_sym_import] = ACTIONS(807), + [anon_sym_test] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_func] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_struct] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_COMMA] = ACTIONS(805), + [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(807), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_void] = ACTIONS(807), + [anon_sym_anyopaque] = ACTIONS(807), + [anon_sym_bool] = ACTIONS(807), + [anon_sym_int] = ACTIONS(807), + [anon_sym_uint] = ACTIONS(807), + [anon_sym_float] = ACTIONS(807), + [anon_sym_range] = ACTIONS(807), + [anon_sym_i8] = ACTIONS(807), + [anon_sym_i16] = ACTIONS(807), + [anon_sym_i32] = ACTIONS(807), + [anon_sym_i64] = ACTIONS(807), + [anon_sym_u8] = ACTIONS(807), + [anon_sym_u16] = ACTIONS(807), + [anon_sym_u32] = ACTIONS(807), + [anon_sym_u64] = ACTIONS(807), + [anon_sym_isize] = ACTIONS(807), + [anon_sym_usize] = ACTIONS(807), + [anon_sym_f32] = ACTIONS(807), + [anon_sym_f64] = ACTIONS(807), + [anon_sym_c_char] = ACTIONS(807), + [anon_sym_c_schar] = ACTIONS(807), + [anon_sym_c_uchar] = ACTIONS(807), + [anon_sym_c_short] = ACTIONS(807), + [anon_sym_c_ushort] = ACTIONS(807), + [anon_sym_c_int] = ACTIONS(807), + [anon_sym_c_uint] = ACTIONS(807), + [anon_sym_c_long] = ACTIONS(807), + [anon_sym_c_ulong] = ACTIONS(807), + [anon_sym_c_longlong] = ACTIONS(807), + [anon_sym_c_ulonglong] = ACTIONS(807), + [anon_sym_c_float] = ACTIONS(807), + [anon_sym_c_double] = ACTIONS(807), + [anon_sym_c_longdouble] = ACTIONS(807), + [anon_sym_PLUS_EQ] = ACTIONS(805), + [anon_sym_DASH_EQ] = ACTIONS(805), + [anon_sym_STAR_EQ] = ACTIONS(805), + [anon_sym_SLASH_EQ] = ACTIONS(805), + [anon_sym_AMP_EQ] = ACTIONS(805), + [anon_sym_PIPE_EQ] = ACTIONS(805), + [anon_sym_xor_EQ] = ACTIONS(805), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_GT_GT_EQ] = ACTIONS(805), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(805), + [anon_sym_return] = ACTIONS(807), + [anon_sym_yield] = ACTIONS(807), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_defer] = ACTIONS(807), + [anon_sym_errdefer] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_else] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_expand] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(805), + [anon_sym_orelse] = ACTIONS(807), + [anon_sym_catch] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(807), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_LT_LT_PIPE] = ACTIONS(807), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_try] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(805), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [sym_none] = ACTIONS(807), + [sym_undefined] = ACTIONS(807), + [sym_sink] = ACTIONS(807), + [sym_integer] = ACTIONS(807), + [sym_float] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_multiline_string] = ACTIONS(805), + [sym_character] = ACTIONS(805), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(805), }, - [STATE(338)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(336), - [sym_identifier] = ACTIONS(273), + [STATE(138)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2536), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2536), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47733,83 +28580,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(807), + [sym__newline] = ACTIONS(447), }, - [STATE(339)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(340), - [sym_identifier] = ACTIONS(101), + [STATE(139)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -47843,193 +28692,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(140)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(141)] = { + [ts_builtin_sym_end] = ACTIONS(809), + [sym_identifier] = ACTIONS(811), + [anon_sym_import] = ACTIONS(811), + [anon_sym_test] = ACTIONS(811), + [anon_sym_hide] = ACTIONS(811), + [anon_sym_func] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_EQ] = ACTIONS(811), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_RPAREN] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_COMMA] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(811), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_void] = ACTIONS(811), + [anon_sym_anyopaque] = ACTIONS(811), + [anon_sym_bool] = ACTIONS(811), + [anon_sym_int] = ACTIONS(811), + [anon_sym_uint] = ACTIONS(811), + [anon_sym_float] = ACTIONS(811), + [anon_sym_range] = ACTIONS(811), + [anon_sym_i8] = ACTIONS(811), + [anon_sym_i16] = ACTIONS(811), + [anon_sym_i32] = ACTIONS(811), + [anon_sym_i64] = ACTIONS(811), + [anon_sym_u8] = ACTIONS(811), + [anon_sym_u16] = ACTIONS(811), + [anon_sym_u32] = ACTIONS(811), + [anon_sym_u64] = ACTIONS(811), + [anon_sym_isize] = ACTIONS(811), + [anon_sym_usize] = ACTIONS(811), + [anon_sym_f32] = ACTIONS(811), + [anon_sym_f64] = ACTIONS(811), + [anon_sym_c_char] = ACTIONS(811), + [anon_sym_c_schar] = ACTIONS(811), + [anon_sym_c_uchar] = ACTIONS(811), + [anon_sym_c_short] = ACTIONS(811), + [anon_sym_c_ushort] = ACTIONS(811), + [anon_sym_c_int] = ACTIONS(811), + [anon_sym_c_uint] = ACTIONS(811), + [anon_sym_c_long] = ACTIONS(811), + [anon_sym_c_ulong] = ACTIONS(811), + [anon_sym_c_longlong] = ACTIONS(811), + [anon_sym_c_ulonglong] = ACTIONS(811), + [anon_sym_c_float] = ACTIONS(811), + [anon_sym_c_double] = ACTIONS(811), + [anon_sym_c_longdouble] = ACTIONS(811), + [anon_sym_PLUS_EQ] = ACTIONS(809), + [anon_sym_DASH_EQ] = ACTIONS(809), + [anon_sym_STAR_EQ] = ACTIONS(809), + [anon_sym_SLASH_EQ] = ACTIONS(809), + [anon_sym_AMP_EQ] = ACTIONS(809), + [anon_sym_PIPE_EQ] = ACTIONS(809), + [anon_sym_xor_EQ] = ACTIONS(809), + [anon_sym_LT_LT_EQ] = ACTIONS(809), + [anon_sym_GT_GT_EQ] = ACTIONS(809), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(809), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_break] = ACTIONS(811), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_defer] = ACTIONS(811), + [anon_sym_errdefer] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_expand] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_match] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(809), + [anon_sym_orelse] = ACTIONS(811), + [anon_sym_catch] = ACTIONS(811), + [anon_sym_or] = ACTIONS(811), + [anon_sym_and] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(811), + [anon_sym_xor] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(811), + [anon_sym_LT_LT_PIPE] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_try] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(809), + [anon_sym_true] = ACTIONS(811), + [anon_sym_false] = ACTIONS(811), + [sym_none] = ACTIONS(811), + [sym_undefined] = ACTIONS(811), + [sym_sink] = ACTIONS(811), + [sym_integer] = ACTIONS(811), + [sym_float] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym_multiline_string] = ACTIONS(809), + [sym_character] = ACTIONS(809), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(809), }, - [STATE(340)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(142)] = { + [ts_builtin_sym_end] = ACTIONS(371), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(369), + [anon_sym_test] = ACTIONS(369), + [anon_sym_hide] = ACTIONS(369), + [anon_sym_func] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_EQ] = ACTIONS(369), + [anon_sym_struct] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_RPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(369), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(369), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_void] = ACTIONS(369), + [anon_sym_anyopaque] = ACTIONS(369), + [anon_sym_bool] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_uint] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_range] = ACTIONS(369), + [anon_sym_i8] = ACTIONS(369), + [anon_sym_i16] = ACTIONS(369), + [anon_sym_i32] = ACTIONS(369), + [anon_sym_i64] = ACTIONS(369), + [anon_sym_u8] = ACTIONS(369), + [anon_sym_u16] = ACTIONS(369), + [anon_sym_u32] = ACTIONS(369), + [anon_sym_u64] = ACTIONS(369), + [anon_sym_isize] = ACTIONS(369), + [anon_sym_usize] = ACTIONS(369), + [anon_sym_f32] = ACTIONS(369), + [anon_sym_f64] = ACTIONS(369), + [anon_sym_c_char] = ACTIONS(369), + [anon_sym_c_schar] = ACTIONS(369), + [anon_sym_c_uchar] = ACTIONS(369), + [anon_sym_c_short] = ACTIONS(369), + [anon_sym_c_ushort] = ACTIONS(369), + [anon_sym_c_int] = ACTIONS(369), + [anon_sym_c_uint] = ACTIONS(369), + [anon_sym_c_long] = ACTIONS(369), + [anon_sym_c_ulong] = ACTIONS(369), + [anon_sym_c_longlong] = ACTIONS(369), + [anon_sym_c_ulonglong] = ACTIONS(369), + [anon_sym_c_float] = ACTIONS(369), + [anon_sym_c_double] = ACTIONS(369), + [anon_sym_c_longdouble] = ACTIONS(369), + [anon_sym_PLUS_EQ] = ACTIONS(371), + [anon_sym_DASH_EQ] = ACTIONS(371), + [anon_sym_STAR_EQ] = ACTIONS(371), + [anon_sym_SLASH_EQ] = ACTIONS(371), + [anon_sym_AMP_EQ] = ACTIONS(371), + [anon_sym_PIPE_EQ] = ACTIONS(371), + [anon_sym_xor_EQ] = ACTIONS(371), + [anon_sym_LT_LT_EQ] = ACTIONS(371), + [anon_sym_GT_GT_EQ] = ACTIONS(371), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(371), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_defer] = ACTIONS(369), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_expand] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_match] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_orelse] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(369), + [anon_sym_or] = ACTIONS(369), + [anon_sym_and] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(369), + [anon_sym_xor] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT_PIPE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(369), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_try] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_true] = ACTIONS(369), + [anon_sym_false] = ACTIONS(369), + [sym_none] = ACTIONS(369), + [sym_undefined] = ACTIONS(369), + [sym_sink] = ACTIONS(369), + [sym_integer] = ACTIONS(369), + [sym_float] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_multiline_string] = ACTIONS(371), + [sym_character] = ACTIONS(371), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(371), }, - [STATE(341)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(101), + [STATE(143)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -48063,413 +29140,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(811), - }, - [STATE(342)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(343)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(101), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(813), }, - [STATE(344)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(670), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(101), + [STATE(144)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(111), - [anon_sym_yield] = ACTIONS(113), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_errdefer] = ACTIONS(117), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(123), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(345)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(346), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -48503,83 +29252,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(145)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(285), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(815), }, - [STATE(346)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), + [STATE(146)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -48613,193 +29476,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(43), - [anon_sym_yield] = ACTIONS(45), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(51), - [anon_sym_errdefer] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(347)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(354), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(817), }, - [STATE(348)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(407), + [STATE(147)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(91), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(91), [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -48833,2173 +29588,869 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(148)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1742), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1742), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(149)] = { + [ts_builtin_sym_end] = ACTIONS(819), + [sym_identifier] = ACTIONS(821), + [anon_sym_import] = ACTIONS(821), + [anon_sym_test] = ACTIONS(821), + [anon_sym_hide] = ACTIONS(821), + [anon_sym_func] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_EQ] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_COMMA] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(821), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(821), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_void] = ACTIONS(821), + [anon_sym_anyopaque] = ACTIONS(821), + [anon_sym_bool] = ACTIONS(821), + [anon_sym_int] = ACTIONS(821), + [anon_sym_uint] = ACTIONS(821), + [anon_sym_float] = ACTIONS(821), + [anon_sym_range] = ACTIONS(821), + [anon_sym_i8] = ACTIONS(821), + [anon_sym_i16] = ACTIONS(821), + [anon_sym_i32] = ACTIONS(821), + [anon_sym_i64] = ACTIONS(821), + [anon_sym_u8] = ACTIONS(821), + [anon_sym_u16] = ACTIONS(821), + [anon_sym_u32] = ACTIONS(821), + [anon_sym_u64] = ACTIONS(821), + [anon_sym_isize] = ACTIONS(821), + [anon_sym_usize] = ACTIONS(821), + [anon_sym_f32] = ACTIONS(821), + [anon_sym_f64] = ACTIONS(821), + [anon_sym_c_char] = ACTIONS(821), + [anon_sym_c_schar] = ACTIONS(821), + [anon_sym_c_uchar] = ACTIONS(821), + [anon_sym_c_short] = ACTIONS(821), + [anon_sym_c_ushort] = ACTIONS(821), + [anon_sym_c_int] = ACTIONS(821), + [anon_sym_c_uint] = ACTIONS(821), + [anon_sym_c_long] = ACTIONS(821), + [anon_sym_c_ulong] = ACTIONS(821), + [anon_sym_c_longlong] = ACTIONS(821), + [anon_sym_c_ulonglong] = ACTIONS(821), + [anon_sym_c_float] = ACTIONS(821), + [anon_sym_c_double] = ACTIONS(821), + [anon_sym_c_longdouble] = ACTIONS(821), + [anon_sym_PLUS_EQ] = ACTIONS(819), + [anon_sym_DASH_EQ] = ACTIONS(819), + [anon_sym_STAR_EQ] = ACTIONS(819), + [anon_sym_SLASH_EQ] = ACTIONS(819), + [anon_sym_AMP_EQ] = ACTIONS(819), + [anon_sym_PIPE_EQ] = ACTIONS(819), + [anon_sym_xor_EQ] = ACTIONS(819), + [anon_sym_LT_LT_EQ] = ACTIONS(819), + [anon_sym_GT_GT_EQ] = ACTIONS(819), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(819), + [anon_sym_return] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(821), + [anon_sym_break] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_defer] = ACTIONS(821), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_else] = ACTIONS(821), + [anon_sym_while] = ACTIONS(821), + [anon_sym_expand] = ACTIONS(821), + [anon_sym_for] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(819), + [anon_sym_orelse] = ACTIONS(821), + [anon_sym_catch] = ACTIONS(821), + [anon_sym_or] = ACTIONS(821), + [anon_sym_and] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(821), + [anon_sym_xor] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(821), + [anon_sym_LT_LT_PIPE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(821), + [anon_sym_SLASH] = ACTIONS(821), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_try] = ACTIONS(821), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_true] = ACTIONS(821), + [anon_sym_false] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_undefined] = ACTIONS(821), + [sym_sink] = ACTIONS(821), + [sym_integer] = ACTIONS(821), + [sym_float] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [sym_multiline_string] = ACTIONS(819), + [sym_character] = ACTIONS(819), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(819), }, - [STATE(349)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(350)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(821), - }, - [STATE(351)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(352)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(353), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(150)] = { + [ts_builtin_sym_end] = ACTIONS(823), + [sym_identifier] = ACTIONS(825), + [anon_sym_import] = ACTIONS(825), + [anon_sym_test] = ACTIONS(825), + [anon_sym_hide] = ACTIONS(825), + [anon_sym_func] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_EQ] = ACTIONS(825), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_RPAREN] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(823), + [anon_sym_COMMA] = ACTIONS(823), + [anon_sym_RBRACE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(825), + [anon_sym_DOLLAR] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_QMARK] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(825), + [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_void] = ACTIONS(825), + [anon_sym_anyopaque] = ACTIONS(825), + [anon_sym_bool] = ACTIONS(825), + [anon_sym_int] = ACTIONS(825), + [anon_sym_uint] = ACTIONS(825), + [anon_sym_float] = ACTIONS(825), + [anon_sym_range] = ACTIONS(825), + [anon_sym_i8] = ACTIONS(825), + [anon_sym_i16] = ACTIONS(825), + [anon_sym_i32] = ACTIONS(825), + [anon_sym_i64] = ACTIONS(825), + [anon_sym_u8] = ACTIONS(825), + [anon_sym_u16] = ACTIONS(825), + [anon_sym_u32] = ACTIONS(825), + [anon_sym_u64] = ACTIONS(825), + [anon_sym_isize] = ACTIONS(825), + [anon_sym_usize] = ACTIONS(825), + [anon_sym_f32] = ACTIONS(825), + [anon_sym_f64] = ACTIONS(825), + [anon_sym_c_char] = ACTIONS(825), + [anon_sym_c_schar] = ACTIONS(825), + [anon_sym_c_uchar] = ACTIONS(825), + [anon_sym_c_short] = ACTIONS(825), + [anon_sym_c_ushort] = ACTIONS(825), + [anon_sym_c_int] = ACTIONS(825), + [anon_sym_c_uint] = ACTIONS(825), + [anon_sym_c_long] = ACTIONS(825), + [anon_sym_c_ulong] = ACTIONS(825), + [anon_sym_c_longlong] = ACTIONS(825), + [anon_sym_c_ulonglong] = ACTIONS(825), + [anon_sym_c_float] = ACTIONS(825), + [anon_sym_c_double] = ACTIONS(825), + [anon_sym_c_longdouble] = ACTIONS(825), + [anon_sym_PLUS_EQ] = ACTIONS(823), + [anon_sym_DASH_EQ] = ACTIONS(823), + [anon_sym_STAR_EQ] = ACTIONS(823), + [anon_sym_SLASH_EQ] = ACTIONS(823), + [anon_sym_AMP_EQ] = ACTIONS(823), + [anon_sym_PIPE_EQ] = ACTIONS(823), + [anon_sym_xor_EQ] = ACTIONS(823), + [anon_sym_LT_LT_EQ] = ACTIONS(823), + [anon_sym_GT_GT_EQ] = ACTIONS(823), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(823), + [anon_sym_return] = ACTIONS(825), + [anon_sym_yield] = ACTIONS(825), + [anon_sym_break] = ACTIONS(825), + [anon_sym_continue] = ACTIONS(825), + [anon_sym_defer] = ACTIONS(825), + [anon_sym_errdefer] = ACTIONS(825), + [anon_sym_if] = ACTIONS(825), + [anon_sym_else] = ACTIONS(825), + [anon_sym_while] = ACTIONS(825), + [anon_sym_expand] = ACTIONS(825), + [anon_sym_for] = ACTIONS(825), + [anon_sym_match] = ACTIONS(825), + [anon_sym_DOT_DOT] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(823), + [anon_sym_orelse] = ACTIONS(825), + [anon_sym_catch] = ACTIONS(825), + [anon_sym_or] = ACTIONS(825), + [anon_sym_and] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(823), + [anon_sym_LT] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(823), + [anon_sym_AMP] = ACTIONS(825), + [anon_sym_xor] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(825), + [anon_sym_LT_LT_PIPE] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(825), + [anon_sym_SLASH] = ACTIONS(825), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_try] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_true] = ACTIONS(825), + [anon_sym_false] = ACTIONS(825), + [sym_none] = ACTIONS(825), + [sym_undefined] = ACTIONS(825), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(825), + [sym_float] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(823), + [sym_multiline_string] = ACTIONS(823), + [sym_character] = ACTIONS(823), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(823), }, - [STATE(353)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1468), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(407), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(411), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(413), - [anon_sym_errdefer] = ACTIONS(415), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(419), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(354)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(355)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(356), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(825), - }, - [STATE(356)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1446), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(17), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = 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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(91), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(357)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(358)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(359), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(151)] = { + [ts_builtin_sym_end] = ACTIONS(827), + [sym_identifier] = ACTIONS(829), + [anon_sym_import] = ACTIONS(829), + [anon_sym_test] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_func] = ACTIONS(829), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_struct] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_RPAREN] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_COMMA] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_QMARK] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_void] = ACTIONS(829), + [anon_sym_anyopaque] = ACTIONS(829), + [anon_sym_bool] = ACTIONS(829), + [anon_sym_int] = ACTIONS(829), + [anon_sym_uint] = ACTIONS(829), + [anon_sym_float] = ACTIONS(829), + [anon_sym_range] = ACTIONS(829), + [anon_sym_i8] = ACTIONS(829), + [anon_sym_i16] = ACTIONS(829), + [anon_sym_i32] = ACTIONS(829), + [anon_sym_i64] = ACTIONS(829), + [anon_sym_u8] = ACTIONS(829), + [anon_sym_u16] = ACTIONS(829), + [anon_sym_u32] = ACTIONS(829), + [anon_sym_u64] = ACTIONS(829), + [anon_sym_isize] = ACTIONS(829), + [anon_sym_usize] = ACTIONS(829), + [anon_sym_f32] = ACTIONS(829), + [anon_sym_f64] = ACTIONS(829), + [anon_sym_c_char] = ACTIONS(829), + [anon_sym_c_schar] = ACTIONS(829), + [anon_sym_c_uchar] = ACTIONS(829), + [anon_sym_c_short] = ACTIONS(829), + [anon_sym_c_ushort] = ACTIONS(829), + [anon_sym_c_int] = ACTIONS(829), + [anon_sym_c_uint] = ACTIONS(829), + [anon_sym_c_long] = ACTIONS(829), + [anon_sym_c_ulong] = ACTIONS(829), + [anon_sym_c_longlong] = ACTIONS(829), + [anon_sym_c_ulonglong] = ACTIONS(829), + [anon_sym_c_float] = ACTIONS(829), + [anon_sym_c_double] = ACTIONS(829), + [anon_sym_c_longdouble] = ACTIONS(829), + [anon_sym_PLUS_EQ] = ACTIONS(827), + [anon_sym_DASH_EQ] = ACTIONS(827), + [anon_sym_STAR_EQ] = ACTIONS(827), + [anon_sym_SLASH_EQ] = ACTIONS(827), + [anon_sym_AMP_EQ] = ACTIONS(827), + [anon_sym_PIPE_EQ] = ACTIONS(827), + [anon_sym_xor_EQ] = ACTIONS(827), + [anon_sym_LT_LT_EQ] = ACTIONS(827), + [anon_sym_GT_GT_EQ] = ACTIONS(827), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(827), + [anon_sym_return] = ACTIONS(829), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_defer] = ACTIONS(829), + [anon_sym_errdefer] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_else] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_expand] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_orelse] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_LT_LT] = ACTIONS(829), + [anon_sym_GT_GT] = ACTIONS(829), + [anon_sym_LT_LT_PIPE] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_TILDE] = ACTIONS(827), + [anon_sym_try] = ACTIONS(829), + [anon_sym_DOT] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(827), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [sym_none] = ACTIONS(829), + [sym_undefined] = ACTIONS(829), + [sym_sink] = ACTIONS(829), + [sym_integer] = ACTIONS(829), + [sym_float] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym_multiline_string] = ACTIONS(827), + [sym_character] = ACTIONS(827), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(827), }, - [STATE(359)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(360)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(829), - }, - [STATE(361)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(362)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(363)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(365), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(152)] = { + [ts_builtin_sym_end] = ACTIONS(831), + [sym_identifier] = ACTIONS(833), + [anon_sym_import] = ACTIONS(833), + [anon_sym_test] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_func] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(833), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_struct] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_COMMA] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_void] = ACTIONS(833), + [anon_sym_anyopaque] = ACTIONS(833), + [anon_sym_bool] = ACTIONS(833), + [anon_sym_int] = ACTIONS(833), + [anon_sym_uint] = ACTIONS(833), + [anon_sym_float] = ACTIONS(833), + [anon_sym_range] = ACTIONS(833), + [anon_sym_i8] = ACTIONS(833), + [anon_sym_i16] = ACTIONS(833), + [anon_sym_i32] = ACTIONS(833), + [anon_sym_i64] = ACTIONS(833), + [anon_sym_u8] = ACTIONS(833), + [anon_sym_u16] = ACTIONS(833), + [anon_sym_u32] = ACTIONS(833), + [anon_sym_u64] = ACTIONS(833), + [anon_sym_isize] = ACTIONS(833), + [anon_sym_usize] = ACTIONS(833), + [anon_sym_f32] = ACTIONS(833), + [anon_sym_f64] = ACTIONS(833), + [anon_sym_c_char] = ACTIONS(833), + [anon_sym_c_schar] = ACTIONS(833), + [anon_sym_c_uchar] = ACTIONS(833), + [anon_sym_c_short] = ACTIONS(833), + [anon_sym_c_ushort] = ACTIONS(833), + [anon_sym_c_int] = ACTIONS(833), + [anon_sym_c_uint] = ACTIONS(833), + [anon_sym_c_long] = ACTIONS(833), + [anon_sym_c_ulong] = ACTIONS(833), + [anon_sym_c_longlong] = ACTIONS(833), + [anon_sym_c_ulonglong] = ACTIONS(833), + [anon_sym_c_float] = ACTIONS(833), + [anon_sym_c_double] = ACTIONS(833), + [anon_sym_c_longdouble] = ACTIONS(833), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_xor_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(831), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(833), + [anon_sym_break] = ACTIONS(833), + [anon_sym_continue] = ACTIONS(833), + [anon_sym_defer] = ACTIONS(833), + [anon_sym_errdefer] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_else] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_expand] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_match] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(831), + [anon_sym_orelse] = ACTIONS(833), + [anon_sym_catch] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_LT_LT] = ACTIONS(833), + [anon_sym_GT_GT] = ACTIONS(833), + [anon_sym_LT_LT_PIPE] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_try] = ACTIONS(833), + [anon_sym_DOT] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [sym_none] = ACTIONS(833), + [sym_undefined] = ACTIONS(833), + [sym_sink] = ACTIONS(833), + [sym_integer] = ACTIONS(833), + [sym_float] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [sym_multiline_string] = ACTIONS(831), + [sym_character] = ACTIONS(831), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(831), }, - [STATE(364)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(357), - [sym_identifier] = ACTIONS(423), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(429), - [anon_sym_errdefer] = ACTIONS(431), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(435), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(833), - }, - [STATE(365)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(366)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(373), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(153)] = { + [ts_builtin_sym_end] = ACTIONS(835), + [sym_identifier] = ACTIONS(837), + [anon_sym_import] = ACTIONS(837), + [anon_sym_test] = ACTIONS(837), + [anon_sym_hide] = ACTIONS(837), + [anon_sym_func] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(837), + [anon_sym_struct] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_void] = ACTIONS(837), + [anon_sym_anyopaque] = ACTIONS(837), + [anon_sym_bool] = ACTIONS(837), + [anon_sym_int] = ACTIONS(837), + [anon_sym_uint] = ACTIONS(837), + [anon_sym_float] = ACTIONS(837), + [anon_sym_range] = ACTIONS(837), + [anon_sym_i8] = ACTIONS(837), + [anon_sym_i16] = ACTIONS(837), + [anon_sym_i32] = ACTIONS(837), + [anon_sym_i64] = ACTIONS(837), + [anon_sym_u8] = ACTIONS(837), + [anon_sym_u16] = ACTIONS(837), + [anon_sym_u32] = ACTIONS(837), + [anon_sym_u64] = ACTIONS(837), + [anon_sym_isize] = ACTIONS(837), + [anon_sym_usize] = ACTIONS(837), + [anon_sym_f32] = ACTIONS(837), + [anon_sym_f64] = ACTIONS(837), + [anon_sym_c_char] = ACTIONS(837), + [anon_sym_c_schar] = ACTIONS(837), + [anon_sym_c_uchar] = ACTIONS(837), + [anon_sym_c_short] = ACTIONS(837), + [anon_sym_c_ushort] = ACTIONS(837), + [anon_sym_c_int] = ACTIONS(837), + [anon_sym_c_uint] = ACTIONS(837), + [anon_sym_c_long] = ACTIONS(837), + [anon_sym_c_ulong] = ACTIONS(837), + [anon_sym_c_longlong] = ACTIONS(837), + [anon_sym_c_ulonglong] = ACTIONS(837), + [anon_sym_c_float] = ACTIONS(837), + [anon_sym_c_double] = ACTIONS(837), + [anon_sym_c_longdouble] = ACTIONS(837), + [anon_sym_PLUS_EQ] = ACTIONS(835), + [anon_sym_DASH_EQ] = ACTIONS(835), + [anon_sym_STAR_EQ] = ACTIONS(835), + [anon_sym_SLASH_EQ] = ACTIONS(835), + [anon_sym_AMP_EQ] = ACTIONS(835), + [anon_sym_PIPE_EQ] = ACTIONS(835), + [anon_sym_xor_EQ] = ACTIONS(835), + [anon_sym_LT_LT_EQ] = ACTIONS(835), + [anon_sym_GT_GT_EQ] = ACTIONS(835), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(835), + [anon_sym_return] = ACTIONS(837), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_break] = ACTIONS(837), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(837), + [anon_sym_if] = ACTIONS(837), + [anon_sym_else] = ACTIONS(837), + [anon_sym_while] = ACTIONS(837), + [anon_sym_expand] = ACTIONS(837), + [anon_sym_for] = ACTIONS(837), + [anon_sym_match] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(835), + [anon_sym_orelse] = ACTIONS(837), + [anon_sym_catch] = ACTIONS(837), + [anon_sym_or] = ACTIONS(837), + [anon_sym_and] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_xor] = ACTIONS(837), + [anon_sym_LT_LT] = ACTIONS(837), + [anon_sym_GT_GT] = ACTIONS(837), + [anon_sym_LT_LT_PIPE] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_try] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_true] = ACTIONS(837), + [anon_sym_false] = ACTIONS(837), + [sym_none] = ACTIONS(837), + [sym_undefined] = ACTIONS(837), + [sym_sink] = ACTIONS(837), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [sym_multiline_string] = ACTIONS(835), + [sym_character] = ACTIONS(835), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(835), }, - [STATE(367)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(368), - [sym_identifier] = ACTIONS(197), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(154)] = { + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(286), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(286), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_void] = ACTIONS(286), + [anon_sym_anyopaque] = ACTIONS(286), + [anon_sym_bool] = ACTIONS(286), + [anon_sym_int] = ACTIONS(286), + [anon_sym_uint] = ACTIONS(286), + [anon_sym_float] = ACTIONS(286), + [anon_sym_range] = ACTIONS(286), + [anon_sym_i8] = ACTIONS(286), + [anon_sym_i16] = ACTIONS(286), + [anon_sym_i32] = ACTIONS(286), + [anon_sym_i64] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(286), + [anon_sym_u16] = ACTIONS(286), + [anon_sym_u32] = ACTIONS(286), + [anon_sym_u64] = ACTIONS(286), + [anon_sym_isize] = ACTIONS(286), + [anon_sym_usize] = ACTIONS(286), + [anon_sym_f32] = ACTIONS(286), + [anon_sym_f64] = ACTIONS(286), + [anon_sym_c_char] = ACTIONS(286), + [anon_sym_c_schar] = ACTIONS(286), + [anon_sym_c_uchar] = ACTIONS(286), + [anon_sym_c_short] = ACTIONS(286), + [anon_sym_c_ushort] = ACTIONS(286), + [anon_sym_c_int] = ACTIONS(286), + [anon_sym_c_uint] = ACTIONS(286), + [anon_sym_c_long] = ACTIONS(286), + [anon_sym_c_ulong] = ACTIONS(286), + [anon_sym_c_longlong] = ACTIONS(286), + [anon_sym_c_ulonglong] = ACTIONS(286), + [anon_sym_c_float] = ACTIONS(286), + [anon_sym_c_double] = ACTIONS(286), + [anon_sym_c_longdouble] = ACTIONS(286), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_return] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(286), + [anon_sym_break] = ACTIONS(286), + [anon_sym_continue] = ACTIONS(286), + [anon_sym_defer] = ACTIONS(286), + [anon_sym_errdefer] = ACTIONS(286), + [anon_sym_if] = ACTIONS(286), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_expand] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(286), + [anon_sym_LT_LT_PIPE] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_try] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [sym_none] = ACTIONS(286), + [sym_undefined] = ACTIONS(286), + [sym_sink] = ACTIONS(286), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(281), + [sym_multiline_string] = ACTIONS(281), + [sym_character] = ACTIONS(281), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(837), + [sym__newline] = ACTIONS(281), }, - [STATE(368)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(155)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1740), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1740), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51033,83 +30484,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), [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_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(369)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(197), + [STATE(156)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51143,83 +30596,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [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_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(839), }, - [STATE(370)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(157)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51253,83 +30708,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [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_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(371)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(372), - [sym_identifier] = ACTIONS(197), + [STATE(158)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51363,83 +30820,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [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_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(841), }, - [STATE(372)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(742), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(197), + [STATE(159)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2635), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2635), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51473,83 +30932,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(201), - [anon_sym_yield] = ACTIONS(203), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), [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_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(211), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(373)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(129), + [STATE(160)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -51583,1293 +31044,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(374)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(375)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1019), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(843), }, - [STATE(376)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(377)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(378), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(161)] = { + [ts_builtin_sym_end] = ACTIONS(845), + [sym_identifier] = ACTIONS(847), + [anon_sym_import] = ACTIONS(847), + [anon_sym_test] = ACTIONS(847), + [anon_sym_hide] = ACTIONS(847), + [anon_sym_func] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_EQ] = ACTIONS(847), + [anon_sym_struct] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(847), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_void] = ACTIONS(847), + [anon_sym_anyopaque] = ACTIONS(847), + [anon_sym_bool] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_uint] = ACTIONS(847), + [anon_sym_float] = ACTIONS(847), + [anon_sym_range] = ACTIONS(847), + [anon_sym_i8] = ACTIONS(847), + [anon_sym_i16] = ACTIONS(847), + [anon_sym_i32] = ACTIONS(847), + [anon_sym_i64] = ACTIONS(847), + [anon_sym_u8] = ACTIONS(847), + [anon_sym_u16] = ACTIONS(847), + [anon_sym_u32] = ACTIONS(847), + [anon_sym_u64] = ACTIONS(847), + [anon_sym_isize] = ACTIONS(847), + [anon_sym_usize] = ACTIONS(847), + [anon_sym_f32] = ACTIONS(847), + [anon_sym_f64] = ACTIONS(847), + [anon_sym_c_char] = ACTIONS(847), + [anon_sym_c_schar] = ACTIONS(847), + [anon_sym_c_uchar] = ACTIONS(847), + [anon_sym_c_short] = ACTIONS(847), + [anon_sym_c_ushort] = ACTIONS(847), + [anon_sym_c_int] = ACTIONS(847), + [anon_sym_c_uint] = ACTIONS(847), + [anon_sym_c_long] = ACTIONS(847), + [anon_sym_c_ulong] = ACTIONS(847), + [anon_sym_c_longlong] = ACTIONS(847), + [anon_sym_c_ulonglong] = ACTIONS(847), + [anon_sym_c_float] = ACTIONS(847), + [anon_sym_c_double] = ACTIONS(847), + [anon_sym_c_longdouble] = ACTIONS(847), + [anon_sym_PLUS_EQ] = ACTIONS(845), + [anon_sym_DASH_EQ] = ACTIONS(845), + [anon_sym_STAR_EQ] = ACTIONS(845), + [anon_sym_SLASH_EQ] = ACTIONS(845), + [anon_sym_AMP_EQ] = ACTIONS(845), + [anon_sym_PIPE_EQ] = ACTIONS(845), + [anon_sym_xor_EQ] = ACTIONS(845), + [anon_sym_LT_LT_EQ] = ACTIONS(845), + [anon_sym_GT_GT_EQ] = ACTIONS(845), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(845), + [anon_sym_return] = ACTIONS(847), + [anon_sym_yield] = ACTIONS(847), + [anon_sym_break] = ACTIONS(847), + [anon_sym_continue] = ACTIONS(847), + [anon_sym_defer] = ACTIONS(847), + [anon_sym_errdefer] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_else] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_expand] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(845), + [anon_sym_orelse] = ACTIONS(847), + [anon_sym_catch] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(847), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(847), + [anon_sym_LT_LT_PIPE] = ACTIONS(847), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_try] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(845), + [anon_sym_true] = ACTIONS(847), + [anon_sym_false] = ACTIONS(847), + [sym_none] = ACTIONS(847), + [sym_undefined] = ACTIONS(847), + [sym_sink] = ACTIONS(847), + [sym_integer] = ACTIONS(847), + [sym_float] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [sym_multiline_string] = ACTIONS(845), + [sym_character] = ACTIONS(845), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(845), }, - [STATE(378)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1489), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(257), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(259), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(263), - [anon_sym_errdefer] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(269), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(379)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(380)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1104), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(381)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1240), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(382)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1241), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(383), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(847), - }, - [STATE(383)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1485), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(155), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(169), - [anon_sym_errdefer] = ACTIONS(171), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(177), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(384)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1254), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(1482), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(129), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(141), - [anon_sym_errdefer] = ACTIONS(143), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(149), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(162)] = { + [ts_builtin_sym_end] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [anon_sym_import] = ACTIONS(851), + [anon_sym_test] = ACTIONS(851), + [anon_sym_hide] = ACTIONS(851), + [anon_sym_func] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_EQ] = ACTIONS(851), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(851), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_void] = ACTIONS(851), + [anon_sym_anyopaque] = ACTIONS(851), + [anon_sym_bool] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_uint] = ACTIONS(851), + [anon_sym_float] = ACTIONS(851), + [anon_sym_range] = ACTIONS(851), + [anon_sym_i8] = ACTIONS(851), + [anon_sym_i16] = ACTIONS(851), + [anon_sym_i32] = ACTIONS(851), + [anon_sym_i64] = ACTIONS(851), + [anon_sym_u8] = ACTIONS(851), + [anon_sym_u16] = ACTIONS(851), + [anon_sym_u32] = ACTIONS(851), + [anon_sym_u64] = ACTIONS(851), + [anon_sym_isize] = ACTIONS(851), + [anon_sym_usize] = ACTIONS(851), + [anon_sym_f32] = ACTIONS(851), + [anon_sym_f64] = ACTIONS(851), + [anon_sym_c_char] = ACTIONS(851), + [anon_sym_c_schar] = ACTIONS(851), + [anon_sym_c_uchar] = ACTIONS(851), + [anon_sym_c_short] = ACTIONS(851), + [anon_sym_c_ushort] = ACTIONS(851), + [anon_sym_c_int] = ACTIONS(851), + [anon_sym_c_uint] = ACTIONS(851), + [anon_sym_c_long] = ACTIONS(851), + [anon_sym_c_ulong] = ACTIONS(851), + [anon_sym_c_longlong] = ACTIONS(851), + [anon_sym_c_ulonglong] = ACTIONS(851), + [anon_sym_c_float] = ACTIONS(851), + [anon_sym_c_double] = ACTIONS(851), + [anon_sym_c_longdouble] = ACTIONS(851), + [anon_sym_PLUS_EQ] = ACTIONS(849), + [anon_sym_DASH_EQ] = ACTIONS(849), + [anon_sym_STAR_EQ] = ACTIONS(849), + [anon_sym_SLASH_EQ] = ACTIONS(849), + [anon_sym_AMP_EQ] = ACTIONS(849), + [anon_sym_PIPE_EQ] = ACTIONS(849), + [anon_sym_xor_EQ] = ACTIONS(849), + [anon_sym_LT_LT_EQ] = ACTIONS(849), + [anon_sym_GT_GT_EQ] = ACTIONS(849), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(849), + [anon_sym_return] = ACTIONS(851), + [anon_sym_yield] = ACTIONS(851), + [anon_sym_break] = ACTIONS(851), + [anon_sym_continue] = ACTIONS(851), + [anon_sym_defer] = ACTIONS(851), + [anon_sym_errdefer] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_else] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_expand] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_DOT_DOT] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(849), + [anon_sym_orelse] = ACTIONS(851), + [anon_sym_catch] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_LT_LT_PIPE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_SLASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_try] = ACTIONS(851), + [anon_sym_DOT] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [sym_none] = ACTIONS(851), + [sym_undefined] = ACTIONS(851), + [sym_sink] = ACTIONS(851), + [sym_integer] = ACTIONS(851), + [sym_float] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [sym_multiline_string] = ACTIONS(849), + [sym_character] = ACTIONS(849), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(849), }, - [STATE(385)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1071), - [sym_statement] = STATE(1050), - [sym_constant_declaration] = STATE(1071), - [sym_variable_declaration] = STATE(1071), - [sym_assignment_statement] = STATE(1071), - [sym_expression_statement] = STATE(1071), - [sym_return_statement] = STATE(1071), - [sym_yield_statement] = STATE(1071), - [sym_break_statement] = STATE(1071), - [sym_continue_statement] = STATE(1071), - [sym_defer_statement] = STATE(1071), - [sym_labeled_block] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_for_statement] = STATE(1071), - [sym_match_statement] = STATE(1071), - [sym_expression] = STATE(680), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(273), + [STATE(163)] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_test] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_func] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_struct] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_COMMA] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_void] = ACTIONS(855), + [anon_sym_anyopaque] = ACTIONS(855), + [anon_sym_bool] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_uint] = ACTIONS(855), + [anon_sym_float] = ACTIONS(855), + [anon_sym_range] = ACTIONS(855), + [anon_sym_i8] = ACTIONS(855), + [anon_sym_i16] = ACTIONS(855), + [anon_sym_i32] = ACTIONS(855), + [anon_sym_i64] = ACTIONS(855), + [anon_sym_u8] = ACTIONS(855), + [anon_sym_u16] = ACTIONS(855), + [anon_sym_u32] = ACTIONS(855), + [anon_sym_u64] = ACTIONS(855), + [anon_sym_isize] = ACTIONS(855), + [anon_sym_usize] = ACTIONS(855), + [anon_sym_f32] = ACTIONS(855), + [anon_sym_f64] = ACTIONS(855), + [anon_sym_c_char] = ACTIONS(855), + [anon_sym_c_schar] = ACTIONS(855), + [anon_sym_c_uchar] = ACTIONS(855), + [anon_sym_c_short] = ACTIONS(855), + [anon_sym_c_ushort] = ACTIONS(855), + [anon_sym_c_int] = ACTIONS(855), + [anon_sym_c_uint] = ACTIONS(855), + [anon_sym_c_long] = ACTIONS(855), + [anon_sym_c_ulong] = ACTIONS(855), + [anon_sym_c_longlong] = ACTIONS(855), + [anon_sym_c_ulonglong] = ACTIONS(855), + [anon_sym_c_float] = ACTIONS(855), + [anon_sym_c_double] = ACTIONS(855), + [anon_sym_c_longdouble] = ACTIONS(855), + [anon_sym_PLUS_EQ] = ACTIONS(853), + [anon_sym_DASH_EQ] = ACTIONS(853), + [anon_sym_STAR_EQ] = ACTIONS(853), + [anon_sym_SLASH_EQ] = ACTIONS(853), + [anon_sym_AMP_EQ] = ACTIONS(853), + [anon_sym_PIPE_EQ] = ACTIONS(853), + [anon_sym_xor_EQ] = ACTIONS(853), + [anon_sym_LT_LT_EQ] = ACTIONS(853), + [anon_sym_GT_GT_EQ] = ACTIONS(853), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(853), + [anon_sym_return] = ACTIONS(855), + [anon_sym_yield] = ACTIONS(855), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_errdefer] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_expand] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_DOT_DOT] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [anon_sym_orelse] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(855), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(855), + [anon_sym_LT_LT_PIPE] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_try] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_undefined] = ACTIONS(855), + [sym_sink] = ACTIONS(855), + [sym_integer] = ACTIONS(855), + [sym_float] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [sym_multiline_string] = ACTIONS(853), + [sym_character] = ACTIONS(853), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(853), + }, + [STATE(164)] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(859), + [anon_sym_import] = ACTIONS(859), + [anon_sym_test] = ACTIONS(859), + [anon_sym_hide] = ACTIONS(859), + [anon_sym_func] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_RPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(859), + [anon_sym_anyopaque] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_uint] = ACTIONS(859), + [anon_sym_float] = ACTIONS(859), + [anon_sym_range] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_c_char] = ACTIONS(859), + [anon_sym_c_schar] = ACTIONS(859), + [anon_sym_c_uchar] = ACTIONS(859), + [anon_sym_c_short] = ACTIONS(859), + [anon_sym_c_ushort] = ACTIONS(859), + [anon_sym_c_int] = ACTIONS(859), + [anon_sym_c_uint] = ACTIONS(859), + [anon_sym_c_long] = ACTIONS(859), + [anon_sym_c_ulong] = ACTIONS(859), + [anon_sym_c_longlong] = ACTIONS(859), + [anon_sym_c_ulonglong] = ACTIONS(859), + [anon_sym_c_float] = ACTIONS(859), + [anon_sym_c_double] = ACTIONS(859), + [anon_sym_c_longdouble] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(857), + [anon_sym_DASH_EQ] = ACTIONS(857), + [anon_sym_STAR_EQ] = ACTIONS(857), + [anon_sym_SLASH_EQ] = ACTIONS(857), + [anon_sym_AMP_EQ] = ACTIONS(857), + [anon_sym_PIPE_EQ] = ACTIONS(857), + [anon_sym_xor_EQ] = ACTIONS(857), + [anon_sym_LT_LT_EQ] = ACTIONS(857), + [anon_sym_GT_GT_EQ] = ACTIONS(857), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(857), + [anon_sym_return] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_errdefer] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_expand] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(859), + [anon_sym_catch] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_LT_LT_PIPE] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_try] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_undefined] = ACTIONS(859), + [sym_sink] = ACTIONS(859), + [sym_integer] = ACTIONS(859), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(165)] = { + [ts_builtin_sym_end] = ACTIONS(363), + [sym_identifier] = ACTIONS(361), + [anon_sym_import] = ACTIONS(361), + [anon_sym_test] = ACTIONS(361), + [anon_sym_hide] = ACTIONS(361), + [anon_sym_func] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_EQ] = ACTIONS(361), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(361), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(361), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_void] = ACTIONS(361), + [anon_sym_anyopaque] = ACTIONS(361), + [anon_sym_bool] = ACTIONS(361), + [anon_sym_int] = ACTIONS(361), + [anon_sym_uint] = ACTIONS(361), + [anon_sym_float] = ACTIONS(361), + [anon_sym_range] = ACTIONS(361), + [anon_sym_i8] = ACTIONS(361), + [anon_sym_i16] = ACTIONS(361), + [anon_sym_i32] = ACTIONS(361), + [anon_sym_i64] = ACTIONS(361), + [anon_sym_u8] = ACTIONS(361), + [anon_sym_u16] = ACTIONS(361), + [anon_sym_u32] = ACTIONS(361), + [anon_sym_u64] = ACTIONS(361), + [anon_sym_isize] = ACTIONS(361), + [anon_sym_usize] = ACTIONS(361), + [anon_sym_f32] = ACTIONS(361), + [anon_sym_f64] = ACTIONS(361), + [anon_sym_c_char] = ACTIONS(361), + [anon_sym_c_schar] = ACTIONS(361), + [anon_sym_c_uchar] = ACTIONS(361), + [anon_sym_c_short] = ACTIONS(361), + [anon_sym_c_ushort] = ACTIONS(361), + [anon_sym_c_int] = ACTIONS(361), + [anon_sym_c_uint] = ACTIONS(361), + [anon_sym_c_long] = ACTIONS(361), + [anon_sym_c_ulong] = ACTIONS(361), + [anon_sym_c_longlong] = ACTIONS(361), + [anon_sym_c_ulonglong] = ACTIONS(361), + [anon_sym_c_float] = ACTIONS(361), + [anon_sym_c_double] = ACTIONS(361), + [anon_sym_c_longdouble] = ACTIONS(361), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_xor_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(363), + [anon_sym_return] = ACTIONS(361), + [anon_sym_yield] = ACTIONS(361), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(361), + [anon_sym_errdefer] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_else] = ACTIONS(361), + [anon_sym_while] = ACTIONS(361), + [anon_sym_expand] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_orelse] = ACTIONS(361), + [anon_sym_catch] = ACTIONS(361), + [anon_sym_or] = ACTIONS(361), + [anon_sym_and] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(361), + [anon_sym_xor] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(361), + [anon_sym_LT_LT_PIPE] = ACTIONS(361), + [anon_sym_PLUS] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(361), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_try] = ACTIONS(361), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym_true] = ACTIONS(361), + [anon_sym_false] = ACTIONS(361), + [sym_none] = ACTIONS(361), + [sym_undefined] = ACTIONS(361), + [sym_sink] = ACTIONS(361), + [sym_integer] = ACTIONS(361), + [sym_float] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_multiline_string] = ACTIONS(363), + [sym_character] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(363), + }, + [STATE(166)] = { + [ts_builtin_sym_end] = ACTIONS(359), + [sym_identifier] = ACTIONS(357), + [anon_sym_import] = ACTIONS(357), + [anon_sym_test] = ACTIONS(357), + [anon_sym_hide] = ACTIONS(357), + [anon_sym_func] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_RPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_COMMA] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(357), + [anon_sym_anyopaque] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_int] = ACTIONS(357), + [anon_sym_uint] = ACTIONS(357), + [anon_sym_float] = ACTIONS(357), + [anon_sym_range] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_c_char] = ACTIONS(357), + [anon_sym_c_schar] = ACTIONS(357), + [anon_sym_c_uchar] = ACTIONS(357), + [anon_sym_c_short] = ACTIONS(357), + [anon_sym_c_ushort] = ACTIONS(357), + [anon_sym_c_int] = ACTIONS(357), + [anon_sym_c_uint] = ACTIONS(357), + [anon_sym_c_long] = ACTIONS(357), + [anon_sym_c_ulong] = ACTIONS(357), + [anon_sym_c_longlong] = ACTIONS(357), + [anon_sym_c_ulonglong] = ACTIONS(357), + [anon_sym_c_float] = ACTIONS(357), + [anon_sym_c_double] = ACTIONS(357), + [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(359), + [anon_sym_DASH_EQ] = ACTIONS(359), + [anon_sym_STAR_EQ] = ACTIONS(359), + [anon_sym_SLASH_EQ] = ACTIONS(359), + [anon_sym_AMP_EQ] = ACTIONS(359), + [anon_sym_PIPE_EQ] = ACTIONS(359), + [anon_sym_xor_EQ] = ACTIONS(359), + [anon_sym_LT_LT_EQ] = ACTIONS(359), + [anon_sym_GT_GT_EQ] = ACTIONS(359), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(359), + [anon_sym_return] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(357), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(357), + [anon_sym_errdefer] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_else] = ACTIONS(357), + [anon_sym_while] = ACTIONS(357), + [anon_sym_expand] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_orelse] = ACTIONS(357), + [anon_sym_catch] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_and] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_xor] = ACTIONS(357), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_LT_LT_PIPE] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_try] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [sym_none] = ACTIONS(357), + [sym_undefined] = ACTIONS(357), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(357), + [sym_float] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_multiline_string] = ACTIONS(359), + [sym_character] = ACTIONS(359), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(359), + }, + [STATE(167)] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(863), + [anon_sym_import] = ACTIONS(863), + [anon_sym_test] = ACTIONS(863), + [anon_sym_hide] = ACTIONS(863), + [anon_sym_func] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_void] = ACTIONS(863), + [anon_sym_anyopaque] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_uint] = ACTIONS(863), + [anon_sym_float] = ACTIONS(863), + [anon_sym_range] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_c_char] = ACTIONS(863), + [anon_sym_c_schar] = ACTIONS(863), + [anon_sym_c_uchar] = ACTIONS(863), + [anon_sym_c_short] = ACTIONS(863), + [anon_sym_c_ushort] = ACTIONS(863), + [anon_sym_c_int] = ACTIONS(863), + [anon_sym_c_uint] = ACTIONS(863), + [anon_sym_c_long] = ACTIONS(863), + [anon_sym_c_ulong] = ACTIONS(863), + [anon_sym_c_longlong] = ACTIONS(863), + [anon_sym_c_ulonglong] = ACTIONS(863), + [anon_sym_c_float] = ACTIONS(863), + [anon_sym_c_double] = ACTIONS(863), + [anon_sym_c_longdouble] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_xor_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(861), + [anon_sym_return] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_defer] = ACTIONS(863), + [anon_sym_errdefer] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_else] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_expand] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [anon_sym_orelse] = ACTIONS(863), + [anon_sym_catch] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_LT_LT_PIPE] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [sym_none] = ACTIONS(863), + [sym_undefined] = ACTIONS(863), + [sym_sink] = ACTIONS(863), + [sym_integer] = ACTIONS(863), + [sym_float] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_multiline_string] = ACTIONS(861), + [sym_character] = ACTIONS(861), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(861), + }, + [STATE(168)] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(867), + [anon_sym_import] = ACTIONS(867), + [anon_sym_test] = ACTIONS(867), + [anon_sym_hide] = ACTIONS(867), + [anon_sym_func] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(867), + [anon_sym_anyopaque] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_uint] = ACTIONS(867), + [anon_sym_float] = ACTIONS(867), + [anon_sym_range] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_c_char] = ACTIONS(867), + [anon_sym_c_schar] = ACTIONS(867), + [anon_sym_c_uchar] = ACTIONS(867), + [anon_sym_c_short] = ACTIONS(867), + [anon_sym_c_ushort] = ACTIONS(867), + [anon_sym_c_int] = ACTIONS(867), + [anon_sym_c_uint] = ACTIONS(867), + [anon_sym_c_long] = ACTIONS(867), + [anon_sym_c_ulong] = ACTIONS(867), + [anon_sym_c_longlong] = ACTIONS(867), + [anon_sym_c_ulonglong] = ACTIONS(867), + [anon_sym_c_float] = ACTIONS(867), + [anon_sym_c_double] = ACTIONS(867), + [anon_sym_c_longdouble] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_xor_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(865), + [anon_sym_return] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_defer] = ACTIONS(867), + [anon_sym_errdefer] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_else] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_expand] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_orelse] = ACTIONS(867), + [anon_sym_catch] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(867), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_LT_LT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_LT_LT_PIPE] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [sym_none] = ACTIONS(867), + [sym_undefined] = ACTIONS(867), + [sym_sink] = ACTIONS(867), + [sym_integer] = ACTIONS(867), + [sym_float] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_multiline_string] = ACTIONS(865), + [sym_character] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(865), + }, + [STATE(169)] = { + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(871), + [anon_sym_import] = ACTIONS(871), + [anon_sym_test] = ACTIONS(871), + [anon_sym_hide] = ACTIONS(871), + [anon_sym_func] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_EQ] = ACTIONS(871), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_void] = ACTIONS(871), + [anon_sym_anyopaque] = ACTIONS(871), + [anon_sym_bool] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_uint] = ACTIONS(871), + [anon_sym_float] = ACTIONS(871), + [anon_sym_range] = ACTIONS(871), + [anon_sym_i8] = ACTIONS(871), + [anon_sym_i16] = ACTIONS(871), + [anon_sym_i32] = ACTIONS(871), + [anon_sym_i64] = ACTIONS(871), + [anon_sym_u8] = ACTIONS(871), + [anon_sym_u16] = ACTIONS(871), + [anon_sym_u32] = ACTIONS(871), + [anon_sym_u64] = ACTIONS(871), + [anon_sym_isize] = ACTIONS(871), + [anon_sym_usize] = ACTIONS(871), + [anon_sym_f32] = ACTIONS(871), + [anon_sym_f64] = ACTIONS(871), + [anon_sym_c_char] = ACTIONS(871), + [anon_sym_c_schar] = ACTIONS(871), + [anon_sym_c_uchar] = ACTIONS(871), + [anon_sym_c_short] = ACTIONS(871), + [anon_sym_c_ushort] = ACTIONS(871), + [anon_sym_c_int] = ACTIONS(871), + [anon_sym_c_uint] = ACTIONS(871), + [anon_sym_c_long] = ACTIONS(871), + [anon_sym_c_ulong] = ACTIONS(871), + [anon_sym_c_longlong] = ACTIONS(871), + [anon_sym_c_ulonglong] = ACTIONS(871), + [anon_sym_c_float] = ACTIONS(871), + [anon_sym_c_double] = ACTIONS(871), + [anon_sym_c_longdouble] = ACTIONS(871), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_xor_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(869), + [anon_sym_return] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_defer] = ACTIONS(871), + [anon_sym_errdefer] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_else] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_expand] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_orelse] = ACTIONS(871), + [anon_sym_catch] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(871), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_LT_LT_PIPE] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_try] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(871), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [sym_none] = ACTIONS(871), + [sym_undefined] = ACTIONS(871), + [sym_sink] = ACTIONS(871), + [sym_integer] = ACTIONS(871), + [sym_float] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_multiline_string] = ACTIONS(869), + [sym_character] = ACTIONS(869), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(869), + }, + [STATE(170)] = { + [ts_builtin_sym_end] = ACTIONS(873), + [sym_identifier] = ACTIONS(875), + [anon_sym_import] = ACTIONS(875), + [anon_sym_test] = ACTIONS(875), + [anon_sym_hide] = ACTIONS(875), + [anon_sym_func] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_EQ] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_QMARK] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_void] = ACTIONS(875), + [anon_sym_anyopaque] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_int] = ACTIONS(875), + [anon_sym_uint] = ACTIONS(875), + [anon_sym_float] = ACTIONS(875), + [anon_sym_range] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_c_char] = ACTIONS(875), + [anon_sym_c_schar] = ACTIONS(875), + [anon_sym_c_uchar] = ACTIONS(875), + [anon_sym_c_short] = ACTIONS(875), + [anon_sym_c_ushort] = ACTIONS(875), + [anon_sym_c_int] = ACTIONS(875), + [anon_sym_c_uint] = ACTIONS(875), + [anon_sym_c_long] = ACTIONS(875), + [anon_sym_c_ulong] = ACTIONS(875), + [anon_sym_c_longlong] = ACTIONS(875), + [anon_sym_c_ulonglong] = ACTIONS(875), + [anon_sym_c_float] = ACTIONS(875), + [anon_sym_c_double] = ACTIONS(875), + [anon_sym_c_longdouble] = ACTIONS(875), + [anon_sym_PLUS_EQ] = ACTIONS(873), + [anon_sym_DASH_EQ] = ACTIONS(873), + [anon_sym_STAR_EQ] = ACTIONS(873), + [anon_sym_SLASH_EQ] = ACTIONS(873), + [anon_sym_AMP_EQ] = ACTIONS(873), + [anon_sym_PIPE_EQ] = ACTIONS(873), + [anon_sym_xor_EQ] = ACTIONS(873), + [anon_sym_LT_LT_EQ] = ACTIONS(873), + [anon_sym_GT_GT_EQ] = ACTIONS(873), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(873), + [anon_sym_return] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_defer] = ACTIONS(875), + [anon_sym_errdefer] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_else] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [anon_sym_expand] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [anon_sym_orelse] = ACTIONS(875), + [anon_sym_catch] = ACTIONS(875), + [anon_sym_or] = ACTIONS(875), + [anon_sym_and] = ACTIONS(875), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_xor] = ACTIONS(875), + [anon_sym_LT_LT] = ACTIONS(875), + [anon_sym_GT_GT] = ACTIONS(875), + [anon_sym_LT_LT_PIPE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_try] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [sym_none] = ACTIONS(875), + [sym_undefined] = ACTIONS(875), + [sym_sink] = ACTIONS(875), + [sym_integer] = ACTIONS(875), + [sym_float] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym_multiline_string] = ACTIONS(873), + [sym_character] = ACTIONS(873), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(873), + }, + [STATE(171)] = { + [ts_builtin_sym_end] = ACTIONS(877), + [sym_identifier] = ACTIONS(879), + [anon_sym_import] = ACTIONS(879), + [anon_sym_test] = ACTIONS(879), + [anon_sym_hide] = ACTIONS(879), + [anon_sym_func] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_void] = ACTIONS(879), + [anon_sym_anyopaque] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_int] = ACTIONS(879), + [anon_sym_uint] = ACTIONS(879), + [anon_sym_float] = ACTIONS(879), + [anon_sym_range] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_c_char] = ACTIONS(879), + [anon_sym_c_schar] = ACTIONS(879), + [anon_sym_c_uchar] = ACTIONS(879), + [anon_sym_c_short] = ACTIONS(879), + [anon_sym_c_ushort] = ACTIONS(879), + [anon_sym_c_int] = ACTIONS(879), + [anon_sym_c_uint] = ACTIONS(879), + [anon_sym_c_long] = ACTIONS(879), + [anon_sym_c_ulong] = ACTIONS(879), + [anon_sym_c_longlong] = ACTIONS(879), + [anon_sym_c_ulonglong] = ACTIONS(879), + [anon_sym_c_float] = ACTIONS(879), + [anon_sym_c_double] = ACTIONS(879), + [anon_sym_c_longdouble] = ACTIONS(879), + [anon_sym_PLUS_EQ] = ACTIONS(877), + [anon_sym_DASH_EQ] = ACTIONS(877), + [anon_sym_STAR_EQ] = ACTIONS(877), + [anon_sym_SLASH_EQ] = ACTIONS(877), + [anon_sym_AMP_EQ] = ACTIONS(877), + [anon_sym_PIPE_EQ] = ACTIONS(877), + [anon_sym_xor_EQ] = ACTIONS(877), + [anon_sym_LT_LT_EQ] = ACTIONS(877), + [anon_sym_GT_GT_EQ] = ACTIONS(877), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(877), + [anon_sym_return] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(879), + [anon_sym_break] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_defer] = ACTIONS(879), + [anon_sym_errdefer] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_else] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [anon_sym_expand] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [anon_sym_orelse] = ACTIONS(879), + [anon_sym_catch] = ACTIONS(879), + [anon_sym_or] = ACTIONS(879), + [anon_sym_and] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_xor] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(879), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_LT_LT_PIPE] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_try] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [sym_none] = ACTIONS(879), + [sym_undefined] = ACTIONS(879), + [sym_sink] = ACTIONS(879), + [sym_integer] = ACTIONS(879), + [sym_float] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym_multiline_string] = ACTIONS(877), + [sym_character] = ACTIONS(877), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(877), + }, + [STATE(172)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -52903,6405 +32388,30549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(281), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), - [anon_sym_defer] = ACTIONS(283), - [anon_sym_errdefer] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(291), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), + }, + [STATE(173)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(881), + }, + [STATE(174)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(883), + }, + [STATE(175)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(176)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(885), + }, + [STATE(177)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(178)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(887), + }, + [STATE(179)] = { + [ts_builtin_sym_end] = ACTIONS(889), + [sym_identifier] = ACTIONS(891), + [anon_sym_import] = ACTIONS(891), + [anon_sym_test] = ACTIONS(891), + [anon_sym_hide] = ACTIONS(891), + [anon_sym_func] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(891), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_void] = ACTIONS(891), + [anon_sym_anyopaque] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_int] = ACTIONS(891), + [anon_sym_uint] = ACTIONS(891), + [anon_sym_float] = ACTIONS(891), + [anon_sym_range] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_c_char] = ACTIONS(891), + [anon_sym_c_schar] = ACTIONS(891), + [anon_sym_c_uchar] = ACTIONS(891), + [anon_sym_c_short] = ACTIONS(891), + [anon_sym_c_ushort] = ACTIONS(891), + [anon_sym_c_int] = ACTIONS(891), + [anon_sym_c_uint] = ACTIONS(891), + [anon_sym_c_long] = ACTIONS(891), + [anon_sym_c_ulong] = ACTIONS(891), + [anon_sym_c_longlong] = ACTIONS(891), + [anon_sym_c_ulonglong] = ACTIONS(891), + [anon_sym_c_float] = ACTIONS(891), + [anon_sym_c_double] = ACTIONS(891), + [anon_sym_c_longdouble] = ACTIONS(891), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_xor_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(889), + [anon_sym_return] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_defer] = ACTIONS(891), + [anon_sym_errdefer] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [anon_sym_expand] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_DOT_DOT] = ACTIONS(891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [anon_sym_orelse] = ACTIONS(891), + [anon_sym_catch] = ACTIONS(891), + [anon_sym_or] = ACTIONS(891), + [anon_sym_and] = ACTIONS(891), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(891), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_LT_LT] = ACTIONS(891), + [anon_sym_GT_GT] = ACTIONS(891), + [anon_sym_LT_LT_PIPE] = ACTIONS(891), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_try] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [sym_none] = ACTIONS(891), + [sym_undefined] = ACTIONS(891), + [sym_sink] = ACTIONS(891), + [sym_integer] = ACTIONS(891), + [sym_float] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym_multiline_string] = ACTIONS(889), + [sym_character] = ACTIONS(889), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(889), + }, + [STATE(180)] = { + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_test] = ACTIONS(895), + [anon_sym_hide] = ACTIONS(895), + [anon_sym_func] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(895), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_void] = ACTIONS(895), + [anon_sym_anyopaque] = ACTIONS(895), + [anon_sym_bool] = ACTIONS(895), + [anon_sym_int] = ACTIONS(895), + [anon_sym_uint] = ACTIONS(895), + [anon_sym_float] = ACTIONS(895), + [anon_sym_range] = ACTIONS(895), + [anon_sym_i8] = ACTIONS(895), + [anon_sym_i16] = ACTIONS(895), + [anon_sym_i32] = ACTIONS(895), + [anon_sym_i64] = ACTIONS(895), + [anon_sym_u8] = ACTIONS(895), + [anon_sym_u16] = ACTIONS(895), + [anon_sym_u32] = ACTIONS(895), + [anon_sym_u64] = ACTIONS(895), + [anon_sym_isize] = ACTIONS(895), + [anon_sym_usize] = ACTIONS(895), + [anon_sym_f32] = ACTIONS(895), + [anon_sym_f64] = ACTIONS(895), + [anon_sym_c_char] = ACTIONS(895), + [anon_sym_c_schar] = ACTIONS(895), + [anon_sym_c_uchar] = ACTIONS(895), + [anon_sym_c_short] = ACTIONS(895), + [anon_sym_c_ushort] = ACTIONS(895), + [anon_sym_c_int] = ACTIONS(895), + [anon_sym_c_uint] = ACTIONS(895), + [anon_sym_c_long] = ACTIONS(895), + [anon_sym_c_ulong] = ACTIONS(895), + [anon_sym_c_longlong] = ACTIONS(895), + [anon_sym_c_ulonglong] = ACTIONS(895), + [anon_sym_c_float] = ACTIONS(895), + [anon_sym_c_double] = ACTIONS(895), + [anon_sym_c_longdouble] = ACTIONS(895), + [anon_sym_PLUS_EQ] = ACTIONS(893), + [anon_sym_DASH_EQ] = ACTIONS(893), + [anon_sym_STAR_EQ] = ACTIONS(893), + [anon_sym_SLASH_EQ] = ACTIONS(893), + [anon_sym_AMP_EQ] = ACTIONS(893), + [anon_sym_PIPE_EQ] = ACTIONS(893), + [anon_sym_xor_EQ] = ACTIONS(893), + [anon_sym_LT_LT_EQ] = ACTIONS(893), + [anon_sym_GT_GT_EQ] = ACTIONS(893), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(893), + [anon_sym_return] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_defer] = ACTIONS(895), + [anon_sym_errdefer] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_expand] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_match] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_orelse] = ACTIONS(895), + [anon_sym_catch] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(895), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_LT_LT_PIPE] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(895), + [anon_sym_CARET] = ACTIONS(893), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [sym_none] = ACTIONS(895), + [sym_undefined] = ACTIONS(895), + [sym_sink] = ACTIONS(895), + [sym_integer] = ACTIONS(895), + [sym_float] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym_multiline_string] = ACTIONS(893), + [sym_character] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(893), + }, + [STATE(181)] = { + [ts_builtin_sym_end] = ACTIONS(897), + [sym_identifier] = ACTIONS(899), + [anon_sym_import] = ACTIONS(899), + [anon_sym_test] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_func] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(899), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_void] = ACTIONS(899), + [anon_sym_anyopaque] = ACTIONS(899), + [anon_sym_bool] = ACTIONS(899), + [anon_sym_int] = ACTIONS(899), + [anon_sym_uint] = ACTIONS(899), + [anon_sym_float] = ACTIONS(899), + [anon_sym_range] = ACTIONS(899), + [anon_sym_i8] = ACTIONS(899), + [anon_sym_i16] = ACTIONS(899), + [anon_sym_i32] = ACTIONS(899), + [anon_sym_i64] = ACTIONS(899), + [anon_sym_u8] = ACTIONS(899), + [anon_sym_u16] = ACTIONS(899), + [anon_sym_u32] = ACTIONS(899), + [anon_sym_u64] = ACTIONS(899), + [anon_sym_isize] = ACTIONS(899), + [anon_sym_usize] = ACTIONS(899), + [anon_sym_f32] = ACTIONS(899), + [anon_sym_f64] = ACTIONS(899), + [anon_sym_c_char] = ACTIONS(899), + [anon_sym_c_schar] = ACTIONS(899), + [anon_sym_c_uchar] = ACTIONS(899), + [anon_sym_c_short] = ACTIONS(899), + [anon_sym_c_ushort] = ACTIONS(899), + [anon_sym_c_int] = ACTIONS(899), + [anon_sym_c_uint] = ACTIONS(899), + [anon_sym_c_long] = ACTIONS(899), + [anon_sym_c_ulong] = ACTIONS(899), + [anon_sym_c_longlong] = ACTIONS(899), + [anon_sym_c_ulonglong] = ACTIONS(899), + [anon_sym_c_float] = ACTIONS(899), + [anon_sym_c_double] = ACTIONS(899), + [anon_sym_c_longdouble] = ACTIONS(899), + [anon_sym_PLUS_EQ] = ACTIONS(897), + [anon_sym_DASH_EQ] = ACTIONS(897), + [anon_sym_STAR_EQ] = ACTIONS(897), + [anon_sym_SLASH_EQ] = ACTIONS(897), + [anon_sym_AMP_EQ] = ACTIONS(897), + [anon_sym_PIPE_EQ] = ACTIONS(897), + [anon_sym_xor_EQ] = ACTIONS(897), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_GT_GT_EQ] = ACTIONS(897), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(897), + [anon_sym_return] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(899), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_defer] = ACTIONS(899), + [anon_sym_errdefer] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_else] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_expand] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [anon_sym_orelse] = ACTIONS(899), + [anon_sym_catch] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(899), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(899), + [anon_sym_GT_GT] = ACTIONS(899), + [anon_sym_LT_LT_PIPE] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_try] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [sym_none] = ACTIONS(899), + [sym_undefined] = ACTIONS(899), + [sym_sink] = ACTIONS(899), + [sym_integer] = ACTIONS(899), + [sym_float] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_multiline_string] = ACTIONS(897), + [sym_character] = ACTIONS(897), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(897), + }, + [STATE(182)] = { + [ts_builtin_sym_end] = ACTIONS(901), + [sym_identifier] = ACTIONS(903), + [anon_sym_import] = ACTIONS(903), + [anon_sym_test] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_func] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_void] = ACTIONS(903), + [anon_sym_anyopaque] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_int] = ACTIONS(903), + [anon_sym_uint] = ACTIONS(903), + [anon_sym_float] = ACTIONS(903), + [anon_sym_range] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_c_char] = ACTIONS(903), + [anon_sym_c_schar] = ACTIONS(903), + [anon_sym_c_uchar] = ACTIONS(903), + [anon_sym_c_short] = ACTIONS(903), + [anon_sym_c_ushort] = ACTIONS(903), + [anon_sym_c_int] = ACTIONS(903), + [anon_sym_c_uint] = ACTIONS(903), + [anon_sym_c_long] = ACTIONS(903), + [anon_sym_c_ulong] = ACTIONS(903), + [anon_sym_c_longlong] = ACTIONS(903), + [anon_sym_c_ulonglong] = ACTIONS(903), + [anon_sym_c_float] = ACTIONS(903), + [anon_sym_c_double] = ACTIONS(903), + [anon_sym_c_longdouble] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(901), + [anon_sym_DASH_EQ] = ACTIONS(901), + [anon_sym_STAR_EQ] = ACTIONS(901), + [anon_sym_SLASH_EQ] = ACTIONS(901), + [anon_sym_AMP_EQ] = ACTIONS(901), + [anon_sym_PIPE_EQ] = ACTIONS(901), + [anon_sym_xor_EQ] = ACTIONS(901), + [anon_sym_LT_LT_EQ] = ACTIONS(901), + [anon_sym_GT_GT_EQ] = ACTIONS(901), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(901), + [anon_sym_return] = ACTIONS(903), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_defer] = ACTIONS(903), + [anon_sym_errdefer] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_else] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_expand] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_orelse] = ACTIONS(903), + [anon_sym_catch] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_LT_LT_PIPE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [sym_none] = ACTIONS(903), + [sym_undefined] = ACTIONS(903), + [sym_sink] = ACTIONS(903), + [sym_integer] = ACTIONS(903), + [sym_float] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_multiline_string] = ACTIONS(901), + [sym_character] = ACTIONS(901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(901), + }, + [STATE(183)] = { + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(907), + [anon_sym_import] = ACTIONS(907), + [anon_sym_test] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_func] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_void] = ACTIONS(907), + [anon_sym_anyopaque] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_uint] = ACTIONS(907), + [anon_sym_float] = ACTIONS(907), + [anon_sym_range] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_c_char] = ACTIONS(907), + [anon_sym_c_schar] = ACTIONS(907), + [anon_sym_c_uchar] = ACTIONS(907), + [anon_sym_c_short] = ACTIONS(907), + [anon_sym_c_ushort] = ACTIONS(907), + [anon_sym_c_int] = ACTIONS(907), + [anon_sym_c_uint] = ACTIONS(907), + [anon_sym_c_long] = ACTIONS(907), + [anon_sym_c_ulong] = ACTIONS(907), + [anon_sym_c_longlong] = ACTIONS(907), + [anon_sym_c_ulonglong] = ACTIONS(907), + [anon_sym_c_float] = ACTIONS(907), + [anon_sym_c_double] = ACTIONS(907), + [anon_sym_c_longdouble] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_xor_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(905), + [anon_sym_return] = ACTIONS(907), + [anon_sym_yield] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_defer] = ACTIONS(907), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_else] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_expand] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_orelse] = ACTIONS(907), + [anon_sym_catch] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_LT_LT_PIPE] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_TILDE] = ACTIONS(905), + [anon_sym_try] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [sym_none] = ACTIONS(907), + [sym_undefined] = ACTIONS(907), + [sym_sink] = ACTIONS(907), + [sym_integer] = ACTIONS(907), + [sym_float] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym_multiline_string] = ACTIONS(905), + [sym_character] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(905), + }, + [STATE(184)] = { + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(911), + [anon_sym_import] = ACTIONS(911), + [anon_sym_test] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_func] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_struct] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_void] = ACTIONS(911), + [anon_sym_anyopaque] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_uint] = ACTIONS(911), + [anon_sym_float] = ACTIONS(911), + [anon_sym_range] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_c_char] = ACTIONS(911), + [anon_sym_c_schar] = ACTIONS(911), + [anon_sym_c_uchar] = ACTIONS(911), + [anon_sym_c_short] = ACTIONS(911), + [anon_sym_c_ushort] = ACTIONS(911), + [anon_sym_c_int] = ACTIONS(911), + [anon_sym_c_uint] = ACTIONS(911), + [anon_sym_c_long] = ACTIONS(911), + [anon_sym_c_ulong] = ACTIONS(911), + [anon_sym_c_longlong] = ACTIONS(911), + [anon_sym_c_ulonglong] = ACTIONS(911), + [anon_sym_c_float] = ACTIONS(911), + [anon_sym_c_double] = ACTIONS(911), + [anon_sym_c_longdouble] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_AMP_EQ] = ACTIONS(909), + [anon_sym_PIPE_EQ] = ACTIONS(909), + [anon_sym_xor_EQ] = ACTIONS(909), + [anon_sym_LT_LT_EQ] = ACTIONS(909), + [anon_sym_GT_GT_EQ] = ACTIONS(909), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(909), + [anon_sym_return] = ACTIONS(911), + [anon_sym_yield] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_defer] = ACTIONS(911), + [anon_sym_errdefer] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_expand] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_orelse] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_LT_LT_PIPE] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [sym_none] = ACTIONS(911), + [sym_undefined] = ACTIONS(911), + [sym_sink] = ACTIONS(911), + [sym_integer] = ACTIONS(911), + [sym_float] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_multiline_string] = ACTIONS(909), + [sym_character] = ACTIONS(909), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(909), + }, + [STATE(185)] = { + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_import] = ACTIONS(915), + [anon_sym_test] = ACTIONS(915), + [anon_sym_hide] = ACTIONS(915), + [anon_sym_func] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_void] = ACTIONS(915), + [anon_sym_anyopaque] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_uint] = ACTIONS(915), + [anon_sym_float] = ACTIONS(915), + [anon_sym_range] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_c_char] = ACTIONS(915), + [anon_sym_c_schar] = ACTIONS(915), + [anon_sym_c_uchar] = ACTIONS(915), + [anon_sym_c_short] = ACTIONS(915), + [anon_sym_c_ushort] = ACTIONS(915), + [anon_sym_c_int] = ACTIONS(915), + [anon_sym_c_uint] = ACTIONS(915), + [anon_sym_c_long] = ACTIONS(915), + [anon_sym_c_ulong] = ACTIONS(915), + [anon_sym_c_longlong] = ACTIONS(915), + [anon_sym_c_ulonglong] = ACTIONS(915), + [anon_sym_c_float] = ACTIONS(915), + [anon_sym_c_double] = ACTIONS(915), + [anon_sym_c_longdouble] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_xor_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(913), + [anon_sym_return] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_defer] = ACTIONS(915), + [anon_sym_errdefer] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_expand] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [anon_sym_orelse] = ACTIONS(915), + [anon_sym_catch] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_LT_LT_PIPE] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [sym_none] = ACTIONS(915), + [sym_undefined] = ACTIONS(915), + [sym_sink] = ACTIONS(915), + [sym_integer] = ACTIONS(915), + [sym_float] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_multiline_string] = ACTIONS(913), + [sym_character] = ACTIONS(913), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(913), + }, + [STATE(186)] = { + [ts_builtin_sym_end] = ACTIONS(367), + [sym_identifier] = ACTIONS(365), + [anon_sym_import] = ACTIONS(365), + [anon_sym_test] = ACTIONS(365), + [anon_sym_hide] = ACTIONS(365), + [anon_sym_func] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_DOLLAR] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_void] = ACTIONS(365), + [anon_sym_anyopaque] = ACTIONS(365), + [anon_sym_bool] = ACTIONS(365), + [anon_sym_int] = ACTIONS(365), + [anon_sym_uint] = ACTIONS(365), + [anon_sym_float] = ACTIONS(365), + [anon_sym_range] = ACTIONS(365), + [anon_sym_i8] = ACTIONS(365), + [anon_sym_i16] = ACTIONS(365), + [anon_sym_i32] = ACTIONS(365), + [anon_sym_i64] = ACTIONS(365), + [anon_sym_u8] = ACTIONS(365), + [anon_sym_u16] = ACTIONS(365), + [anon_sym_u32] = ACTIONS(365), + [anon_sym_u64] = ACTIONS(365), + [anon_sym_isize] = ACTIONS(365), + [anon_sym_usize] = ACTIONS(365), + [anon_sym_f32] = ACTIONS(365), + [anon_sym_f64] = ACTIONS(365), + [anon_sym_c_char] = ACTIONS(365), + [anon_sym_c_schar] = ACTIONS(365), + [anon_sym_c_uchar] = ACTIONS(365), + [anon_sym_c_short] = ACTIONS(365), + [anon_sym_c_ushort] = ACTIONS(365), + [anon_sym_c_int] = ACTIONS(365), + [anon_sym_c_uint] = ACTIONS(365), + [anon_sym_c_long] = ACTIONS(365), + [anon_sym_c_ulong] = ACTIONS(365), + [anon_sym_c_longlong] = ACTIONS(365), + [anon_sym_c_ulonglong] = ACTIONS(365), + [anon_sym_c_float] = ACTIONS(365), + [anon_sym_c_double] = ACTIONS(365), + [anon_sym_c_longdouble] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(367), + [anon_sym_DASH_EQ] = ACTIONS(367), + [anon_sym_STAR_EQ] = ACTIONS(367), + [anon_sym_SLASH_EQ] = ACTIONS(367), + [anon_sym_AMP_EQ] = ACTIONS(367), + [anon_sym_PIPE_EQ] = ACTIONS(367), + [anon_sym_xor_EQ] = ACTIONS(367), + [anon_sym_LT_LT_EQ] = ACTIONS(367), + [anon_sym_GT_GT_EQ] = ACTIONS(367), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(367), + [anon_sym_return] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_defer] = ACTIONS(365), + [anon_sym_errdefer] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_else] = ACTIONS(365), + [anon_sym_while] = ACTIONS(365), + [anon_sym_expand] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(367), + [anon_sym_orelse] = ACTIONS(365), + [anon_sym_catch] = ACTIONS(365), + [anon_sym_or] = ACTIONS(365), + [anon_sym_and] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(367), + [anon_sym_BANG_EQ] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_EQ] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_GT_EQ] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_xor] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_LT_LT_PIPE] = ACTIONS(365), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_try] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [sym_none] = ACTIONS(365), + [sym_undefined] = ACTIONS(365), + [sym_sink] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_multiline_string] = ACTIONS(367), + [sym_character] = ACTIONS(367), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(367), + }, + [STATE(187)] = { + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_import] = ACTIONS(919), + [anon_sym_test] = ACTIONS(919), + [anon_sym_hide] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_anyopaque] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_uint] = ACTIONS(919), + [anon_sym_float] = ACTIONS(919), + [anon_sym_range] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_c_char] = ACTIONS(919), + [anon_sym_c_schar] = ACTIONS(919), + [anon_sym_c_uchar] = ACTIONS(919), + [anon_sym_c_short] = ACTIONS(919), + [anon_sym_c_ushort] = ACTIONS(919), + [anon_sym_c_int] = ACTIONS(919), + [anon_sym_c_uint] = ACTIONS(919), + [anon_sym_c_long] = ACTIONS(919), + [anon_sym_c_ulong] = ACTIONS(919), + [anon_sym_c_longlong] = ACTIONS(919), + [anon_sym_c_ulonglong] = ACTIONS(919), + [anon_sym_c_float] = ACTIONS(919), + [anon_sym_c_double] = ACTIONS(919), + [anon_sym_c_longdouble] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_AMP_EQ] = ACTIONS(917), + [anon_sym_PIPE_EQ] = ACTIONS(917), + [anon_sym_xor_EQ] = ACTIONS(917), + [anon_sym_LT_LT_EQ] = ACTIONS(917), + [anon_sym_GT_GT_EQ] = ACTIONS(917), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(917), + [anon_sym_return] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_defer] = ACTIONS(919), + [anon_sym_errdefer] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_else] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_expand] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_orelse] = ACTIONS(919), + [anon_sym_catch] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_LT_LT_PIPE] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_try] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [sym_none] = ACTIONS(919), + [sym_undefined] = ACTIONS(919), + [sym_sink] = ACTIONS(919), + [sym_integer] = ACTIONS(919), + [sym_float] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym_multiline_string] = ACTIONS(917), + [sym_character] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(917), + }, + [STATE(188)] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [anon_sym_import] = ACTIONS(923), + [anon_sym_test] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_func] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_void] = ACTIONS(923), + [anon_sym_anyopaque] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_uint] = ACTIONS(923), + [anon_sym_float] = ACTIONS(923), + [anon_sym_range] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_c_char] = ACTIONS(923), + [anon_sym_c_schar] = ACTIONS(923), + [anon_sym_c_uchar] = ACTIONS(923), + [anon_sym_c_short] = ACTIONS(923), + [anon_sym_c_ushort] = ACTIONS(923), + [anon_sym_c_int] = ACTIONS(923), + [anon_sym_c_uint] = ACTIONS(923), + [anon_sym_c_long] = ACTIONS(923), + [anon_sym_c_ulong] = ACTIONS(923), + [anon_sym_c_longlong] = ACTIONS(923), + [anon_sym_c_ulonglong] = ACTIONS(923), + [anon_sym_c_float] = ACTIONS(923), + [anon_sym_c_double] = ACTIONS(923), + [anon_sym_c_longdouble] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_xor_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(921), + [anon_sym_return] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_defer] = ACTIONS(923), + [anon_sym_errdefer] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_else] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_expand] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_orelse] = ACTIONS(923), + [anon_sym_catch] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_LT_LT_PIPE] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_try] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [sym_none] = ACTIONS(923), + [sym_undefined] = ACTIONS(923), + [sym_sink] = ACTIONS(923), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [sym_multiline_string] = ACTIONS(921), + [sym_character] = ACTIONS(921), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(921), + }, + [STATE(189)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1737), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1737), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(190)] = { + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(927), + [anon_sym_import] = ACTIONS(927), + [anon_sym_test] = ACTIONS(927), + [anon_sym_hide] = ACTIONS(927), + [anon_sym_func] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_void] = ACTIONS(927), + [anon_sym_anyopaque] = ACTIONS(927), + [anon_sym_bool] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_uint] = ACTIONS(927), + [anon_sym_float] = ACTIONS(927), + [anon_sym_range] = ACTIONS(927), + [anon_sym_i8] = ACTIONS(927), + [anon_sym_i16] = ACTIONS(927), + [anon_sym_i32] = ACTIONS(927), + [anon_sym_i64] = ACTIONS(927), + [anon_sym_u8] = ACTIONS(927), + [anon_sym_u16] = ACTIONS(927), + [anon_sym_u32] = ACTIONS(927), + [anon_sym_u64] = ACTIONS(927), + [anon_sym_isize] = ACTIONS(927), + [anon_sym_usize] = ACTIONS(927), + [anon_sym_f32] = ACTIONS(927), + [anon_sym_f64] = ACTIONS(927), + [anon_sym_c_char] = ACTIONS(927), + [anon_sym_c_schar] = ACTIONS(927), + [anon_sym_c_uchar] = ACTIONS(927), + [anon_sym_c_short] = ACTIONS(927), + [anon_sym_c_ushort] = ACTIONS(927), + [anon_sym_c_int] = ACTIONS(927), + [anon_sym_c_uint] = ACTIONS(927), + [anon_sym_c_long] = ACTIONS(927), + [anon_sym_c_ulong] = ACTIONS(927), + [anon_sym_c_longlong] = ACTIONS(927), + [anon_sym_c_ulonglong] = ACTIONS(927), + [anon_sym_c_float] = ACTIONS(927), + [anon_sym_c_double] = ACTIONS(927), + [anon_sym_c_longdouble] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_AMP_EQ] = ACTIONS(925), + [anon_sym_PIPE_EQ] = ACTIONS(925), + [anon_sym_xor_EQ] = ACTIONS(925), + [anon_sym_LT_LT_EQ] = ACTIONS(925), + [anon_sym_GT_GT_EQ] = ACTIONS(925), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(925), + [anon_sym_return] = ACTIONS(927), + [anon_sym_yield] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_defer] = ACTIONS(927), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_else] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_expand] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_orelse] = ACTIONS(927), + [anon_sym_catch] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_LT_LT_PIPE] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [sym_none] = ACTIONS(927), + [sym_undefined] = ACTIONS(927), + [sym_sink] = ACTIONS(927), + [sym_integer] = ACTIONS(927), + [sym_float] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym_multiline_string] = ACTIONS(925), + [sym_character] = ACTIONS(925), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(925), + }, + [STATE(191)] = { + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [anon_sym_import] = ACTIONS(931), + [anon_sym_test] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_void] = ACTIONS(931), + [anon_sym_anyopaque] = ACTIONS(931), + [anon_sym_bool] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_uint] = ACTIONS(931), + [anon_sym_float] = ACTIONS(931), + [anon_sym_range] = ACTIONS(931), + [anon_sym_i8] = ACTIONS(931), + [anon_sym_i16] = ACTIONS(931), + [anon_sym_i32] = ACTIONS(931), + [anon_sym_i64] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(931), + [anon_sym_u16] = ACTIONS(931), + [anon_sym_u32] = ACTIONS(931), + [anon_sym_u64] = ACTIONS(931), + [anon_sym_isize] = ACTIONS(931), + [anon_sym_usize] = ACTIONS(931), + [anon_sym_f32] = ACTIONS(931), + [anon_sym_f64] = ACTIONS(931), + [anon_sym_c_char] = ACTIONS(931), + [anon_sym_c_schar] = ACTIONS(931), + [anon_sym_c_uchar] = ACTIONS(931), + [anon_sym_c_short] = ACTIONS(931), + [anon_sym_c_ushort] = ACTIONS(931), + [anon_sym_c_int] = ACTIONS(931), + [anon_sym_c_uint] = ACTIONS(931), + [anon_sym_c_long] = ACTIONS(931), + [anon_sym_c_ulong] = ACTIONS(931), + [anon_sym_c_longlong] = ACTIONS(931), + [anon_sym_c_ulonglong] = ACTIONS(931), + [anon_sym_c_float] = ACTIONS(931), + [anon_sym_c_double] = ACTIONS(931), + [anon_sym_c_longdouble] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_xor_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(929), + [anon_sym_return] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_defer] = ACTIONS(931), + [anon_sym_errdefer] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_expand] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_orelse] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_LT_LT_PIPE] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_try] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [sym_none] = ACTIONS(931), + [sym_undefined] = ACTIONS(931), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(931), + [sym_float] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_multiline_string] = ACTIONS(929), + [sym_character] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(929), + }, + [STATE(192)] = { + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(935), + [anon_sym_import] = ACTIONS(935), + [anon_sym_test] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_func] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_void] = ACTIONS(935), + [anon_sym_anyopaque] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_uint] = ACTIONS(935), + [anon_sym_float] = ACTIONS(935), + [anon_sym_range] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_c_char] = ACTIONS(935), + [anon_sym_c_schar] = ACTIONS(935), + [anon_sym_c_uchar] = ACTIONS(935), + [anon_sym_c_short] = ACTIONS(935), + [anon_sym_c_ushort] = ACTIONS(935), + [anon_sym_c_int] = ACTIONS(935), + [anon_sym_c_uint] = ACTIONS(935), + [anon_sym_c_long] = ACTIONS(935), + [anon_sym_c_ulong] = ACTIONS(935), + [anon_sym_c_longlong] = ACTIONS(935), + [anon_sym_c_ulonglong] = ACTIONS(935), + [anon_sym_c_float] = ACTIONS(935), + [anon_sym_c_double] = ACTIONS(935), + [anon_sym_c_longdouble] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_AMP_EQ] = ACTIONS(933), + [anon_sym_PIPE_EQ] = ACTIONS(933), + [anon_sym_xor_EQ] = ACTIONS(933), + [anon_sym_LT_LT_EQ] = ACTIONS(933), + [anon_sym_GT_GT_EQ] = ACTIONS(933), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_defer] = ACTIONS(935), + [anon_sym_errdefer] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_expand] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(933), + [anon_sym_orelse] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_try] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [sym_none] = ACTIONS(935), + [sym_undefined] = ACTIONS(935), + [sym_sink] = ACTIONS(935), + [sym_integer] = ACTIONS(935), + [sym_float] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_multiline_string] = ACTIONS(933), + [sym_character] = ACTIONS(933), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(933), + }, + [STATE(193)] = { + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_test] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_func] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_anyopaque] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_uint] = ACTIONS(939), + [anon_sym_float] = ACTIONS(939), + [anon_sym_range] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_c_char] = ACTIONS(939), + [anon_sym_c_schar] = ACTIONS(939), + [anon_sym_c_uchar] = ACTIONS(939), + [anon_sym_c_short] = ACTIONS(939), + [anon_sym_c_ushort] = ACTIONS(939), + [anon_sym_c_int] = ACTIONS(939), + [anon_sym_c_uint] = ACTIONS(939), + [anon_sym_c_long] = ACTIONS(939), + [anon_sym_c_ulong] = ACTIONS(939), + [anon_sym_c_longlong] = ACTIONS(939), + [anon_sym_c_ulonglong] = ACTIONS(939), + [anon_sym_c_float] = ACTIONS(939), + [anon_sym_c_double] = ACTIONS(939), + [anon_sym_c_longdouble] = ACTIONS(939), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_xor_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(937), + [anon_sym_return] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_defer] = ACTIONS(939), + [anon_sym_errdefer] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_else] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_expand] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_orelse] = ACTIONS(939), + [anon_sym_catch] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(939), + [anon_sym_LT_LT_PIPE] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [sym_none] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [sym_sink] = ACTIONS(939), + [sym_integer] = ACTIONS(939), + [sym_float] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym_multiline_string] = ACTIONS(937), + [sym_character] = ACTIONS(937), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(937), + }, + [STATE(194)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(195)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(196)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(941), + }, + [STATE(197)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(198)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(943), + }, + [STATE(199)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(945), + }, + [STATE(200)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(201)] = { + [ts_builtin_sym_end] = ACTIONS(947), + [sym_identifier] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_test] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_func] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_COMMA] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(949), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(949), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_void] = ACTIONS(949), + [anon_sym_anyopaque] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_int] = ACTIONS(949), + [anon_sym_uint] = ACTIONS(949), + [anon_sym_float] = ACTIONS(949), + [anon_sym_range] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_c_char] = ACTIONS(949), + [anon_sym_c_schar] = ACTIONS(949), + [anon_sym_c_uchar] = ACTIONS(949), + [anon_sym_c_short] = ACTIONS(949), + [anon_sym_c_ushort] = ACTIONS(949), + [anon_sym_c_int] = ACTIONS(949), + [anon_sym_c_uint] = ACTIONS(949), + [anon_sym_c_long] = ACTIONS(949), + [anon_sym_c_ulong] = ACTIONS(949), + [anon_sym_c_longlong] = ACTIONS(949), + [anon_sym_c_ulonglong] = ACTIONS(949), + [anon_sym_c_float] = ACTIONS(949), + [anon_sym_c_double] = ACTIONS(949), + [anon_sym_c_longdouble] = ACTIONS(949), + [anon_sym_PLUS_EQ] = ACTIONS(947), + [anon_sym_DASH_EQ] = ACTIONS(947), + [anon_sym_STAR_EQ] = ACTIONS(947), + [anon_sym_SLASH_EQ] = ACTIONS(947), + [anon_sym_AMP_EQ] = ACTIONS(947), + [anon_sym_PIPE_EQ] = ACTIONS(947), + [anon_sym_xor_EQ] = ACTIONS(947), + [anon_sym_LT_LT_EQ] = ACTIONS(947), + [anon_sym_GT_GT_EQ] = ACTIONS(947), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(947), + [anon_sym_return] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_defer] = ACTIONS(949), + [anon_sym_errdefer] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_expand] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_orelse] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(949), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(949), + [anon_sym_LT_LT_PIPE] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(949), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [sym_none] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [sym_sink] = ACTIONS(949), + [sym_integer] = ACTIONS(949), + [sym_float] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_multiline_string] = ACTIONS(947), + [sym_character] = ACTIONS(947), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(947), + }, + [STATE(202)] = { + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [anon_sym_import] = ACTIONS(953), + [anon_sym_test] = ACTIONS(953), + [anon_sym_hide] = ACTIONS(953), + [anon_sym_func] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_void] = ACTIONS(953), + [anon_sym_anyopaque] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_int] = ACTIONS(953), + [anon_sym_uint] = ACTIONS(953), + [anon_sym_float] = ACTIONS(953), + [anon_sym_range] = ACTIONS(953), + [anon_sym_i8] = ACTIONS(953), + [anon_sym_i16] = ACTIONS(953), + [anon_sym_i32] = ACTIONS(953), + [anon_sym_i64] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(953), + [anon_sym_u16] = ACTIONS(953), + [anon_sym_u32] = ACTIONS(953), + [anon_sym_u64] = ACTIONS(953), + [anon_sym_isize] = ACTIONS(953), + [anon_sym_usize] = ACTIONS(953), + [anon_sym_f32] = ACTIONS(953), + [anon_sym_f64] = ACTIONS(953), + [anon_sym_c_char] = ACTIONS(953), + [anon_sym_c_schar] = ACTIONS(953), + [anon_sym_c_uchar] = ACTIONS(953), + [anon_sym_c_short] = ACTIONS(953), + [anon_sym_c_ushort] = ACTIONS(953), + [anon_sym_c_int] = ACTIONS(953), + [anon_sym_c_uint] = ACTIONS(953), + [anon_sym_c_long] = ACTIONS(953), + [anon_sym_c_ulong] = ACTIONS(953), + [anon_sym_c_longlong] = ACTIONS(953), + [anon_sym_c_ulonglong] = ACTIONS(953), + [anon_sym_c_float] = ACTIONS(953), + [anon_sym_c_double] = ACTIONS(953), + [anon_sym_c_longdouble] = ACTIONS(953), + [anon_sym_PLUS_EQ] = ACTIONS(951), + [anon_sym_DASH_EQ] = ACTIONS(951), + [anon_sym_STAR_EQ] = ACTIONS(951), + [anon_sym_SLASH_EQ] = ACTIONS(951), + [anon_sym_AMP_EQ] = ACTIONS(951), + [anon_sym_PIPE_EQ] = ACTIONS(951), + [anon_sym_xor_EQ] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(951), + [anon_sym_GT_GT_EQ] = ACTIONS(951), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(951), + [anon_sym_return] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_defer] = ACTIONS(953), + [anon_sym_errdefer] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_expand] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_match] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_orelse] = ACTIONS(953), + [anon_sym_catch] = ACTIONS(953), + [anon_sym_or] = ACTIONS(953), + [anon_sym_and] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(953), + [anon_sym_xor] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(953), + [anon_sym_LT_LT_PIPE] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_try] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [sym_none] = ACTIONS(953), + [sym_undefined] = ACTIONS(953), + [sym_sink] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [sym_float] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_multiline_string] = ACTIONS(951), + [sym_character] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(951), + }, + [STATE(203)] = { + [ts_builtin_sym_end] = ACTIONS(955), + [sym_identifier] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_test] = ACTIONS(957), + [anon_sym_hide] = ACTIONS(957), + [anon_sym_func] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(957), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_void] = ACTIONS(957), + [anon_sym_anyopaque] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_int] = ACTIONS(957), + [anon_sym_uint] = ACTIONS(957), + [anon_sym_float] = ACTIONS(957), + [anon_sym_range] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_c_char] = ACTIONS(957), + [anon_sym_c_schar] = ACTIONS(957), + [anon_sym_c_uchar] = ACTIONS(957), + [anon_sym_c_short] = ACTIONS(957), + [anon_sym_c_ushort] = ACTIONS(957), + [anon_sym_c_int] = ACTIONS(957), + [anon_sym_c_uint] = ACTIONS(957), + [anon_sym_c_long] = ACTIONS(957), + [anon_sym_c_ulong] = ACTIONS(957), + [anon_sym_c_longlong] = ACTIONS(957), + [anon_sym_c_ulonglong] = ACTIONS(957), + [anon_sym_c_float] = ACTIONS(957), + [anon_sym_c_double] = ACTIONS(957), + [anon_sym_c_longdouble] = ACTIONS(957), + [anon_sym_PLUS_EQ] = ACTIONS(955), + [anon_sym_DASH_EQ] = ACTIONS(955), + [anon_sym_STAR_EQ] = ACTIONS(955), + [anon_sym_SLASH_EQ] = ACTIONS(955), + [anon_sym_AMP_EQ] = ACTIONS(955), + [anon_sym_PIPE_EQ] = ACTIONS(955), + [anon_sym_xor_EQ] = ACTIONS(955), + [anon_sym_LT_LT_EQ] = ACTIONS(955), + [anon_sym_GT_GT_EQ] = ACTIONS(955), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(955), + [anon_sym_return] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_defer] = ACTIONS(957), + [anon_sym_errdefer] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_expand] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_orelse] = ACTIONS(957), + [anon_sym_catch] = ACTIONS(957), + [anon_sym_or] = ACTIONS(957), + [anon_sym_and] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(957), + [anon_sym_xor] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(957), + [anon_sym_LT_LT_PIPE] = ACTIONS(957), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_try] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [sym_none] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [sym_sink] = ACTIONS(957), + [sym_integer] = ACTIONS(957), + [sym_float] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_multiline_string] = ACTIONS(955), + [sym_character] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(955), + }, + [STATE(204)] = { + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_import] = ACTIONS(961), + [anon_sym_test] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_func] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_void] = ACTIONS(961), + [anon_sym_anyopaque] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_int] = ACTIONS(961), + [anon_sym_uint] = ACTIONS(961), + [anon_sym_float] = ACTIONS(961), + [anon_sym_range] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_c_char] = ACTIONS(961), + [anon_sym_c_schar] = ACTIONS(961), + [anon_sym_c_uchar] = ACTIONS(961), + [anon_sym_c_short] = ACTIONS(961), + [anon_sym_c_ushort] = ACTIONS(961), + [anon_sym_c_int] = ACTIONS(961), + [anon_sym_c_uint] = ACTIONS(961), + [anon_sym_c_long] = ACTIONS(961), + [anon_sym_c_ulong] = ACTIONS(961), + [anon_sym_c_longlong] = ACTIONS(961), + [anon_sym_c_ulonglong] = ACTIONS(961), + [anon_sym_c_float] = ACTIONS(961), + [anon_sym_c_double] = ACTIONS(961), + [anon_sym_c_longdouble] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_STAR_EQ] = ACTIONS(959), + [anon_sym_SLASH_EQ] = ACTIONS(959), + [anon_sym_AMP_EQ] = ACTIONS(959), + [anon_sym_PIPE_EQ] = ACTIONS(959), + [anon_sym_xor_EQ] = ACTIONS(959), + [anon_sym_LT_LT_EQ] = ACTIONS(959), + [anon_sym_GT_GT_EQ] = ACTIONS(959), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_defer] = ACTIONS(961), + [anon_sym_errdefer] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_expand] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(959), + [anon_sym_orelse] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_or] = ACTIONS(961), + [anon_sym_and] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_xor] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_LT_LT_PIPE] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_try] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [sym_none] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [sym_sink] = ACTIONS(961), + [sym_integer] = ACTIONS(961), + [sym_float] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_multiline_string] = ACTIONS(959), + [sym_character] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(959), + }, + [STATE(205)] = { + [ts_builtin_sym_end] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_test] = ACTIONS(965), + [anon_sym_hide] = ACTIONS(965), + [anon_sym_func] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_void] = ACTIONS(965), + [anon_sym_anyopaque] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_int] = ACTIONS(965), + [anon_sym_uint] = ACTIONS(965), + [anon_sym_float] = ACTIONS(965), + [anon_sym_range] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_c_char] = ACTIONS(965), + [anon_sym_c_schar] = ACTIONS(965), + [anon_sym_c_uchar] = ACTIONS(965), + [anon_sym_c_short] = ACTIONS(965), + [anon_sym_c_ushort] = ACTIONS(965), + [anon_sym_c_int] = ACTIONS(965), + [anon_sym_c_uint] = ACTIONS(965), + [anon_sym_c_long] = ACTIONS(965), + [anon_sym_c_ulong] = ACTIONS(965), + [anon_sym_c_longlong] = ACTIONS(965), + [anon_sym_c_ulonglong] = ACTIONS(965), + [anon_sym_c_float] = ACTIONS(965), + [anon_sym_c_double] = ACTIONS(965), + [anon_sym_c_longdouble] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_xor_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(963), + [anon_sym_return] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_defer] = ACTIONS(965), + [anon_sym_errdefer] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_expand] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_orelse] = ACTIONS(965), + [anon_sym_catch] = ACTIONS(965), + [anon_sym_or] = ACTIONS(965), + [anon_sym_and] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_xor] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_LT_LT_PIPE] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [sym_none] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [sym_sink] = ACTIONS(965), + [sym_integer] = ACTIONS(965), + [sym_float] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_multiline_string] = ACTIONS(963), + [sym_character] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(963), + }, + [STATE(206)] = { + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(969), + [anon_sym_import] = ACTIONS(969), + [anon_sym_test] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_func] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_void] = ACTIONS(969), + [anon_sym_anyopaque] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_int] = ACTIONS(969), + [anon_sym_uint] = ACTIONS(969), + [anon_sym_float] = ACTIONS(969), + [anon_sym_range] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_c_char] = ACTIONS(969), + [anon_sym_c_schar] = ACTIONS(969), + [anon_sym_c_uchar] = ACTIONS(969), + [anon_sym_c_short] = ACTIONS(969), + [anon_sym_c_ushort] = ACTIONS(969), + [anon_sym_c_int] = ACTIONS(969), + [anon_sym_c_uint] = ACTIONS(969), + [anon_sym_c_long] = ACTIONS(969), + [anon_sym_c_ulong] = ACTIONS(969), + [anon_sym_c_longlong] = ACTIONS(969), + [anon_sym_c_ulonglong] = ACTIONS(969), + [anon_sym_c_float] = ACTIONS(969), + [anon_sym_c_double] = ACTIONS(969), + [anon_sym_c_longdouble] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_xor_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(967), + [anon_sym_return] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_defer] = ACTIONS(969), + [anon_sym_errdefer] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_expand] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_orelse] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_or] = ACTIONS(969), + [anon_sym_and] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_xor] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_LT_LT_PIPE] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_try] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [sym_none] = ACTIONS(969), + [sym_undefined] = ACTIONS(969), + [sym_sink] = ACTIONS(969), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_multiline_string] = ACTIONS(967), + [sym_character] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(967), + }, + [STATE(207)] = { + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_test] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_func] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(973), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_void] = ACTIONS(973), + [anon_sym_anyopaque] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_int] = ACTIONS(973), + [anon_sym_uint] = ACTIONS(973), + [anon_sym_float] = ACTIONS(973), + [anon_sym_range] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_c_char] = ACTIONS(973), + [anon_sym_c_schar] = ACTIONS(973), + [anon_sym_c_uchar] = ACTIONS(973), + [anon_sym_c_short] = ACTIONS(973), + [anon_sym_c_ushort] = ACTIONS(973), + [anon_sym_c_int] = ACTIONS(973), + [anon_sym_c_uint] = ACTIONS(973), + [anon_sym_c_long] = ACTIONS(973), + [anon_sym_c_ulong] = ACTIONS(973), + [anon_sym_c_longlong] = ACTIONS(973), + [anon_sym_c_ulonglong] = ACTIONS(973), + [anon_sym_c_float] = ACTIONS(973), + [anon_sym_c_double] = ACTIONS(973), + [anon_sym_c_longdouble] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_xor_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(971), + [anon_sym_return] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_defer] = ACTIONS(973), + [anon_sym_errdefer] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_expand] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_orelse] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(973), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(973), + [anon_sym_LT_LT_PIPE] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(971), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [sym_none] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [sym_sink] = ACTIONS(973), + [sym_integer] = ACTIONS(973), + [sym_float] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_multiline_string] = ACTIONS(971), + [sym_character] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(971), + }, + [STATE(208)] = { + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(977), + [anon_sym_import] = ACTIONS(977), + [anon_sym_test] = ACTIONS(977), + [anon_sym_hide] = ACTIONS(977), + [anon_sym_func] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_void] = ACTIONS(977), + [anon_sym_anyopaque] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_int] = ACTIONS(977), + [anon_sym_uint] = ACTIONS(977), + [anon_sym_float] = ACTIONS(977), + [anon_sym_range] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_c_char] = ACTIONS(977), + [anon_sym_c_schar] = ACTIONS(977), + [anon_sym_c_uchar] = ACTIONS(977), + [anon_sym_c_short] = ACTIONS(977), + [anon_sym_c_ushort] = ACTIONS(977), + [anon_sym_c_int] = ACTIONS(977), + [anon_sym_c_uint] = ACTIONS(977), + [anon_sym_c_long] = ACTIONS(977), + [anon_sym_c_ulong] = ACTIONS(977), + [anon_sym_c_longlong] = ACTIONS(977), + [anon_sym_c_ulonglong] = ACTIONS(977), + [anon_sym_c_float] = ACTIONS(977), + [anon_sym_c_double] = ACTIONS(977), + [anon_sym_c_longdouble] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_STAR_EQ] = ACTIONS(975), + [anon_sym_SLASH_EQ] = ACTIONS(975), + [anon_sym_AMP_EQ] = ACTIONS(975), + [anon_sym_PIPE_EQ] = ACTIONS(975), + [anon_sym_xor_EQ] = ACTIONS(975), + [anon_sym_LT_LT_EQ] = ACTIONS(975), + [anon_sym_GT_GT_EQ] = ACTIONS(975), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(975), + [anon_sym_return] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_defer] = ACTIONS(977), + [anon_sym_errdefer] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_expand] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_orelse] = ACTIONS(977), + [anon_sym_catch] = ACTIONS(977), + [anon_sym_or] = ACTIONS(977), + [anon_sym_and] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_xor] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_LT_LT_PIPE] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_try] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [sym_none] = ACTIONS(977), + [sym_undefined] = ACTIONS(977), + [sym_sink] = ACTIONS(977), + [sym_integer] = ACTIONS(977), + [sym_float] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_multiline_string] = ACTIONS(975), + [sym_character] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(975), + }, + [STATE(209)] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_test] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_uint] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_xor_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_expand] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_xor] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_LT_LT_PIPE] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(210)] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_import] = ACTIONS(985), + [anon_sym_test] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_func] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(985), + [anon_sym_anyopaque] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_int] = ACTIONS(985), + [anon_sym_uint] = ACTIONS(985), + [anon_sym_float] = ACTIONS(985), + [anon_sym_range] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_c_char] = ACTIONS(985), + [anon_sym_c_schar] = ACTIONS(985), + [anon_sym_c_uchar] = ACTIONS(985), + [anon_sym_c_short] = ACTIONS(985), + [anon_sym_c_ushort] = ACTIONS(985), + [anon_sym_c_int] = ACTIONS(985), + [anon_sym_c_uint] = ACTIONS(985), + [anon_sym_c_long] = ACTIONS(985), + [anon_sym_c_ulong] = ACTIONS(985), + [anon_sym_c_longlong] = ACTIONS(985), + [anon_sym_c_ulonglong] = ACTIONS(985), + [anon_sym_c_float] = ACTIONS(985), + [anon_sym_c_double] = ACTIONS(985), + [anon_sym_c_longdouble] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(983), + [anon_sym_DASH_EQ] = ACTIONS(983), + [anon_sym_STAR_EQ] = ACTIONS(983), + [anon_sym_SLASH_EQ] = ACTIONS(983), + [anon_sym_AMP_EQ] = ACTIONS(983), + [anon_sym_PIPE_EQ] = ACTIONS(983), + [anon_sym_xor_EQ] = ACTIONS(983), + [anon_sym_LT_LT_EQ] = ACTIONS(983), + [anon_sym_GT_GT_EQ] = ACTIONS(983), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(983), + [anon_sym_return] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_defer] = ACTIONS(985), + [anon_sym_errdefer] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_expand] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_orelse] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_LT_LT_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_try] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [sym_none] = ACTIONS(985), + [sym_undefined] = ACTIONS(985), + [sym_sink] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [sym_float] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_multiline_string] = ACTIONS(983), + [sym_character] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(983), + }, + [STATE(211)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(212)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(213)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(214)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(987), + }, + [STATE(215)] = { + [ts_builtin_sym_end] = ACTIONS(989), + [sym_identifier] = ACTIONS(991), + [anon_sym_import] = ACTIONS(991), + [anon_sym_test] = ACTIONS(991), + [anon_sym_hide] = ACTIONS(991), + [anon_sym_func] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(991), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_void] = ACTIONS(991), + [anon_sym_anyopaque] = ACTIONS(991), + [anon_sym_bool] = ACTIONS(991), + [anon_sym_int] = ACTIONS(991), + [anon_sym_uint] = ACTIONS(991), + [anon_sym_float] = ACTIONS(991), + [anon_sym_range] = ACTIONS(991), + [anon_sym_i8] = ACTIONS(991), + [anon_sym_i16] = ACTIONS(991), + [anon_sym_i32] = ACTIONS(991), + [anon_sym_i64] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(991), + [anon_sym_u16] = ACTIONS(991), + [anon_sym_u32] = ACTIONS(991), + [anon_sym_u64] = ACTIONS(991), + [anon_sym_isize] = ACTIONS(991), + [anon_sym_usize] = ACTIONS(991), + [anon_sym_f32] = ACTIONS(991), + [anon_sym_f64] = ACTIONS(991), + [anon_sym_c_char] = ACTIONS(991), + [anon_sym_c_schar] = ACTIONS(991), + [anon_sym_c_uchar] = ACTIONS(991), + [anon_sym_c_short] = ACTIONS(991), + [anon_sym_c_ushort] = ACTIONS(991), + [anon_sym_c_int] = ACTIONS(991), + [anon_sym_c_uint] = ACTIONS(991), + [anon_sym_c_long] = ACTIONS(991), + [anon_sym_c_ulong] = ACTIONS(991), + [anon_sym_c_longlong] = ACTIONS(991), + [anon_sym_c_ulonglong] = ACTIONS(991), + [anon_sym_c_float] = ACTIONS(991), + [anon_sym_c_double] = ACTIONS(991), + [anon_sym_c_longdouble] = ACTIONS(991), + [anon_sym_PLUS_EQ] = ACTIONS(989), + [anon_sym_DASH_EQ] = ACTIONS(989), + [anon_sym_STAR_EQ] = ACTIONS(989), + [anon_sym_SLASH_EQ] = ACTIONS(989), + [anon_sym_AMP_EQ] = ACTIONS(989), + [anon_sym_PIPE_EQ] = ACTIONS(989), + [anon_sym_xor_EQ] = ACTIONS(989), + [anon_sym_LT_LT_EQ] = ACTIONS(989), + [anon_sym_GT_GT_EQ] = ACTIONS(989), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(989), + [anon_sym_return] = ACTIONS(991), + [anon_sym_yield] = ACTIONS(991), + [anon_sym_break] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_defer] = ACTIONS(991), + [anon_sym_errdefer] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_else] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [anon_sym_expand] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_match] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(989), + [anon_sym_orelse] = ACTIONS(991), + [anon_sym_catch] = ACTIONS(991), + [anon_sym_or] = ACTIONS(991), + [anon_sym_and] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_xor] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_LT_LT_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_try] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_true] = ACTIONS(991), + [anon_sym_false] = ACTIONS(991), + [sym_none] = ACTIONS(991), + [sym_undefined] = ACTIONS(991), + [sym_sink] = ACTIONS(991), + [sym_integer] = ACTIONS(991), + [sym_float] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [sym_multiline_string] = ACTIONS(989), + [sym_character] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(989), + }, + [STATE(216)] = { + [ts_builtin_sym_end] = ACTIONS(993), + [sym_identifier] = ACTIONS(995), + [anon_sym_import] = ACTIONS(995), + [anon_sym_test] = ACTIONS(995), + [anon_sym_hide] = ACTIONS(995), + [anon_sym_func] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(995), + [anon_sym_struct] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_void] = ACTIONS(995), + [anon_sym_anyopaque] = ACTIONS(995), + [anon_sym_bool] = ACTIONS(995), + [anon_sym_int] = ACTIONS(995), + [anon_sym_uint] = ACTIONS(995), + [anon_sym_float] = ACTIONS(995), + [anon_sym_range] = ACTIONS(995), + [anon_sym_i8] = ACTIONS(995), + [anon_sym_i16] = ACTIONS(995), + [anon_sym_i32] = ACTIONS(995), + [anon_sym_i64] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(995), + [anon_sym_u16] = ACTIONS(995), + [anon_sym_u32] = ACTIONS(995), + [anon_sym_u64] = ACTIONS(995), + [anon_sym_isize] = ACTIONS(995), + [anon_sym_usize] = ACTIONS(995), + [anon_sym_f32] = ACTIONS(995), + [anon_sym_f64] = ACTIONS(995), + [anon_sym_c_char] = ACTIONS(995), + [anon_sym_c_schar] = ACTIONS(995), + [anon_sym_c_uchar] = ACTIONS(995), + [anon_sym_c_short] = ACTIONS(995), + [anon_sym_c_ushort] = ACTIONS(995), + [anon_sym_c_int] = ACTIONS(995), + [anon_sym_c_uint] = ACTIONS(995), + [anon_sym_c_long] = ACTIONS(995), + [anon_sym_c_ulong] = ACTIONS(995), + [anon_sym_c_longlong] = ACTIONS(995), + [anon_sym_c_ulonglong] = ACTIONS(995), + [anon_sym_c_float] = ACTIONS(995), + [anon_sym_c_double] = ACTIONS(995), + [anon_sym_c_longdouble] = ACTIONS(995), + [anon_sym_PLUS_EQ] = ACTIONS(993), + [anon_sym_DASH_EQ] = ACTIONS(993), + [anon_sym_STAR_EQ] = ACTIONS(993), + [anon_sym_SLASH_EQ] = ACTIONS(993), + [anon_sym_AMP_EQ] = ACTIONS(993), + [anon_sym_PIPE_EQ] = ACTIONS(993), + [anon_sym_xor_EQ] = ACTIONS(993), + [anon_sym_LT_LT_EQ] = ACTIONS(993), + [anon_sym_GT_GT_EQ] = ACTIONS(993), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(993), + [anon_sym_return] = ACTIONS(995), + [anon_sym_yield] = ACTIONS(995), + [anon_sym_break] = ACTIONS(995), + [anon_sym_continue] = ACTIONS(995), + [anon_sym_defer] = ACTIONS(995), + [anon_sym_errdefer] = ACTIONS(995), + [anon_sym_if] = ACTIONS(995), + [anon_sym_else] = ACTIONS(995), + [anon_sym_while] = ACTIONS(995), + [anon_sym_expand] = ACTIONS(995), + [anon_sym_for] = ACTIONS(995), + [anon_sym_match] = ACTIONS(995), + [anon_sym_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(993), + [anon_sym_orelse] = ACTIONS(995), + [anon_sym_catch] = ACTIONS(995), + [anon_sym_or] = ACTIONS(995), + [anon_sym_and] = ACTIONS(995), + [anon_sym_EQ_EQ] = ACTIONS(993), + [anon_sym_BANG_EQ] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(993), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_xor] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(995), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_LT_LT_PIPE] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_try] = ACTIONS(995), + [anon_sym_DOT] = ACTIONS(995), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_true] = ACTIONS(995), + [anon_sym_false] = ACTIONS(995), + [sym_none] = ACTIONS(995), + [sym_undefined] = ACTIONS(995), + [sym_sink] = ACTIONS(995), + [sym_integer] = ACTIONS(995), + [sym_float] = ACTIONS(993), + [anon_sym_DQUOTE] = ACTIONS(993), + [sym_multiline_string] = ACTIONS(993), + [sym_character] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(993), + }, + [STATE(217)] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [anon_sym_import] = ACTIONS(999), + [anon_sym_test] = ACTIONS(999), + [anon_sym_hide] = ACTIONS(999), + [anon_sym_func] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_void] = ACTIONS(999), + [anon_sym_anyopaque] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), + [anon_sym_uint] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_range] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_c_char] = ACTIONS(999), + [anon_sym_c_schar] = ACTIONS(999), + [anon_sym_c_uchar] = ACTIONS(999), + [anon_sym_c_short] = ACTIONS(999), + [anon_sym_c_ushort] = ACTIONS(999), + [anon_sym_c_int] = ACTIONS(999), + [anon_sym_c_uint] = ACTIONS(999), + [anon_sym_c_long] = ACTIONS(999), + [anon_sym_c_ulong] = ACTIONS(999), + [anon_sym_c_longlong] = ACTIONS(999), + [anon_sym_c_ulonglong] = ACTIONS(999), + [anon_sym_c_float] = ACTIONS(999), + [anon_sym_c_double] = ACTIONS(999), + [anon_sym_c_longdouble] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(997), + [anon_sym_DASH_EQ] = ACTIONS(997), + [anon_sym_STAR_EQ] = ACTIONS(997), + [anon_sym_SLASH_EQ] = ACTIONS(997), + [anon_sym_AMP_EQ] = ACTIONS(997), + [anon_sym_PIPE_EQ] = ACTIONS(997), + [anon_sym_xor_EQ] = ACTIONS(997), + [anon_sym_LT_LT_EQ] = ACTIONS(997), + [anon_sym_GT_GT_EQ] = ACTIONS(997), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(997), + [anon_sym_return] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_defer] = ACTIONS(999), + [anon_sym_errdefer] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [anon_sym_expand] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(997), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_catch] = ACTIONS(999), + [anon_sym_or] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(997), + [anon_sym_BANG_EQ] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_xor] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_LT_LT_PIPE] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_try] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [sym_none] = ACTIONS(999), + [sym_undefined] = ACTIONS(999), + [sym_sink] = ACTIONS(999), + [sym_integer] = ACTIONS(999), + [sym_float] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(997), + [sym_multiline_string] = ACTIONS(997), + [sym_character] = ACTIONS(997), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(997), + }, + [STATE(218)] = { + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_identifier] = ACTIONS(1003), + [anon_sym_import] = ACTIONS(1003), + [anon_sym_test] = ACTIONS(1003), + [anon_sym_hide] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1003), + [anon_sym_anyopaque] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_int] = ACTIONS(1003), + [anon_sym_uint] = ACTIONS(1003), + [anon_sym_float] = ACTIONS(1003), + [anon_sym_range] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_c_char] = ACTIONS(1003), + [anon_sym_c_schar] = ACTIONS(1003), + [anon_sym_c_uchar] = ACTIONS(1003), + [anon_sym_c_short] = ACTIONS(1003), + [anon_sym_c_ushort] = ACTIONS(1003), + [anon_sym_c_int] = ACTIONS(1003), + [anon_sym_c_uint] = ACTIONS(1003), + [anon_sym_c_long] = ACTIONS(1003), + [anon_sym_c_ulong] = ACTIONS(1003), + [anon_sym_c_longlong] = ACTIONS(1003), + [anon_sym_c_ulonglong] = ACTIONS(1003), + [anon_sym_c_float] = ACTIONS(1003), + [anon_sym_c_double] = ACTIONS(1003), + [anon_sym_c_longdouble] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_xor_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_defer] = ACTIONS(1003), + [anon_sym_errdefer] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [anon_sym_expand] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_xor] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_LT_LT_PIPE] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [sym_none] = ACTIONS(1003), + [sym_undefined] = ACTIONS(1003), + [sym_sink] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [sym_float] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [sym_multiline_string] = ACTIONS(1001), + [sym_character] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(219)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(220)] = { + [ts_builtin_sym_end] = ACTIONS(1005), + [sym_identifier] = ACTIONS(1007), + [anon_sym_import] = ACTIONS(1007), + [anon_sym_test] = ACTIONS(1007), + [anon_sym_hide] = ACTIONS(1007), + [anon_sym_func] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1007), + [anon_sym_struct] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1007), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_void] = ACTIONS(1007), + [anon_sym_anyopaque] = ACTIONS(1007), + [anon_sym_bool] = ACTIONS(1007), + [anon_sym_int] = ACTIONS(1007), + [anon_sym_uint] = ACTIONS(1007), + [anon_sym_float] = ACTIONS(1007), + [anon_sym_range] = ACTIONS(1007), + [anon_sym_i8] = ACTIONS(1007), + [anon_sym_i16] = ACTIONS(1007), + [anon_sym_i32] = ACTIONS(1007), + [anon_sym_i64] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1007), + [anon_sym_u16] = ACTIONS(1007), + [anon_sym_u32] = ACTIONS(1007), + [anon_sym_u64] = ACTIONS(1007), + [anon_sym_isize] = ACTIONS(1007), + [anon_sym_usize] = ACTIONS(1007), + [anon_sym_f32] = ACTIONS(1007), + [anon_sym_f64] = ACTIONS(1007), + [anon_sym_c_char] = ACTIONS(1007), + [anon_sym_c_schar] = ACTIONS(1007), + [anon_sym_c_uchar] = ACTIONS(1007), + [anon_sym_c_short] = ACTIONS(1007), + [anon_sym_c_ushort] = ACTIONS(1007), + [anon_sym_c_int] = ACTIONS(1007), + [anon_sym_c_uint] = ACTIONS(1007), + [anon_sym_c_long] = ACTIONS(1007), + [anon_sym_c_ulong] = ACTIONS(1007), + [anon_sym_c_longlong] = ACTIONS(1007), + [anon_sym_c_ulonglong] = ACTIONS(1007), + [anon_sym_c_float] = ACTIONS(1007), + [anon_sym_c_double] = ACTIONS(1007), + [anon_sym_c_longdouble] = ACTIONS(1007), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_xor_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_yield] = ACTIONS(1007), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_defer] = ACTIONS(1007), + [anon_sym_errdefer] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_else] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_expand] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_match] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_orelse] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(1007), + [anon_sym_or] = ACTIONS(1007), + [anon_sym_and] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_xor] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1007), + [anon_sym_LT_LT_PIPE] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1007), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [sym_none] = ACTIONS(1007), + [sym_undefined] = ACTIONS(1007), + [sym_sink] = ACTIONS(1007), + [sym_integer] = ACTIONS(1007), + [sym_float] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [sym_multiline_string] = ACTIONS(1005), + [sym_character] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1005), + }, + [STATE(221)] = { + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_identifier] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(1011), + [anon_sym_test] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_func] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_struct] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_RPAREN] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_void] = ACTIONS(1011), + [anon_sym_anyopaque] = ACTIONS(1011), + [anon_sym_bool] = ACTIONS(1011), + [anon_sym_int] = ACTIONS(1011), + [anon_sym_uint] = ACTIONS(1011), + [anon_sym_float] = ACTIONS(1011), + [anon_sym_range] = ACTIONS(1011), + [anon_sym_i8] = ACTIONS(1011), + [anon_sym_i16] = ACTIONS(1011), + [anon_sym_i32] = ACTIONS(1011), + [anon_sym_i64] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1011), + [anon_sym_u16] = ACTIONS(1011), + [anon_sym_u32] = ACTIONS(1011), + [anon_sym_u64] = ACTIONS(1011), + [anon_sym_isize] = ACTIONS(1011), + [anon_sym_usize] = ACTIONS(1011), + [anon_sym_f32] = ACTIONS(1011), + [anon_sym_f64] = ACTIONS(1011), + [anon_sym_c_char] = ACTIONS(1011), + [anon_sym_c_schar] = ACTIONS(1011), + [anon_sym_c_uchar] = ACTIONS(1011), + [anon_sym_c_short] = ACTIONS(1011), + [anon_sym_c_ushort] = ACTIONS(1011), + [anon_sym_c_int] = ACTIONS(1011), + [anon_sym_c_uint] = ACTIONS(1011), + [anon_sym_c_long] = ACTIONS(1011), + [anon_sym_c_ulong] = ACTIONS(1011), + [anon_sym_c_longlong] = ACTIONS(1011), + [anon_sym_c_ulonglong] = ACTIONS(1011), + [anon_sym_c_float] = ACTIONS(1011), + [anon_sym_c_double] = ACTIONS(1011), + [anon_sym_c_longdouble] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1009), + [anon_sym_DASH_EQ] = ACTIONS(1009), + [anon_sym_STAR_EQ] = ACTIONS(1009), + [anon_sym_SLASH_EQ] = ACTIONS(1009), + [anon_sym_AMP_EQ] = ACTIONS(1009), + [anon_sym_PIPE_EQ] = ACTIONS(1009), + [anon_sym_xor_EQ] = ACTIONS(1009), + [anon_sym_LT_LT_EQ] = ACTIONS(1009), + [anon_sym_GT_GT_EQ] = ACTIONS(1009), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_defer] = ACTIONS(1011), + [anon_sym_errdefer] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_expand] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), + [anon_sym_orelse] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_or] = ACTIONS(1011), + [anon_sym_and] = ACTIONS(1011), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1011), + [anon_sym_GT_EQ] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_xor] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1011), + [anon_sym_GT_GT] = ACTIONS(1011), + [anon_sym_LT_LT_PIPE] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [sym_none] = ACTIONS(1011), + [sym_undefined] = ACTIONS(1011), + [sym_sink] = ACTIONS(1011), + [sym_integer] = ACTIONS(1011), + [sym_float] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [sym_multiline_string] = ACTIONS(1009), + [sym_character] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1009), + }, + [STATE(222)] = { + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1015), + [anon_sym_import] = ACTIONS(1015), + [anon_sym_test] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_func] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_QMARK] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1015), + [anon_sym_anyopaque] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_int] = ACTIONS(1015), + [anon_sym_uint] = ACTIONS(1015), + [anon_sym_float] = ACTIONS(1015), + [anon_sym_range] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_c_char] = ACTIONS(1015), + [anon_sym_c_schar] = ACTIONS(1015), + [anon_sym_c_uchar] = ACTIONS(1015), + [anon_sym_c_short] = ACTIONS(1015), + [anon_sym_c_ushort] = ACTIONS(1015), + [anon_sym_c_int] = ACTIONS(1015), + [anon_sym_c_uint] = ACTIONS(1015), + [anon_sym_c_long] = ACTIONS(1015), + [anon_sym_c_ulong] = ACTIONS(1015), + [anon_sym_c_longlong] = ACTIONS(1015), + [anon_sym_c_ulonglong] = ACTIONS(1015), + [anon_sym_c_float] = ACTIONS(1015), + [anon_sym_c_double] = ACTIONS(1015), + [anon_sym_c_longdouble] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_AMP_EQ] = ACTIONS(1013), + [anon_sym_PIPE_EQ] = ACTIONS(1013), + [anon_sym_xor_EQ] = ACTIONS(1013), + [anon_sym_LT_LT_EQ] = ACTIONS(1013), + [anon_sym_GT_GT_EQ] = ACTIONS(1013), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_defer] = ACTIONS(1015), + [anon_sym_errdefer] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_expand] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_orelse] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_or] = ACTIONS(1015), + [anon_sym_and] = ACTIONS(1015), + [anon_sym_EQ_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1015), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_xor] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1015), + [anon_sym_GT_GT] = ACTIONS(1015), + [anon_sym_LT_LT_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_SLASH] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1015), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [sym_none] = ACTIONS(1015), + [sym_undefined] = ACTIONS(1015), + [sym_sink] = ACTIONS(1015), + [sym_integer] = ACTIONS(1015), + [sym_float] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_multiline_string] = ACTIONS(1013), + [sym_character] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1013), + }, + [STATE(223)] = { + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [anon_sym_import] = ACTIONS(1019), + [anon_sym_test] = ACTIONS(1019), + [anon_sym_hide] = ACTIONS(1019), + [anon_sym_func] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_void] = ACTIONS(1019), + [anon_sym_anyopaque] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_int] = ACTIONS(1019), + [anon_sym_uint] = ACTIONS(1019), + [anon_sym_float] = ACTIONS(1019), + [anon_sym_range] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_c_char] = ACTIONS(1019), + [anon_sym_c_schar] = ACTIONS(1019), + [anon_sym_c_uchar] = ACTIONS(1019), + [anon_sym_c_short] = ACTIONS(1019), + [anon_sym_c_ushort] = ACTIONS(1019), + [anon_sym_c_int] = ACTIONS(1019), + [anon_sym_c_uint] = ACTIONS(1019), + [anon_sym_c_long] = ACTIONS(1019), + [anon_sym_c_ulong] = ACTIONS(1019), + [anon_sym_c_longlong] = ACTIONS(1019), + [anon_sym_c_ulonglong] = ACTIONS(1019), + [anon_sym_c_float] = ACTIONS(1019), + [anon_sym_c_double] = ACTIONS(1019), + [anon_sym_c_longdouble] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_xor_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1017), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_defer] = ACTIONS(1019), + [anon_sym_errdefer] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_else] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_expand] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_orelse] = ACTIONS(1019), + [anon_sym_catch] = ACTIONS(1019), + [anon_sym_or] = ACTIONS(1019), + [anon_sym_and] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_xor] = ACTIONS(1019), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_LT_LT_PIPE] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [sym_none] = ACTIONS(1019), + [sym_undefined] = ACTIONS(1019), + [sym_sink] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym_multiline_string] = ACTIONS(1017), + [sym_character] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1017), + }, + [STATE(224)] = { + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_test] = ACTIONS(1023), + [anon_sym_hide] = ACTIONS(1023), + [anon_sym_func] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_anyopaque] = ACTIONS(1023), + [anon_sym_bool] = ACTIONS(1023), + [anon_sym_int] = ACTIONS(1023), + [anon_sym_uint] = ACTIONS(1023), + [anon_sym_float] = ACTIONS(1023), + [anon_sym_range] = ACTIONS(1023), + [anon_sym_i8] = ACTIONS(1023), + [anon_sym_i16] = ACTIONS(1023), + [anon_sym_i32] = ACTIONS(1023), + [anon_sym_i64] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1023), + [anon_sym_u16] = ACTIONS(1023), + [anon_sym_u32] = ACTIONS(1023), + [anon_sym_u64] = ACTIONS(1023), + [anon_sym_isize] = ACTIONS(1023), + [anon_sym_usize] = ACTIONS(1023), + [anon_sym_f32] = ACTIONS(1023), + [anon_sym_f64] = ACTIONS(1023), + [anon_sym_c_char] = ACTIONS(1023), + [anon_sym_c_schar] = ACTIONS(1023), + [anon_sym_c_uchar] = ACTIONS(1023), + [anon_sym_c_short] = ACTIONS(1023), + [anon_sym_c_ushort] = ACTIONS(1023), + [anon_sym_c_int] = ACTIONS(1023), + [anon_sym_c_uint] = ACTIONS(1023), + [anon_sym_c_long] = ACTIONS(1023), + [anon_sym_c_ulong] = ACTIONS(1023), + [anon_sym_c_longlong] = ACTIONS(1023), + [anon_sym_c_ulonglong] = ACTIONS(1023), + [anon_sym_c_float] = ACTIONS(1023), + [anon_sym_c_double] = ACTIONS(1023), + [anon_sym_c_longdouble] = ACTIONS(1023), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_xor_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_defer] = ACTIONS(1023), + [anon_sym_errdefer] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_expand] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_match] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_orelse] = ACTIONS(1023), + [anon_sym_catch] = ACTIONS(1023), + [anon_sym_or] = ACTIONS(1023), + [anon_sym_and] = ACTIONS(1023), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_xor] = ACTIONS(1023), + [anon_sym_LT_LT] = ACTIONS(1023), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_LT_LT_PIPE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [sym_none] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [sym_sink] = ACTIONS(1023), + [sym_integer] = ACTIONS(1023), + [sym_float] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym_multiline_string] = ACTIONS(1021), + [sym_character] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1021), + }, + [STATE(225)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1737), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1737), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1027), + }, + [STATE(226)] = { + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(1031), + [anon_sym_test] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_func] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1031), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_anyopaque] = ACTIONS(1031), + [anon_sym_bool] = ACTIONS(1031), + [anon_sym_int] = ACTIONS(1031), + [anon_sym_uint] = ACTIONS(1031), + [anon_sym_float] = ACTIONS(1031), + [anon_sym_range] = ACTIONS(1031), + [anon_sym_i8] = ACTIONS(1031), + [anon_sym_i16] = ACTIONS(1031), + [anon_sym_i32] = ACTIONS(1031), + [anon_sym_i64] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1031), + [anon_sym_u16] = ACTIONS(1031), + [anon_sym_u32] = ACTIONS(1031), + [anon_sym_u64] = ACTIONS(1031), + [anon_sym_isize] = ACTIONS(1031), + [anon_sym_usize] = ACTIONS(1031), + [anon_sym_f32] = ACTIONS(1031), + [anon_sym_f64] = ACTIONS(1031), + [anon_sym_c_char] = ACTIONS(1031), + [anon_sym_c_schar] = ACTIONS(1031), + [anon_sym_c_uchar] = ACTIONS(1031), + [anon_sym_c_short] = ACTIONS(1031), + [anon_sym_c_ushort] = ACTIONS(1031), + [anon_sym_c_int] = ACTIONS(1031), + [anon_sym_c_uint] = ACTIONS(1031), + [anon_sym_c_long] = ACTIONS(1031), + [anon_sym_c_ulong] = ACTIONS(1031), + [anon_sym_c_longlong] = ACTIONS(1031), + [anon_sym_c_ulonglong] = ACTIONS(1031), + [anon_sym_c_float] = ACTIONS(1031), + [anon_sym_c_double] = ACTIONS(1031), + [anon_sym_c_longdouble] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_xor_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_defer] = ACTIONS(1031), + [anon_sym_errdefer] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_expand] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_orelse] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_or] = ACTIONS(1031), + [anon_sym_and] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_xor] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1031), + [anon_sym_LT_LT_PIPE] = ACTIONS(1031), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1031), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [sym_none] = ACTIONS(1031), + [sym_undefined] = ACTIONS(1031), + [sym_sink] = ACTIONS(1031), + [sym_integer] = ACTIONS(1031), + [sym_float] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_multiline_string] = ACTIONS(1029), + [sym_character] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1029), + }, + [STATE(227)] = { + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_test] = ACTIONS(1035), + [anon_sym_hide] = ACTIONS(1035), + [anon_sym_func] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_anyopaque] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), + [anon_sym_uint] = ACTIONS(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_range] = ACTIONS(1035), + [anon_sym_i8] = ACTIONS(1035), + [anon_sym_i16] = ACTIONS(1035), + [anon_sym_i32] = ACTIONS(1035), + [anon_sym_i64] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1035), + [anon_sym_u16] = ACTIONS(1035), + [anon_sym_u32] = ACTIONS(1035), + [anon_sym_u64] = ACTIONS(1035), + [anon_sym_isize] = ACTIONS(1035), + [anon_sym_usize] = ACTIONS(1035), + [anon_sym_f32] = ACTIONS(1035), + [anon_sym_f64] = ACTIONS(1035), + [anon_sym_c_char] = ACTIONS(1035), + [anon_sym_c_schar] = ACTIONS(1035), + [anon_sym_c_uchar] = ACTIONS(1035), + [anon_sym_c_short] = ACTIONS(1035), + [anon_sym_c_ushort] = ACTIONS(1035), + [anon_sym_c_int] = ACTIONS(1035), + [anon_sym_c_uint] = ACTIONS(1035), + [anon_sym_c_long] = ACTIONS(1035), + [anon_sym_c_ulong] = ACTIONS(1035), + [anon_sym_c_longlong] = ACTIONS(1035), + [anon_sym_c_ulonglong] = ACTIONS(1035), + [anon_sym_c_float] = ACTIONS(1035), + [anon_sym_c_double] = ACTIONS(1035), + [anon_sym_c_longdouble] = ACTIONS(1035), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_AMP_EQ] = ACTIONS(1033), + [anon_sym_PIPE_EQ] = ACTIONS(1033), + [anon_sym_xor_EQ] = ACTIONS(1033), + [anon_sym_LT_LT_EQ] = ACTIONS(1033), + [anon_sym_GT_GT_EQ] = ACTIONS(1033), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1035), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_defer] = ACTIONS(1035), + [anon_sym_errdefer] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_expand] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_match] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_orelse] = ACTIONS(1035), + [anon_sym_catch] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1035), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1035), + [anon_sym_LT_LT_PIPE] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1035), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [sym_none] = ACTIONS(1035), + [sym_undefined] = ACTIONS(1035), + [sym_sink] = ACTIONS(1035), + [sym_integer] = ACTIONS(1035), + [sym_float] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_multiline_string] = ACTIONS(1033), + [sym_character] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1033), + }, + [STATE(228)] = { + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_import] = ACTIONS(1039), + [anon_sym_test] = ACTIONS(1039), + [anon_sym_hide] = ACTIONS(1039), + [anon_sym_func] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_RPAREN] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1039), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_anyopaque] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_int] = ACTIONS(1039), + [anon_sym_uint] = ACTIONS(1039), + [anon_sym_float] = ACTIONS(1039), + [anon_sym_range] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_c_char] = ACTIONS(1039), + [anon_sym_c_schar] = ACTIONS(1039), + [anon_sym_c_uchar] = ACTIONS(1039), + [anon_sym_c_short] = ACTIONS(1039), + [anon_sym_c_ushort] = ACTIONS(1039), + [anon_sym_c_int] = ACTIONS(1039), + [anon_sym_c_uint] = ACTIONS(1039), + [anon_sym_c_long] = ACTIONS(1039), + [anon_sym_c_ulong] = ACTIONS(1039), + [anon_sym_c_longlong] = ACTIONS(1039), + [anon_sym_c_ulonglong] = ACTIONS(1039), + [anon_sym_c_float] = ACTIONS(1039), + [anon_sym_c_double] = ACTIONS(1039), + [anon_sym_c_longdouble] = ACTIONS(1039), + [anon_sym_PLUS_EQ] = ACTIONS(1037), + [anon_sym_DASH_EQ] = ACTIONS(1037), + [anon_sym_STAR_EQ] = ACTIONS(1037), + [anon_sym_SLASH_EQ] = ACTIONS(1037), + [anon_sym_AMP_EQ] = ACTIONS(1037), + [anon_sym_PIPE_EQ] = ACTIONS(1037), + [anon_sym_xor_EQ] = ACTIONS(1037), + [anon_sym_LT_LT_EQ] = ACTIONS(1037), + [anon_sym_GT_GT_EQ] = ACTIONS(1037), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_defer] = ACTIONS(1039), + [anon_sym_errdefer] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_expand] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_orelse] = ACTIONS(1039), + [anon_sym_catch] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1039), + [anon_sym_LT_LT_PIPE] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [sym_none] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1039), + [sym_sink] = ACTIONS(1039), + [sym_integer] = ACTIONS(1039), + [sym_float] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_multiline_string] = ACTIONS(1037), + [sym_character] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1037), + }, + [STATE(229)] = { + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1043), + [anon_sym_test] = ACTIONS(1043), + [anon_sym_hide] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1043), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1043), + [anon_sym_anyopaque] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_int] = ACTIONS(1043), + [anon_sym_uint] = ACTIONS(1043), + [anon_sym_float] = ACTIONS(1043), + [anon_sym_range] = ACTIONS(1043), + [anon_sym_i8] = ACTIONS(1043), + [anon_sym_i16] = ACTIONS(1043), + [anon_sym_i32] = ACTIONS(1043), + [anon_sym_i64] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1043), + [anon_sym_u16] = ACTIONS(1043), + [anon_sym_u32] = ACTIONS(1043), + [anon_sym_u64] = ACTIONS(1043), + [anon_sym_isize] = ACTIONS(1043), + [anon_sym_usize] = ACTIONS(1043), + [anon_sym_f32] = ACTIONS(1043), + [anon_sym_f64] = ACTIONS(1043), + [anon_sym_c_char] = ACTIONS(1043), + [anon_sym_c_schar] = ACTIONS(1043), + [anon_sym_c_uchar] = ACTIONS(1043), + [anon_sym_c_short] = ACTIONS(1043), + [anon_sym_c_ushort] = ACTIONS(1043), + [anon_sym_c_int] = ACTIONS(1043), + [anon_sym_c_uint] = ACTIONS(1043), + [anon_sym_c_long] = ACTIONS(1043), + [anon_sym_c_ulong] = ACTIONS(1043), + [anon_sym_c_longlong] = ACTIONS(1043), + [anon_sym_c_ulonglong] = ACTIONS(1043), + [anon_sym_c_float] = ACTIONS(1043), + [anon_sym_c_double] = ACTIONS(1043), + [anon_sym_c_longdouble] = ACTIONS(1043), + [anon_sym_PLUS_EQ] = ACTIONS(1041), + [anon_sym_DASH_EQ] = ACTIONS(1041), + [anon_sym_STAR_EQ] = ACTIONS(1041), + [anon_sym_SLASH_EQ] = ACTIONS(1041), + [anon_sym_AMP_EQ] = ACTIONS(1041), + [anon_sym_PIPE_EQ] = ACTIONS(1041), + [anon_sym_xor_EQ] = ACTIONS(1041), + [anon_sym_LT_LT_EQ] = ACTIONS(1041), + [anon_sym_GT_GT_EQ] = ACTIONS(1041), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_defer] = ACTIONS(1043), + [anon_sym_errdefer] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_expand] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_match] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_orelse] = ACTIONS(1043), + [anon_sym_catch] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_LT_LT_PIPE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1043), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [sym_none] = ACTIONS(1043), + [sym_undefined] = ACTIONS(1043), + [sym_sink] = ACTIONS(1043), + [sym_integer] = ACTIONS(1043), + [sym_float] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_multiline_string] = ACTIONS(1041), + [sym_character] = ACTIONS(1041), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1041), + }, + [STATE(230)] = { + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [anon_sym_import] = ACTIONS(1047), + [anon_sym_test] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_func] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_COMMA] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1047), + [anon_sym_DOLLAR] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1047), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1047), + [anon_sym_anyopaque] = ACTIONS(1047), + [anon_sym_bool] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), + [anon_sym_uint] = ACTIONS(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_range] = ACTIONS(1047), + [anon_sym_i8] = ACTIONS(1047), + [anon_sym_i16] = ACTIONS(1047), + [anon_sym_i32] = ACTIONS(1047), + [anon_sym_i64] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1047), + [anon_sym_u16] = ACTIONS(1047), + [anon_sym_u32] = ACTIONS(1047), + [anon_sym_u64] = ACTIONS(1047), + [anon_sym_isize] = ACTIONS(1047), + [anon_sym_usize] = ACTIONS(1047), + [anon_sym_f32] = ACTIONS(1047), + [anon_sym_f64] = ACTIONS(1047), + [anon_sym_c_char] = ACTIONS(1047), + [anon_sym_c_schar] = ACTIONS(1047), + [anon_sym_c_uchar] = ACTIONS(1047), + [anon_sym_c_short] = ACTIONS(1047), + [anon_sym_c_ushort] = ACTIONS(1047), + [anon_sym_c_int] = ACTIONS(1047), + [anon_sym_c_uint] = ACTIONS(1047), + [anon_sym_c_long] = ACTIONS(1047), + [anon_sym_c_ulong] = ACTIONS(1047), + [anon_sym_c_longlong] = ACTIONS(1047), + [anon_sym_c_ulonglong] = ACTIONS(1047), + [anon_sym_c_float] = ACTIONS(1047), + [anon_sym_c_double] = ACTIONS(1047), + [anon_sym_c_longdouble] = ACTIONS(1047), + [anon_sym_PLUS_EQ] = ACTIONS(1045), + [anon_sym_DASH_EQ] = ACTIONS(1045), + [anon_sym_STAR_EQ] = ACTIONS(1045), + [anon_sym_SLASH_EQ] = ACTIONS(1045), + [anon_sym_AMP_EQ] = ACTIONS(1045), + [anon_sym_PIPE_EQ] = ACTIONS(1045), + [anon_sym_xor_EQ] = ACTIONS(1045), + [anon_sym_LT_LT_EQ] = ACTIONS(1045), + [anon_sym_GT_GT_EQ] = ACTIONS(1045), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_yield] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_defer] = ACTIONS(1047), + [anon_sym_errdefer] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_expand] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1045), + [anon_sym_orelse] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1047), + [anon_sym_GT_GT] = ACTIONS(1047), + [anon_sym_LT_LT_PIPE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1047), + [anon_sym_SLASH] = ACTIONS(1047), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [sym_none] = ACTIONS(1047), + [sym_undefined] = ACTIONS(1047), + [sym_sink] = ACTIONS(1047), + [sym_integer] = ACTIONS(1047), + [sym_float] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_multiline_string] = ACTIONS(1045), + [sym_character] = ACTIONS(1045), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1045), + }, + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_test] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1051), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = ACTIONS(1051), + [anon_sym_uint] = ACTIONS(1051), + [anon_sym_float] = ACTIONS(1051), + [anon_sym_range] = ACTIONS(1051), + [anon_sym_i8] = ACTIONS(1051), + [anon_sym_i16] = ACTIONS(1051), + [anon_sym_i32] = ACTIONS(1051), + [anon_sym_i64] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1051), + [anon_sym_u16] = ACTIONS(1051), + [anon_sym_u32] = ACTIONS(1051), + [anon_sym_u64] = ACTIONS(1051), + [anon_sym_isize] = ACTIONS(1051), + [anon_sym_usize] = ACTIONS(1051), + [anon_sym_f32] = ACTIONS(1051), + [anon_sym_f64] = ACTIONS(1051), + [anon_sym_c_char] = ACTIONS(1051), + [anon_sym_c_schar] = ACTIONS(1051), + [anon_sym_c_uchar] = ACTIONS(1051), + [anon_sym_c_short] = ACTIONS(1051), + [anon_sym_c_ushort] = ACTIONS(1051), + [anon_sym_c_int] = ACTIONS(1051), + [anon_sym_c_uint] = ACTIONS(1051), + [anon_sym_c_long] = ACTIONS(1051), + [anon_sym_c_ulong] = ACTIONS(1051), + [anon_sym_c_longlong] = ACTIONS(1051), + [anon_sym_c_ulonglong] = ACTIONS(1051), + [anon_sym_c_float] = ACTIONS(1051), + [anon_sym_c_double] = ACTIONS(1051), + [anon_sym_c_longdouble] = ACTIONS(1051), + [anon_sym_PLUS_EQ] = ACTIONS(1049), + [anon_sym_DASH_EQ] = ACTIONS(1049), + [anon_sym_STAR_EQ] = ACTIONS(1049), + [anon_sym_SLASH_EQ] = ACTIONS(1049), + [anon_sym_AMP_EQ] = ACTIONS(1049), + [anon_sym_PIPE_EQ] = ACTIONS(1049), + [anon_sym_xor_EQ] = ACTIONS(1049), + [anon_sym_LT_LT_EQ] = ACTIONS(1049), + [anon_sym_GT_GT_EQ] = ACTIONS(1049), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_defer] = ACTIONS(1051), + [anon_sym_errdefer] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_expand] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), + [anon_sym_orelse] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1051), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1051), + [anon_sym_LT_LT_PIPE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [sym_none] = ACTIONS(1051), + [sym_undefined] = ACTIONS(1051), + [sym_sink] = ACTIONS(1051), + [sym_integer] = ACTIONS(1051), + [sym_float] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_multiline_string] = ACTIONS(1049), + [sym_character] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1049), + }, + [STATE(232)] = { + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1055), + [anon_sym_import] = ACTIONS(1055), + [anon_sym_test] = ACTIONS(1055), + [anon_sym_hide] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_EQ] = ACTIONS(1055), + [anon_sym_struct] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_COMMA] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1055), + [anon_sym_QMARK] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_void] = ACTIONS(1055), + [anon_sym_anyopaque] = ACTIONS(1055), + [anon_sym_bool] = ACTIONS(1055), + [anon_sym_int] = ACTIONS(1055), + [anon_sym_uint] = ACTIONS(1055), + [anon_sym_float] = ACTIONS(1055), + [anon_sym_range] = ACTIONS(1055), + [anon_sym_i8] = ACTIONS(1055), + [anon_sym_i16] = ACTIONS(1055), + [anon_sym_i32] = ACTIONS(1055), + [anon_sym_i64] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1055), + [anon_sym_u16] = ACTIONS(1055), + [anon_sym_u32] = ACTIONS(1055), + [anon_sym_u64] = ACTIONS(1055), + [anon_sym_isize] = ACTIONS(1055), + [anon_sym_usize] = ACTIONS(1055), + [anon_sym_f32] = ACTIONS(1055), + [anon_sym_f64] = ACTIONS(1055), + [anon_sym_c_char] = ACTIONS(1055), + [anon_sym_c_schar] = ACTIONS(1055), + [anon_sym_c_uchar] = ACTIONS(1055), + [anon_sym_c_short] = ACTIONS(1055), + [anon_sym_c_ushort] = ACTIONS(1055), + [anon_sym_c_int] = ACTIONS(1055), + [anon_sym_c_uint] = ACTIONS(1055), + [anon_sym_c_long] = ACTIONS(1055), + [anon_sym_c_ulong] = ACTIONS(1055), + [anon_sym_c_longlong] = ACTIONS(1055), + [anon_sym_c_ulonglong] = ACTIONS(1055), + [anon_sym_c_float] = ACTIONS(1055), + [anon_sym_c_double] = ACTIONS(1055), + [anon_sym_c_longdouble] = ACTIONS(1055), + [anon_sym_PLUS_EQ] = ACTIONS(1053), + [anon_sym_DASH_EQ] = ACTIONS(1053), + [anon_sym_STAR_EQ] = ACTIONS(1053), + [anon_sym_SLASH_EQ] = ACTIONS(1053), + [anon_sym_AMP_EQ] = ACTIONS(1053), + [anon_sym_PIPE_EQ] = ACTIONS(1053), + [anon_sym_xor_EQ] = ACTIONS(1053), + [anon_sym_LT_LT_EQ] = ACTIONS(1053), + [anon_sym_GT_GT_EQ] = ACTIONS(1053), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1053), + [anon_sym_return] = ACTIONS(1055), + [anon_sym_yield] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1055), + [anon_sym_continue] = ACTIONS(1055), + [anon_sym_defer] = ACTIONS(1055), + [anon_sym_errdefer] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1055), + [anon_sym_else] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_expand] = ACTIONS(1055), + [anon_sym_for] = ACTIONS(1055), + [anon_sym_match] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_orelse] = ACTIONS(1055), + [anon_sym_catch] = ACTIONS(1055), + [anon_sym_or] = ACTIONS(1055), + [anon_sym_and] = ACTIONS(1055), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1055), + [anon_sym_xor] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1055), + [anon_sym_GT_GT] = ACTIONS(1055), + [anon_sym_LT_LT_PIPE] = ACTIONS(1055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_SLASH] = ACTIONS(1055), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1055), + [anon_sym_false] = ACTIONS(1055), + [sym_none] = ACTIONS(1055), + [sym_undefined] = ACTIONS(1055), + [sym_sink] = ACTIONS(1055), + [sym_integer] = ACTIONS(1055), + [sym_float] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym_multiline_string] = ACTIONS(1053), + [sym_character] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1053), + }, + [STATE(233)] = { + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_import] = ACTIONS(1059), + [anon_sym_test] = ACTIONS(1059), + [anon_sym_hide] = ACTIONS(1059), + [anon_sym_func] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_EQ] = ACTIONS(1059), + [anon_sym_struct] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1059), + [anon_sym_QMARK] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_anyopaque] = ACTIONS(1059), + [anon_sym_bool] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(1059), + [anon_sym_uint] = ACTIONS(1059), + [anon_sym_float] = ACTIONS(1059), + [anon_sym_range] = ACTIONS(1059), + [anon_sym_i8] = ACTIONS(1059), + [anon_sym_i16] = ACTIONS(1059), + [anon_sym_i32] = ACTIONS(1059), + [anon_sym_i64] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1059), + [anon_sym_u16] = ACTIONS(1059), + [anon_sym_u32] = ACTIONS(1059), + [anon_sym_u64] = ACTIONS(1059), + [anon_sym_isize] = ACTIONS(1059), + [anon_sym_usize] = ACTIONS(1059), + [anon_sym_f32] = ACTIONS(1059), + [anon_sym_f64] = ACTIONS(1059), + [anon_sym_c_char] = ACTIONS(1059), + [anon_sym_c_schar] = ACTIONS(1059), + [anon_sym_c_uchar] = ACTIONS(1059), + [anon_sym_c_short] = ACTIONS(1059), + [anon_sym_c_ushort] = ACTIONS(1059), + [anon_sym_c_int] = ACTIONS(1059), + [anon_sym_c_uint] = ACTIONS(1059), + [anon_sym_c_long] = ACTIONS(1059), + [anon_sym_c_ulong] = ACTIONS(1059), + [anon_sym_c_longlong] = ACTIONS(1059), + [anon_sym_c_ulonglong] = ACTIONS(1059), + [anon_sym_c_float] = ACTIONS(1059), + [anon_sym_c_double] = ACTIONS(1059), + [anon_sym_c_longdouble] = ACTIONS(1059), + [anon_sym_PLUS_EQ] = ACTIONS(1057), + [anon_sym_DASH_EQ] = ACTIONS(1057), + [anon_sym_STAR_EQ] = ACTIONS(1057), + [anon_sym_SLASH_EQ] = ACTIONS(1057), + [anon_sym_AMP_EQ] = ACTIONS(1057), + [anon_sym_PIPE_EQ] = ACTIONS(1057), + [anon_sym_xor_EQ] = ACTIONS(1057), + [anon_sym_LT_LT_EQ] = ACTIONS(1057), + [anon_sym_GT_GT_EQ] = ACTIONS(1057), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1057), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_defer] = ACTIONS(1059), + [anon_sym_errdefer] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_expand] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_orelse] = ACTIONS(1059), + [anon_sym_catch] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_xor] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1059), + [anon_sym_LT_LT_PIPE] = ACTIONS(1059), + [anon_sym_PLUS] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1059), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [sym_none] = ACTIONS(1059), + [sym_undefined] = ACTIONS(1059), + [sym_sink] = ACTIONS(1059), + [sym_integer] = ACTIONS(1059), + [sym_float] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym_multiline_string] = ACTIONS(1057), + [sym_character] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1057), + }, + [STATE(234)] = { + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(1063), + [anon_sym_test] = ACTIONS(1063), + [anon_sym_hide] = ACTIONS(1063), + [anon_sym_func] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_EQ] = ACTIONS(1063), + [anon_sym_struct] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_RPAREN] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1063), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_anyopaque] = ACTIONS(1063), + [anon_sym_bool] = ACTIONS(1063), + [anon_sym_int] = ACTIONS(1063), + [anon_sym_uint] = ACTIONS(1063), + [anon_sym_float] = ACTIONS(1063), + [anon_sym_range] = ACTIONS(1063), + [anon_sym_i8] = ACTIONS(1063), + [anon_sym_i16] = ACTIONS(1063), + [anon_sym_i32] = ACTIONS(1063), + [anon_sym_i64] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1063), + [anon_sym_u16] = ACTIONS(1063), + [anon_sym_u32] = ACTIONS(1063), + [anon_sym_u64] = ACTIONS(1063), + [anon_sym_isize] = ACTIONS(1063), + [anon_sym_usize] = ACTIONS(1063), + [anon_sym_f32] = ACTIONS(1063), + [anon_sym_f64] = ACTIONS(1063), + [anon_sym_c_char] = ACTIONS(1063), + [anon_sym_c_schar] = ACTIONS(1063), + [anon_sym_c_uchar] = ACTIONS(1063), + [anon_sym_c_short] = ACTIONS(1063), + [anon_sym_c_ushort] = ACTIONS(1063), + [anon_sym_c_int] = ACTIONS(1063), + [anon_sym_c_uint] = ACTIONS(1063), + [anon_sym_c_long] = ACTIONS(1063), + [anon_sym_c_ulong] = ACTIONS(1063), + [anon_sym_c_longlong] = ACTIONS(1063), + [anon_sym_c_ulonglong] = ACTIONS(1063), + [anon_sym_c_float] = ACTIONS(1063), + [anon_sym_c_double] = ACTIONS(1063), + [anon_sym_c_longdouble] = ACTIONS(1063), + [anon_sym_PLUS_EQ] = ACTIONS(1061), + [anon_sym_DASH_EQ] = ACTIONS(1061), + [anon_sym_STAR_EQ] = ACTIONS(1061), + [anon_sym_SLASH_EQ] = ACTIONS(1061), + [anon_sym_AMP_EQ] = ACTIONS(1061), + [anon_sym_PIPE_EQ] = ACTIONS(1061), + [anon_sym_xor_EQ] = ACTIONS(1061), + [anon_sym_LT_LT_EQ] = ACTIONS(1061), + [anon_sym_GT_GT_EQ] = ACTIONS(1061), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1063), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_defer] = ACTIONS(1063), + [anon_sym_errdefer] = ACTIONS(1063), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1063), + [anon_sym_expand] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1063), + [anon_sym_match] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_orelse] = ACTIONS(1063), + [anon_sym_catch] = ACTIONS(1063), + [anon_sym_or] = ACTIONS(1063), + [anon_sym_and] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1063), + [anon_sym_xor] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_LT_LT_PIPE] = ACTIONS(1063), + [anon_sym_PLUS] = ACTIONS(1063), + [anon_sym_SLASH] = ACTIONS(1063), + [anon_sym_TILDE] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1063), + [anon_sym_false] = ACTIONS(1063), + [sym_none] = ACTIONS(1063), + [sym_undefined] = ACTIONS(1063), + [sym_sink] = ACTIONS(1063), + [sym_integer] = ACTIONS(1063), + [sym_float] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym_multiline_string] = ACTIONS(1061), + [sym_character] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1061), + }, + [STATE(235)] = { + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_anyopaque] = ACTIONS(1067), + [anon_sym_bool] = ACTIONS(1067), + [anon_sym_int] = ACTIONS(1067), + [anon_sym_uint] = ACTIONS(1067), + [anon_sym_float] = ACTIONS(1067), + [anon_sym_range] = ACTIONS(1067), + [anon_sym_i8] = ACTIONS(1067), + [anon_sym_i16] = ACTIONS(1067), + [anon_sym_i32] = ACTIONS(1067), + [anon_sym_i64] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(1067), + [anon_sym_u16] = ACTIONS(1067), + [anon_sym_u32] = ACTIONS(1067), + [anon_sym_u64] = ACTIONS(1067), + [anon_sym_isize] = ACTIONS(1067), + [anon_sym_usize] = ACTIONS(1067), + [anon_sym_f32] = ACTIONS(1067), + [anon_sym_f64] = ACTIONS(1067), + [anon_sym_c_char] = ACTIONS(1067), + [anon_sym_c_schar] = ACTIONS(1067), + [anon_sym_c_uchar] = ACTIONS(1067), + [anon_sym_c_short] = ACTIONS(1067), + [anon_sym_c_ushort] = ACTIONS(1067), + [anon_sym_c_int] = ACTIONS(1067), + [anon_sym_c_uint] = ACTIONS(1067), + [anon_sym_c_long] = ACTIONS(1067), + [anon_sym_c_ulong] = ACTIONS(1067), + [anon_sym_c_longlong] = ACTIONS(1067), + [anon_sym_c_ulonglong] = ACTIONS(1067), + [anon_sym_c_float] = ACTIONS(1067), + [anon_sym_c_double] = ACTIONS(1067), + [anon_sym_c_longdouble] = ACTIONS(1067), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_STAR_EQ] = ACTIONS(1065), + [anon_sym_SLASH_EQ] = ACTIONS(1065), + [anon_sym_AMP_EQ] = ACTIONS(1065), + [anon_sym_PIPE_EQ] = ACTIONS(1065), + [anon_sym_xor_EQ] = ACTIONS(1065), + [anon_sym_LT_LT_EQ] = ACTIONS(1065), + [anon_sym_GT_GT_EQ] = ACTIONS(1065), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_yield] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_defer] = ACTIONS(1067), + [anon_sym_errdefer] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_expand] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_match] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_LT_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1067), + [anon_sym_LT_LT_PIPE] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1067), + [anon_sym_SLASH] = ACTIONS(1067), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_DOT] = ACTIONS(1067), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [sym_none] = ACTIONS(1067), + [sym_undefined] = ACTIONS(1067), + [sym_sink] = ACTIONS(1067), + [sym_integer] = ACTIONS(1067), + [sym_float] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_multiline_string] = ACTIONS(1065), + [sym_character] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + }, + [STATE(236)] = { + [ts_builtin_sym_end] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1071), + [anon_sym_import] = ACTIONS(1071), + [anon_sym_test] = ACTIONS(1071), + [anon_sym_hide] = ACTIONS(1071), + [anon_sym_func] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_EQ] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_COMMA] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1071), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_QMARK] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1071), + [anon_sym_anyopaque] = ACTIONS(1071), + [anon_sym_bool] = ACTIONS(1071), + [anon_sym_int] = ACTIONS(1071), + [anon_sym_uint] = ACTIONS(1071), + [anon_sym_float] = ACTIONS(1071), + [anon_sym_range] = ACTIONS(1071), + [anon_sym_i8] = ACTIONS(1071), + [anon_sym_i16] = ACTIONS(1071), + [anon_sym_i32] = ACTIONS(1071), + [anon_sym_i64] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1071), + [anon_sym_u16] = ACTIONS(1071), + [anon_sym_u32] = ACTIONS(1071), + [anon_sym_u64] = ACTIONS(1071), + [anon_sym_isize] = ACTIONS(1071), + [anon_sym_usize] = ACTIONS(1071), + [anon_sym_f32] = ACTIONS(1071), + [anon_sym_f64] = ACTIONS(1071), + [anon_sym_c_char] = ACTIONS(1071), + [anon_sym_c_schar] = ACTIONS(1071), + [anon_sym_c_uchar] = ACTIONS(1071), + [anon_sym_c_short] = ACTIONS(1071), + [anon_sym_c_ushort] = ACTIONS(1071), + [anon_sym_c_int] = ACTIONS(1071), + [anon_sym_c_uint] = ACTIONS(1071), + [anon_sym_c_long] = ACTIONS(1071), + [anon_sym_c_ulong] = ACTIONS(1071), + [anon_sym_c_longlong] = ACTIONS(1071), + [anon_sym_c_ulonglong] = ACTIONS(1071), + [anon_sym_c_float] = ACTIONS(1071), + [anon_sym_c_double] = ACTIONS(1071), + [anon_sym_c_longdouble] = ACTIONS(1071), + [anon_sym_PLUS_EQ] = ACTIONS(1069), + [anon_sym_DASH_EQ] = ACTIONS(1069), + [anon_sym_STAR_EQ] = ACTIONS(1069), + [anon_sym_SLASH_EQ] = ACTIONS(1069), + [anon_sym_AMP_EQ] = ACTIONS(1069), + [anon_sym_PIPE_EQ] = ACTIONS(1069), + [anon_sym_xor_EQ] = ACTIONS(1069), + [anon_sym_LT_LT_EQ] = ACTIONS(1069), + [anon_sym_GT_GT_EQ] = ACTIONS(1069), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1069), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_defer] = ACTIONS(1071), + [anon_sym_errdefer] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_else] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_expand] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_match] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1069), + [anon_sym_orelse] = ACTIONS(1071), + [anon_sym_catch] = ACTIONS(1071), + [anon_sym_or] = ACTIONS(1071), + [anon_sym_and] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1069), + [anon_sym_BANG_EQ] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1071), + [anon_sym_xor] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1071), + [anon_sym_LT_LT_PIPE] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_try] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1069), + [anon_sym_true] = ACTIONS(1071), + [anon_sym_false] = ACTIONS(1071), + [sym_none] = ACTIONS(1071), + [sym_undefined] = ACTIONS(1071), + [sym_sink] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_multiline_string] = ACTIONS(1069), + [sym_character] = ACTIONS(1069), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1069), + }, + [STATE(237)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_test] = ACTIONS(508), + [anon_sym_hide] = ACTIONS(508), + [anon_sym_func] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_struct] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(508), + [anon_sym_anyopaque] = ACTIONS(508), + [anon_sym_bool] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_uint] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_range] = ACTIONS(508), + [anon_sym_i8] = ACTIONS(508), + [anon_sym_i16] = ACTIONS(508), + [anon_sym_i32] = ACTIONS(508), + [anon_sym_i64] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(508), + [anon_sym_u16] = ACTIONS(508), + [anon_sym_u32] = ACTIONS(508), + [anon_sym_u64] = ACTIONS(508), + [anon_sym_isize] = ACTIONS(508), + [anon_sym_usize] = ACTIONS(508), + [anon_sym_f32] = ACTIONS(508), + [anon_sym_f64] = ACTIONS(508), + [anon_sym_c_char] = ACTIONS(508), + [anon_sym_c_schar] = ACTIONS(508), + [anon_sym_c_uchar] = ACTIONS(508), + [anon_sym_c_short] = ACTIONS(508), + [anon_sym_c_ushort] = ACTIONS(508), + [anon_sym_c_int] = ACTIONS(508), + [anon_sym_c_uint] = ACTIONS(508), + [anon_sym_c_long] = ACTIONS(508), + [anon_sym_c_ulong] = ACTIONS(508), + [anon_sym_c_longlong] = ACTIONS(508), + [anon_sym_c_ulonglong] = ACTIONS(508), + [anon_sym_c_float] = ACTIONS(508), + [anon_sym_c_double] = ACTIONS(508), + [anon_sym_c_longdouble] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(506), + [anon_sym_DASH_EQ] = ACTIONS(506), + [anon_sym_STAR_EQ] = ACTIONS(506), + [anon_sym_SLASH_EQ] = ACTIONS(506), + [anon_sym_AMP_EQ] = ACTIONS(506), + [anon_sym_PIPE_EQ] = ACTIONS(506), + [anon_sym_xor_EQ] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(506), + [anon_sym_GT_GT_EQ] = ACTIONS(506), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(506), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_defer] = ACTIONS(508), + [anon_sym_errdefer] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_expand] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_match] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(506), + [anon_sym_orelse] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_and] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(508), + [anon_sym_xor] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT_PIPE] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(508), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_try] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_true] = ACTIONS(508), + [anon_sym_false] = ACTIONS(508), + [sym_none] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [sym_sink] = ACTIONS(508), + [sym_integer] = ACTIONS(508), + [sym_float] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [sym_multiline_string] = ACTIONS(506), + [sym_character] = ACTIONS(506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(506), + }, + [STATE(238)] = { + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_identifier] = ACTIONS(1075), + [anon_sym_import] = ACTIONS(1075), + [anon_sym_test] = ACTIONS(1075), + [anon_sym_hide] = ACTIONS(1075), + [anon_sym_func] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_COMMA] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_QMARK] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_anyopaque] = ACTIONS(1075), + [anon_sym_bool] = ACTIONS(1075), + [anon_sym_int] = ACTIONS(1075), + [anon_sym_uint] = ACTIONS(1075), + [anon_sym_float] = ACTIONS(1075), + [anon_sym_range] = ACTIONS(1075), + [anon_sym_i8] = ACTIONS(1075), + [anon_sym_i16] = ACTIONS(1075), + [anon_sym_i32] = ACTIONS(1075), + [anon_sym_i64] = ACTIONS(1075), + [anon_sym_u8] = ACTIONS(1075), + [anon_sym_u16] = ACTIONS(1075), + [anon_sym_u32] = ACTIONS(1075), + [anon_sym_u64] = ACTIONS(1075), + [anon_sym_isize] = ACTIONS(1075), + [anon_sym_usize] = ACTIONS(1075), + [anon_sym_f32] = ACTIONS(1075), + [anon_sym_f64] = ACTIONS(1075), + [anon_sym_c_char] = ACTIONS(1075), + [anon_sym_c_schar] = ACTIONS(1075), + [anon_sym_c_uchar] = ACTIONS(1075), + [anon_sym_c_short] = ACTIONS(1075), + [anon_sym_c_ushort] = ACTIONS(1075), + [anon_sym_c_int] = ACTIONS(1075), + [anon_sym_c_uint] = ACTIONS(1075), + [anon_sym_c_long] = ACTIONS(1075), + [anon_sym_c_ulong] = ACTIONS(1075), + [anon_sym_c_longlong] = ACTIONS(1075), + [anon_sym_c_ulonglong] = ACTIONS(1075), + [anon_sym_c_float] = ACTIONS(1075), + [anon_sym_c_double] = ACTIONS(1075), + [anon_sym_c_longdouble] = ACTIONS(1075), + [anon_sym_PLUS_EQ] = ACTIONS(1073), + [anon_sym_DASH_EQ] = ACTIONS(1073), + [anon_sym_STAR_EQ] = ACTIONS(1073), + [anon_sym_SLASH_EQ] = ACTIONS(1073), + [anon_sym_AMP_EQ] = ACTIONS(1073), + [anon_sym_PIPE_EQ] = ACTIONS(1073), + [anon_sym_xor_EQ] = ACTIONS(1073), + [anon_sym_LT_LT_EQ] = ACTIONS(1073), + [anon_sym_GT_GT_EQ] = ACTIONS(1073), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1073), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_yield] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_defer] = ACTIONS(1075), + [anon_sym_errdefer] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_else] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_expand] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_match] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [anon_sym_orelse] = ACTIONS(1075), + [anon_sym_catch] = ACTIONS(1075), + [anon_sym_or] = ACTIONS(1075), + [anon_sym_and] = ACTIONS(1075), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_BANG_EQ] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_GT_EQ] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1075), + [anon_sym_xor] = ACTIONS(1075), + [anon_sym_LT_LT] = ACTIONS(1075), + [anon_sym_GT_GT] = ACTIONS(1075), + [anon_sym_LT_LT_PIPE] = ACTIONS(1075), + [anon_sym_PLUS] = ACTIONS(1075), + [anon_sym_SLASH] = ACTIONS(1075), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1075), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [sym_none] = ACTIONS(1075), + [sym_undefined] = ACTIONS(1075), + [sym_sink] = ACTIONS(1075), + [sym_integer] = ACTIONS(1075), + [sym_float] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_multiline_string] = ACTIONS(1073), + [sym_character] = ACTIONS(1073), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1073), + }, + [STATE(239)] = { + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_identifier] = ACTIONS(1079), + [anon_sym_import] = ACTIONS(1079), + [anon_sym_test] = ACTIONS(1079), + [anon_sym_hide] = ACTIONS(1079), + [anon_sym_func] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_RPAREN] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1079), + [anon_sym_DOLLAR] = ACTIONS(1077), + [anon_sym_PIPE] = ACTIONS(1079), + [anon_sym_QMARK] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1079), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_void] = ACTIONS(1079), + [anon_sym_anyopaque] = ACTIONS(1079), + [anon_sym_bool] = ACTIONS(1079), + [anon_sym_int] = ACTIONS(1079), + [anon_sym_uint] = ACTIONS(1079), + [anon_sym_float] = ACTIONS(1079), + [anon_sym_range] = ACTIONS(1079), + [anon_sym_i8] = ACTIONS(1079), + [anon_sym_i16] = ACTIONS(1079), + [anon_sym_i32] = ACTIONS(1079), + [anon_sym_i64] = ACTIONS(1079), + [anon_sym_u8] = ACTIONS(1079), + [anon_sym_u16] = ACTIONS(1079), + [anon_sym_u32] = ACTIONS(1079), + [anon_sym_u64] = ACTIONS(1079), + [anon_sym_isize] = ACTIONS(1079), + [anon_sym_usize] = ACTIONS(1079), + [anon_sym_f32] = ACTIONS(1079), + [anon_sym_f64] = ACTIONS(1079), + [anon_sym_c_char] = ACTIONS(1079), + [anon_sym_c_schar] = ACTIONS(1079), + [anon_sym_c_uchar] = ACTIONS(1079), + [anon_sym_c_short] = ACTIONS(1079), + [anon_sym_c_ushort] = ACTIONS(1079), + [anon_sym_c_int] = ACTIONS(1079), + [anon_sym_c_uint] = ACTIONS(1079), + [anon_sym_c_long] = ACTIONS(1079), + [anon_sym_c_ulong] = ACTIONS(1079), + [anon_sym_c_longlong] = ACTIONS(1079), + [anon_sym_c_ulonglong] = ACTIONS(1079), + [anon_sym_c_float] = ACTIONS(1079), + [anon_sym_c_double] = ACTIONS(1079), + [anon_sym_c_longdouble] = ACTIONS(1079), + [anon_sym_PLUS_EQ] = ACTIONS(1077), + [anon_sym_DASH_EQ] = ACTIONS(1077), + [anon_sym_STAR_EQ] = ACTIONS(1077), + [anon_sym_SLASH_EQ] = ACTIONS(1077), + [anon_sym_AMP_EQ] = ACTIONS(1077), + [anon_sym_PIPE_EQ] = ACTIONS(1077), + [anon_sym_xor_EQ] = ACTIONS(1077), + [anon_sym_LT_LT_EQ] = ACTIONS(1077), + [anon_sym_GT_GT_EQ] = ACTIONS(1077), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1077), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_defer] = ACTIONS(1079), + [anon_sym_errdefer] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_else] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_expand] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_match] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1077), + [anon_sym_orelse] = ACTIONS(1079), + [anon_sym_catch] = ACTIONS(1079), + [anon_sym_or] = ACTIONS(1079), + [anon_sym_and] = ACTIONS(1079), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1079), + [anon_sym_xor] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1079), + [anon_sym_GT_GT] = ACTIONS(1079), + [anon_sym_LT_LT_PIPE] = ACTIONS(1079), + [anon_sym_PLUS] = ACTIONS(1079), + [anon_sym_SLASH] = ACTIONS(1079), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_true] = ACTIONS(1079), + [anon_sym_false] = ACTIONS(1079), + [sym_none] = ACTIONS(1079), + [sym_undefined] = ACTIONS(1079), + [sym_sink] = ACTIONS(1079), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_multiline_string] = ACTIONS(1077), + [sym_character] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1077), + }, + [STATE(240)] = { + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1083), + [anon_sym_import] = ACTIONS(1083), + [anon_sym_test] = ACTIONS(1083), + [anon_sym_hide] = ACTIONS(1083), + [anon_sym_func] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_COMMA] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1083), + [anon_sym_DOLLAR] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1083), + [anon_sym_QMARK] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1083), + [anon_sym_LBRACK] = ACTIONS(1081), + [anon_sym_void] = ACTIONS(1083), + [anon_sym_anyopaque] = ACTIONS(1083), + [anon_sym_bool] = ACTIONS(1083), + [anon_sym_int] = ACTIONS(1083), + [anon_sym_uint] = ACTIONS(1083), + [anon_sym_float] = ACTIONS(1083), + [anon_sym_range] = ACTIONS(1083), + [anon_sym_i8] = ACTIONS(1083), + [anon_sym_i16] = ACTIONS(1083), + [anon_sym_i32] = ACTIONS(1083), + [anon_sym_i64] = ACTIONS(1083), + [anon_sym_u8] = ACTIONS(1083), + [anon_sym_u16] = ACTIONS(1083), + [anon_sym_u32] = ACTIONS(1083), + [anon_sym_u64] = ACTIONS(1083), + [anon_sym_isize] = ACTIONS(1083), + [anon_sym_usize] = ACTIONS(1083), + [anon_sym_f32] = ACTIONS(1083), + [anon_sym_f64] = ACTIONS(1083), + [anon_sym_c_char] = ACTIONS(1083), + [anon_sym_c_schar] = ACTIONS(1083), + [anon_sym_c_uchar] = ACTIONS(1083), + [anon_sym_c_short] = ACTIONS(1083), + [anon_sym_c_ushort] = ACTIONS(1083), + [anon_sym_c_int] = ACTIONS(1083), + [anon_sym_c_uint] = ACTIONS(1083), + [anon_sym_c_long] = ACTIONS(1083), + [anon_sym_c_ulong] = ACTIONS(1083), + [anon_sym_c_longlong] = ACTIONS(1083), + [anon_sym_c_ulonglong] = ACTIONS(1083), + [anon_sym_c_float] = ACTIONS(1083), + [anon_sym_c_double] = ACTIONS(1083), + [anon_sym_c_longdouble] = ACTIONS(1083), + [anon_sym_PLUS_EQ] = ACTIONS(1081), + [anon_sym_DASH_EQ] = ACTIONS(1081), + [anon_sym_STAR_EQ] = ACTIONS(1081), + [anon_sym_SLASH_EQ] = ACTIONS(1081), + [anon_sym_AMP_EQ] = ACTIONS(1081), + [anon_sym_PIPE_EQ] = ACTIONS(1081), + [anon_sym_xor_EQ] = ACTIONS(1081), + [anon_sym_LT_LT_EQ] = ACTIONS(1081), + [anon_sym_GT_GT_EQ] = ACTIONS(1081), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1081), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1083), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1083), + [anon_sym_errdefer] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_expand] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_match] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_orelse] = ACTIONS(1083), + [anon_sym_catch] = ACTIONS(1083), + [anon_sym_or] = ACTIONS(1083), + [anon_sym_and] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1083), + [anon_sym_xor] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1083), + [anon_sym_LT_LT_PIPE] = ACTIONS(1083), + [anon_sym_PLUS] = ACTIONS(1083), + [anon_sym_SLASH] = ACTIONS(1083), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_try] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1081), + [anon_sym_true] = ACTIONS(1083), + [anon_sym_false] = ACTIONS(1083), + [sym_none] = ACTIONS(1083), + [sym_undefined] = ACTIONS(1083), + [sym_sink] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_multiline_string] = ACTIONS(1081), + [sym_character] = ACTIONS(1081), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1081), + }, + [STATE(241)] = { + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_identifier] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(1087), + [anon_sym_test] = ACTIONS(1087), + [anon_sym_hide] = ACTIONS(1087), + [anon_sym_func] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_EQ] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_COMMA] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_anyopaque] = ACTIONS(1087), + [anon_sym_bool] = ACTIONS(1087), + [anon_sym_int] = ACTIONS(1087), + [anon_sym_uint] = ACTIONS(1087), + [anon_sym_float] = ACTIONS(1087), + [anon_sym_range] = ACTIONS(1087), + [anon_sym_i8] = ACTIONS(1087), + [anon_sym_i16] = ACTIONS(1087), + [anon_sym_i32] = ACTIONS(1087), + [anon_sym_i64] = ACTIONS(1087), + [anon_sym_u8] = ACTIONS(1087), + [anon_sym_u16] = ACTIONS(1087), + [anon_sym_u32] = ACTIONS(1087), + [anon_sym_u64] = ACTIONS(1087), + [anon_sym_isize] = ACTIONS(1087), + [anon_sym_usize] = ACTIONS(1087), + [anon_sym_f32] = ACTIONS(1087), + [anon_sym_f64] = ACTIONS(1087), + [anon_sym_c_char] = ACTIONS(1087), + [anon_sym_c_schar] = ACTIONS(1087), + [anon_sym_c_uchar] = ACTIONS(1087), + [anon_sym_c_short] = ACTIONS(1087), + [anon_sym_c_ushort] = ACTIONS(1087), + [anon_sym_c_int] = ACTIONS(1087), + [anon_sym_c_uint] = ACTIONS(1087), + [anon_sym_c_long] = ACTIONS(1087), + [anon_sym_c_ulong] = ACTIONS(1087), + [anon_sym_c_longlong] = ACTIONS(1087), + [anon_sym_c_ulonglong] = ACTIONS(1087), + [anon_sym_c_float] = ACTIONS(1087), + [anon_sym_c_double] = ACTIONS(1087), + [anon_sym_c_longdouble] = ACTIONS(1087), + [anon_sym_PLUS_EQ] = ACTIONS(1085), + [anon_sym_DASH_EQ] = ACTIONS(1085), + [anon_sym_STAR_EQ] = ACTIONS(1085), + [anon_sym_SLASH_EQ] = ACTIONS(1085), + [anon_sym_AMP_EQ] = ACTIONS(1085), + [anon_sym_PIPE_EQ] = ACTIONS(1085), + [anon_sym_xor_EQ] = ACTIONS(1085), + [anon_sym_LT_LT_EQ] = ACTIONS(1085), + [anon_sym_GT_GT_EQ] = ACTIONS(1085), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1085), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_yield] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_defer] = ACTIONS(1087), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_else] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_expand] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_orelse] = ACTIONS(1087), + [anon_sym_catch] = ACTIONS(1087), + [anon_sym_or] = ACTIONS(1087), + [anon_sym_and] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1087), + [anon_sym_xor] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1087), + [anon_sym_LT_LT_PIPE] = ACTIONS(1087), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_SLASH] = ACTIONS(1087), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1087), + [anon_sym_false] = ACTIONS(1087), + [sym_none] = ACTIONS(1087), + [sym_undefined] = ACTIONS(1087), + [sym_sink] = ACTIONS(1087), + [sym_integer] = ACTIONS(1087), + [sym_float] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_multiline_string] = ACTIONS(1085), + [sym_character] = ACTIONS(1085), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1085), + }, + [STATE(242)] = { + [ts_builtin_sym_end] = ACTIONS(1089), + [sym_identifier] = ACTIONS(1091), + [anon_sym_import] = ACTIONS(1091), + [anon_sym_test] = ACTIONS(1091), + [anon_sym_hide] = ACTIONS(1091), + [anon_sym_func] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_EQ] = ACTIONS(1091), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_RPAREN] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_COMMA] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1091), + [anon_sym_QMARK] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1091), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1091), + [anon_sym_anyopaque] = ACTIONS(1091), + [anon_sym_bool] = ACTIONS(1091), + [anon_sym_int] = ACTIONS(1091), + [anon_sym_uint] = ACTIONS(1091), + [anon_sym_float] = ACTIONS(1091), + [anon_sym_range] = ACTIONS(1091), + [anon_sym_i8] = ACTIONS(1091), + [anon_sym_i16] = ACTIONS(1091), + [anon_sym_i32] = ACTIONS(1091), + [anon_sym_i64] = ACTIONS(1091), + [anon_sym_u8] = ACTIONS(1091), + [anon_sym_u16] = ACTIONS(1091), + [anon_sym_u32] = ACTIONS(1091), + [anon_sym_u64] = ACTIONS(1091), + [anon_sym_isize] = ACTIONS(1091), + [anon_sym_usize] = ACTIONS(1091), + [anon_sym_f32] = ACTIONS(1091), + [anon_sym_f64] = ACTIONS(1091), + [anon_sym_c_char] = ACTIONS(1091), + [anon_sym_c_schar] = ACTIONS(1091), + [anon_sym_c_uchar] = ACTIONS(1091), + [anon_sym_c_short] = ACTIONS(1091), + [anon_sym_c_ushort] = ACTIONS(1091), + [anon_sym_c_int] = ACTIONS(1091), + [anon_sym_c_uint] = ACTIONS(1091), + [anon_sym_c_long] = ACTIONS(1091), + [anon_sym_c_ulong] = ACTIONS(1091), + [anon_sym_c_longlong] = ACTIONS(1091), + [anon_sym_c_ulonglong] = ACTIONS(1091), + [anon_sym_c_float] = ACTIONS(1091), + [anon_sym_c_double] = ACTIONS(1091), + [anon_sym_c_longdouble] = ACTIONS(1091), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_AMP_EQ] = ACTIONS(1089), + [anon_sym_PIPE_EQ] = ACTIONS(1089), + [anon_sym_xor_EQ] = ACTIONS(1089), + [anon_sym_LT_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_GT_EQ] = ACTIONS(1089), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1089), + [anon_sym_return] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_break] = ACTIONS(1091), + [anon_sym_continue] = ACTIONS(1091), + [anon_sym_defer] = ACTIONS(1091), + [anon_sym_errdefer] = ACTIONS(1091), + [anon_sym_if] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1091), + [anon_sym_match] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_orelse] = ACTIONS(1091), + [anon_sym_catch] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1091), + [anon_sym_LT_LT_PIPE] = ACTIONS(1091), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_SLASH] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1091), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [sym_none] = ACTIONS(1091), + [sym_undefined] = ACTIONS(1091), + [sym_sink] = ACTIONS(1091), + [sym_integer] = ACTIONS(1091), + [sym_float] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym_multiline_string] = ACTIONS(1089), + [sym_character] = ACTIONS(1089), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1089), + }, + [STATE(243)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(244)] = { + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_identifier] = ACTIONS(1095), + [anon_sym_import] = ACTIONS(1095), + [anon_sym_test] = ACTIONS(1095), + [anon_sym_hide] = ACTIONS(1095), + [anon_sym_func] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1095), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_COMMA] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1095), + [anon_sym_anyopaque] = ACTIONS(1095), + [anon_sym_bool] = ACTIONS(1095), + [anon_sym_int] = ACTIONS(1095), + [anon_sym_uint] = ACTIONS(1095), + [anon_sym_float] = ACTIONS(1095), + [anon_sym_range] = ACTIONS(1095), + [anon_sym_i8] = ACTIONS(1095), + [anon_sym_i16] = ACTIONS(1095), + [anon_sym_i32] = ACTIONS(1095), + [anon_sym_i64] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1095), + [anon_sym_u16] = ACTIONS(1095), + [anon_sym_u32] = ACTIONS(1095), + [anon_sym_u64] = ACTIONS(1095), + [anon_sym_isize] = ACTIONS(1095), + [anon_sym_usize] = ACTIONS(1095), + [anon_sym_f32] = ACTIONS(1095), + [anon_sym_f64] = ACTIONS(1095), + [anon_sym_c_char] = ACTIONS(1095), + [anon_sym_c_schar] = ACTIONS(1095), + [anon_sym_c_uchar] = ACTIONS(1095), + [anon_sym_c_short] = ACTIONS(1095), + [anon_sym_c_ushort] = ACTIONS(1095), + [anon_sym_c_int] = ACTIONS(1095), + [anon_sym_c_uint] = ACTIONS(1095), + [anon_sym_c_long] = ACTIONS(1095), + [anon_sym_c_ulong] = ACTIONS(1095), + [anon_sym_c_longlong] = ACTIONS(1095), + [anon_sym_c_ulonglong] = ACTIONS(1095), + [anon_sym_c_float] = ACTIONS(1095), + [anon_sym_c_double] = ACTIONS(1095), + [anon_sym_c_longdouble] = ACTIONS(1095), + [anon_sym_PLUS_EQ] = ACTIONS(1093), + [anon_sym_DASH_EQ] = ACTIONS(1093), + [anon_sym_STAR_EQ] = ACTIONS(1093), + [anon_sym_SLASH_EQ] = ACTIONS(1093), + [anon_sym_AMP_EQ] = ACTIONS(1093), + [anon_sym_PIPE_EQ] = ACTIONS(1093), + [anon_sym_xor_EQ] = ACTIONS(1093), + [anon_sym_LT_LT_EQ] = ACTIONS(1093), + [anon_sym_GT_GT_EQ] = ACTIONS(1093), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1093), + [anon_sym_return] = ACTIONS(1095), + [anon_sym_yield] = ACTIONS(1095), + [anon_sym_break] = ACTIONS(1095), + [anon_sym_continue] = ACTIONS(1095), + [anon_sym_defer] = ACTIONS(1095), + [anon_sym_errdefer] = ACTIONS(1095), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_else] = ACTIONS(1095), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_expand] = ACTIONS(1095), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_orelse] = ACTIONS(1095), + [anon_sym_catch] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_GT_GT] = ACTIONS(1095), + [anon_sym_LT_LT_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1095), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [sym_none] = ACTIONS(1095), + [sym_undefined] = ACTIONS(1095), + [sym_sink] = ACTIONS(1095), + [sym_integer] = ACTIONS(1095), + [sym_float] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym_multiline_string] = ACTIONS(1093), + [sym_character] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1093), + }, + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1099), + [anon_sym_import] = ACTIONS(1099), + [anon_sym_test] = ACTIONS(1099), + [anon_sym_hide] = ACTIONS(1099), + [anon_sym_func] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_COMMA] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1099), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_PIPE] = ACTIONS(1099), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_void] = ACTIONS(1099), + [anon_sym_anyopaque] = ACTIONS(1099), + [anon_sym_bool] = ACTIONS(1099), + [anon_sym_int] = ACTIONS(1099), + [anon_sym_uint] = ACTIONS(1099), + [anon_sym_float] = ACTIONS(1099), + [anon_sym_range] = ACTIONS(1099), + [anon_sym_i8] = ACTIONS(1099), + [anon_sym_i16] = ACTIONS(1099), + [anon_sym_i32] = ACTIONS(1099), + [anon_sym_i64] = ACTIONS(1099), + [anon_sym_u8] = ACTIONS(1099), + [anon_sym_u16] = ACTIONS(1099), + [anon_sym_u32] = ACTIONS(1099), + [anon_sym_u64] = ACTIONS(1099), + [anon_sym_isize] = ACTIONS(1099), + [anon_sym_usize] = ACTIONS(1099), + [anon_sym_f32] = ACTIONS(1099), + [anon_sym_f64] = ACTIONS(1099), + [anon_sym_c_char] = ACTIONS(1099), + [anon_sym_c_schar] = ACTIONS(1099), + [anon_sym_c_uchar] = ACTIONS(1099), + [anon_sym_c_short] = ACTIONS(1099), + [anon_sym_c_ushort] = ACTIONS(1099), + [anon_sym_c_int] = ACTIONS(1099), + [anon_sym_c_uint] = ACTIONS(1099), + [anon_sym_c_long] = ACTIONS(1099), + [anon_sym_c_ulong] = ACTIONS(1099), + [anon_sym_c_longlong] = ACTIONS(1099), + [anon_sym_c_ulonglong] = ACTIONS(1099), + [anon_sym_c_float] = ACTIONS(1099), + [anon_sym_c_double] = ACTIONS(1099), + [anon_sym_c_longdouble] = ACTIONS(1099), + [anon_sym_PLUS_EQ] = ACTIONS(1097), + [anon_sym_DASH_EQ] = ACTIONS(1097), + [anon_sym_STAR_EQ] = ACTIONS(1097), + [anon_sym_SLASH_EQ] = ACTIONS(1097), + [anon_sym_AMP_EQ] = ACTIONS(1097), + [anon_sym_PIPE_EQ] = ACTIONS(1097), + [anon_sym_xor_EQ] = ACTIONS(1097), + [anon_sym_LT_LT_EQ] = ACTIONS(1097), + [anon_sym_GT_GT_EQ] = ACTIONS(1097), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_yield] = ACTIONS(1099), + [anon_sym_break] = ACTIONS(1099), + [anon_sym_continue] = ACTIONS(1099), + [anon_sym_defer] = ACTIONS(1099), + [anon_sym_errdefer] = ACTIONS(1099), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_else] = ACTIONS(1099), + [anon_sym_while] = ACTIONS(1099), + [anon_sym_expand] = ACTIONS(1099), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_match] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1099), + [anon_sym_catch] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1099), + [anon_sym_and] = ACTIONS(1099), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1099), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_LT_LT] = ACTIONS(1099), + [anon_sym_GT_GT] = ACTIONS(1099), + [anon_sym_LT_LT_PIPE] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1099), + [anon_sym_SLASH] = ACTIONS(1099), + [anon_sym_TILDE] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1099), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1099), + [anon_sym_false] = ACTIONS(1099), + [sym_none] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1099), + [sym_sink] = ACTIONS(1099), + [sym_integer] = ACTIONS(1099), + [sym_float] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym_multiline_string] = ACTIONS(1097), + [sym_character] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1097), + }, + [STATE(246)] = { + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_import] = ACTIONS(1105), + [anon_sym_test] = ACTIONS(1105), + [anon_sym_hide] = ACTIONS(1105), + [anon_sym_func] = ACTIONS(1105), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1105), + [anon_sym_DOLLAR] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_anyopaque] = ACTIONS(1105), + [anon_sym_bool] = ACTIONS(1105), + [anon_sym_int] = ACTIONS(1105), + [anon_sym_uint] = ACTIONS(1105), + [anon_sym_float] = ACTIONS(1105), + [anon_sym_range] = ACTIONS(1105), + [anon_sym_i8] = ACTIONS(1105), + [anon_sym_i16] = ACTIONS(1105), + [anon_sym_i32] = ACTIONS(1105), + [anon_sym_i64] = ACTIONS(1105), + [anon_sym_u8] = ACTIONS(1105), + [anon_sym_u16] = ACTIONS(1105), + [anon_sym_u32] = ACTIONS(1105), + [anon_sym_u64] = ACTIONS(1105), + [anon_sym_isize] = ACTIONS(1105), + [anon_sym_usize] = ACTIONS(1105), + [anon_sym_f32] = ACTIONS(1105), + [anon_sym_f64] = ACTIONS(1105), + [anon_sym_c_char] = ACTIONS(1105), + [anon_sym_c_schar] = ACTIONS(1105), + [anon_sym_c_uchar] = ACTIONS(1105), + [anon_sym_c_short] = ACTIONS(1105), + [anon_sym_c_ushort] = ACTIONS(1105), + [anon_sym_c_int] = ACTIONS(1105), + [anon_sym_c_uint] = ACTIONS(1105), + [anon_sym_c_long] = ACTIONS(1105), + [anon_sym_c_ulong] = ACTIONS(1105), + [anon_sym_c_longlong] = ACTIONS(1105), + [anon_sym_c_ulonglong] = ACTIONS(1105), + [anon_sym_c_float] = ACTIONS(1105), + [anon_sym_c_double] = ACTIONS(1105), + [anon_sym_c_longdouble] = ACTIONS(1105), + [anon_sym_PLUS_EQ] = ACTIONS(1103), + [anon_sym_DASH_EQ] = ACTIONS(1103), + [anon_sym_STAR_EQ] = ACTIONS(1103), + [anon_sym_SLASH_EQ] = ACTIONS(1103), + [anon_sym_AMP_EQ] = ACTIONS(1103), + [anon_sym_PIPE_EQ] = ACTIONS(1103), + [anon_sym_xor_EQ] = ACTIONS(1103), + [anon_sym_LT_LT_EQ] = ACTIONS(1103), + [anon_sym_GT_GT_EQ] = ACTIONS(1103), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1103), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_defer] = ACTIONS(1105), + [anon_sym_errdefer] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_expand] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_match] = ACTIONS(1105), + [anon_sym_DOT_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), + [anon_sym_orelse] = ACTIONS(1105), + [anon_sym_catch] = ACTIONS(1105), + [anon_sym_or] = ACTIONS(1105), + [anon_sym_and] = ACTIONS(1105), + [anon_sym_EQ_EQ] = ACTIONS(1103), + [anon_sym_BANG_EQ] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1105), + [anon_sym_xor] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1105), + [anon_sym_LT_LT_PIPE] = ACTIONS(1105), + [anon_sym_PLUS] = ACTIONS(1105), + [anon_sym_SLASH] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), + [sym_none] = ACTIONS(1105), + [sym_undefined] = ACTIONS(1105), + [sym_sink] = ACTIONS(1105), + [sym_integer] = ACTIONS(1105), + [sym_float] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_multiline_string] = ACTIONS(1103), + [sym_character] = ACTIONS(1103), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1103), + }, + [STATE(247)] = { + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1109), + [anon_sym_import] = ACTIONS(1109), + [anon_sym_test] = ACTIONS(1109), + [anon_sym_hide] = ACTIONS(1109), + [anon_sym_func] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_DOLLAR] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1109), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_void] = ACTIONS(1109), + [anon_sym_anyopaque] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_int] = ACTIONS(1109), + [anon_sym_uint] = ACTIONS(1109), + [anon_sym_float] = ACTIONS(1109), + [anon_sym_range] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_c_char] = ACTIONS(1109), + [anon_sym_c_schar] = ACTIONS(1109), + [anon_sym_c_uchar] = ACTIONS(1109), + [anon_sym_c_short] = ACTIONS(1109), + [anon_sym_c_ushort] = ACTIONS(1109), + [anon_sym_c_int] = ACTIONS(1109), + [anon_sym_c_uint] = ACTIONS(1109), + [anon_sym_c_long] = ACTIONS(1109), + [anon_sym_c_ulong] = ACTIONS(1109), + [anon_sym_c_longlong] = ACTIONS(1109), + [anon_sym_c_ulonglong] = ACTIONS(1109), + [anon_sym_c_float] = ACTIONS(1109), + [anon_sym_c_double] = ACTIONS(1109), + [anon_sym_c_longdouble] = ACTIONS(1109), + [anon_sym_PLUS_EQ] = ACTIONS(1107), + [anon_sym_DASH_EQ] = ACTIONS(1107), + [anon_sym_STAR_EQ] = ACTIONS(1107), + [anon_sym_SLASH_EQ] = ACTIONS(1107), + [anon_sym_AMP_EQ] = ACTIONS(1107), + [anon_sym_PIPE_EQ] = ACTIONS(1107), + [anon_sym_xor_EQ] = ACTIONS(1107), + [anon_sym_LT_LT_EQ] = ACTIONS(1107), + [anon_sym_GT_GT_EQ] = ACTIONS(1107), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1107), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_defer] = ACTIONS(1109), + [anon_sym_errdefer] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_expand] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1109), + [anon_sym_DOT_DOT] = ACTIONS(1109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1107), + [anon_sym_orelse] = ACTIONS(1109), + [anon_sym_catch] = ACTIONS(1109), + [anon_sym_or] = ACTIONS(1109), + [anon_sym_and] = ACTIONS(1109), + [anon_sym_EQ_EQ] = ACTIONS(1107), + [anon_sym_BANG_EQ] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1109), + [anon_sym_xor] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1109), + [anon_sym_GT_GT] = ACTIONS(1109), + [anon_sym_LT_LT_PIPE] = ACTIONS(1109), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_SLASH] = ACTIONS(1109), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_try] = ACTIONS(1109), + [anon_sym_DOT] = ACTIONS(1109), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_true] = ACTIONS(1109), + [anon_sym_false] = ACTIONS(1109), + [sym_none] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1109), + [sym_integer] = ACTIONS(1109), + [sym_float] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_multiline_string] = ACTIONS(1107), + [sym_character] = ACTIONS(1107), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1107), + }, + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_test] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_uint] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_AMP_EQ] = ACTIONS(1111), + [anon_sym_PIPE_EQ] = ACTIONS(1111), + [anon_sym_xor_EQ] = ACTIONS(1111), + [anon_sym_LT_LT_EQ] = ACTIONS(1111), + [anon_sym_GT_GT_EQ] = ACTIONS(1111), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_expand] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_xor] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1113), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_LT_LT_PIPE] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(249)] = { + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [anon_sym_import] = ACTIONS(1117), + [anon_sym_test] = ACTIONS(1117), + [anon_sym_hide] = ACTIONS(1117), + [anon_sym_func] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_DOLLAR] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_void] = ACTIONS(1117), + [anon_sym_anyopaque] = ACTIONS(1117), + [anon_sym_bool] = ACTIONS(1117), + [anon_sym_int] = ACTIONS(1117), + [anon_sym_uint] = ACTIONS(1117), + [anon_sym_float] = ACTIONS(1117), + [anon_sym_range] = ACTIONS(1117), + [anon_sym_i8] = ACTIONS(1117), + [anon_sym_i16] = ACTIONS(1117), + [anon_sym_i32] = ACTIONS(1117), + [anon_sym_i64] = ACTIONS(1117), + [anon_sym_u8] = ACTIONS(1117), + [anon_sym_u16] = ACTIONS(1117), + [anon_sym_u32] = ACTIONS(1117), + [anon_sym_u64] = ACTIONS(1117), + [anon_sym_isize] = ACTIONS(1117), + [anon_sym_usize] = ACTIONS(1117), + [anon_sym_f32] = ACTIONS(1117), + [anon_sym_f64] = ACTIONS(1117), + [anon_sym_c_char] = ACTIONS(1117), + [anon_sym_c_schar] = ACTIONS(1117), + [anon_sym_c_uchar] = ACTIONS(1117), + [anon_sym_c_short] = ACTIONS(1117), + [anon_sym_c_ushort] = ACTIONS(1117), + [anon_sym_c_int] = ACTIONS(1117), + [anon_sym_c_uint] = ACTIONS(1117), + [anon_sym_c_long] = ACTIONS(1117), + [anon_sym_c_ulong] = ACTIONS(1117), + [anon_sym_c_longlong] = ACTIONS(1117), + [anon_sym_c_ulonglong] = ACTIONS(1117), + [anon_sym_c_float] = ACTIONS(1117), + [anon_sym_c_double] = ACTIONS(1117), + [anon_sym_c_longdouble] = ACTIONS(1117), + [anon_sym_PLUS_EQ] = ACTIONS(1115), + [anon_sym_DASH_EQ] = ACTIONS(1115), + [anon_sym_STAR_EQ] = ACTIONS(1115), + [anon_sym_SLASH_EQ] = ACTIONS(1115), + [anon_sym_AMP_EQ] = ACTIONS(1115), + [anon_sym_PIPE_EQ] = ACTIONS(1115), + [anon_sym_xor_EQ] = ACTIONS(1115), + [anon_sym_LT_LT_EQ] = ACTIONS(1115), + [anon_sym_GT_GT_EQ] = ACTIONS(1115), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1115), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_defer] = ACTIONS(1117), + [anon_sym_errdefer] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_expand] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), + [anon_sym_orelse] = ACTIONS(1117), + [anon_sym_catch] = ACTIONS(1117), + [anon_sym_or] = ACTIONS(1117), + [anon_sym_and] = ACTIONS(1117), + [anon_sym_EQ_EQ] = ACTIONS(1115), + [anon_sym_BANG_EQ] = ACTIONS(1115), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_AMP] = ACTIONS(1117), + [anon_sym_xor] = ACTIONS(1117), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1117), + [anon_sym_LT_LT_PIPE] = ACTIONS(1117), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1117), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_try] = ACTIONS(1117), + [anon_sym_DOT] = ACTIONS(1117), + [anon_sym_CARET] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1117), + [anon_sym_false] = ACTIONS(1117), + [sym_none] = ACTIONS(1117), + [sym_undefined] = ACTIONS(1117), + [sym_sink] = ACTIONS(1117), + [sym_integer] = ACTIONS(1117), + [sym_float] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_multiline_string] = ACTIONS(1115), + [sym_character] = ACTIONS(1115), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1115), + }, + [STATE(250)] = { + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1121), + [anon_sym_import] = ACTIONS(1121), + [anon_sym_test] = ACTIONS(1121), + [anon_sym_hide] = ACTIONS(1121), + [anon_sym_func] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_EQ] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_PIPE] = ACTIONS(1121), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1121), + [anon_sym_anyopaque] = ACTIONS(1121), + [anon_sym_bool] = ACTIONS(1121), + [anon_sym_int] = ACTIONS(1121), + [anon_sym_uint] = ACTIONS(1121), + [anon_sym_float] = ACTIONS(1121), + [anon_sym_range] = ACTIONS(1121), + [anon_sym_i8] = ACTIONS(1121), + [anon_sym_i16] = ACTIONS(1121), + [anon_sym_i32] = ACTIONS(1121), + [anon_sym_i64] = ACTIONS(1121), + [anon_sym_u8] = ACTIONS(1121), + [anon_sym_u16] = ACTIONS(1121), + [anon_sym_u32] = ACTIONS(1121), + [anon_sym_u64] = ACTIONS(1121), + [anon_sym_isize] = ACTIONS(1121), + [anon_sym_usize] = ACTIONS(1121), + [anon_sym_f32] = ACTIONS(1121), + [anon_sym_f64] = ACTIONS(1121), + [anon_sym_c_char] = ACTIONS(1121), + [anon_sym_c_schar] = ACTIONS(1121), + [anon_sym_c_uchar] = ACTIONS(1121), + [anon_sym_c_short] = ACTIONS(1121), + [anon_sym_c_ushort] = ACTIONS(1121), + [anon_sym_c_int] = ACTIONS(1121), + [anon_sym_c_uint] = ACTIONS(1121), + [anon_sym_c_long] = ACTIONS(1121), + [anon_sym_c_ulong] = ACTIONS(1121), + [anon_sym_c_longlong] = ACTIONS(1121), + [anon_sym_c_ulonglong] = ACTIONS(1121), + [anon_sym_c_float] = ACTIONS(1121), + [anon_sym_c_double] = ACTIONS(1121), + [anon_sym_c_longdouble] = ACTIONS(1121), + [anon_sym_PLUS_EQ] = ACTIONS(1119), + [anon_sym_DASH_EQ] = ACTIONS(1119), + [anon_sym_STAR_EQ] = ACTIONS(1119), + [anon_sym_SLASH_EQ] = ACTIONS(1119), + [anon_sym_AMP_EQ] = ACTIONS(1119), + [anon_sym_PIPE_EQ] = ACTIONS(1119), + [anon_sym_xor_EQ] = ACTIONS(1119), + [anon_sym_LT_LT_EQ] = ACTIONS(1119), + [anon_sym_GT_GT_EQ] = ACTIONS(1119), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1119), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_defer] = ACTIONS(1121), + [anon_sym_errdefer] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_else] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_expand] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), + [anon_sym_orelse] = ACTIONS(1121), + [anon_sym_catch] = ACTIONS(1121), + [anon_sym_or] = ACTIONS(1121), + [anon_sym_and] = ACTIONS(1121), + [anon_sym_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1121), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1121), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1121), + [anon_sym_xor] = ACTIONS(1121), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1121), + [anon_sym_LT_LT_PIPE] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_SLASH] = ACTIONS(1121), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1121), + [anon_sym_false] = ACTIONS(1121), + [sym_none] = ACTIONS(1121), + [sym_undefined] = ACTIONS(1121), + [sym_sink] = ACTIONS(1121), + [sym_integer] = ACTIONS(1121), + [sym_float] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_multiline_string] = ACTIONS(1119), + [sym_character] = ACTIONS(1119), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1119), + }, + [STATE(251)] = { + [ts_builtin_sym_end] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1125), + [anon_sym_import] = ACTIONS(1125), + [anon_sym_test] = ACTIONS(1125), + [anon_sym_hide] = ACTIONS(1125), + [anon_sym_func] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_EQ] = ACTIONS(1125), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_COMMA] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1125), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1125), + [anon_sym_anyopaque] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_int] = ACTIONS(1125), + [anon_sym_uint] = ACTIONS(1125), + [anon_sym_float] = ACTIONS(1125), + [anon_sym_range] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_c_char] = ACTIONS(1125), + [anon_sym_c_schar] = ACTIONS(1125), + [anon_sym_c_uchar] = ACTIONS(1125), + [anon_sym_c_short] = ACTIONS(1125), + [anon_sym_c_ushort] = ACTIONS(1125), + [anon_sym_c_int] = ACTIONS(1125), + [anon_sym_c_uint] = ACTIONS(1125), + [anon_sym_c_long] = ACTIONS(1125), + [anon_sym_c_ulong] = ACTIONS(1125), + [anon_sym_c_longlong] = ACTIONS(1125), + [anon_sym_c_ulonglong] = ACTIONS(1125), + [anon_sym_c_float] = ACTIONS(1125), + [anon_sym_c_double] = ACTIONS(1125), + [anon_sym_c_longdouble] = ACTIONS(1125), + [anon_sym_PLUS_EQ] = ACTIONS(1123), + [anon_sym_DASH_EQ] = ACTIONS(1123), + [anon_sym_STAR_EQ] = ACTIONS(1123), + [anon_sym_SLASH_EQ] = ACTIONS(1123), + [anon_sym_AMP_EQ] = ACTIONS(1123), + [anon_sym_PIPE_EQ] = ACTIONS(1123), + [anon_sym_xor_EQ] = ACTIONS(1123), + [anon_sym_LT_LT_EQ] = ACTIONS(1123), + [anon_sym_GT_GT_EQ] = ACTIONS(1123), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_defer] = ACTIONS(1125), + [anon_sym_errdefer] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_expand] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_match] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1123), + [anon_sym_orelse] = ACTIONS(1125), + [anon_sym_catch] = ACTIONS(1125), + [anon_sym_or] = ACTIONS(1125), + [anon_sym_and] = ACTIONS(1125), + [anon_sym_EQ_EQ] = ACTIONS(1123), + [anon_sym_BANG_EQ] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_LT_EQ] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_EQ] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1125), + [anon_sym_xor] = ACTIONS(1125), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1125), + [anon_sym_LT_LT_PIPE] = ACTIONS(1125), + [anon_sym_PLUS] = ACTIONS(1125), + [anon_sym_SLASH] = ACTIONS(1125), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1125), + [anon_sym_DOT] = ACTIONS(1125), + [anon_sym_CARET] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [sym_none] = ACTIONS(1125), + [sym_undefined] = ACTIONS(1125), + [sym_sink] = ACTIONS(1125), + [sym_integer] = ACTIONS(1125), + [sym_float] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_multiline_string] = ACTIONS(1123), + [sym_character] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1123), + }, + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_identifier] = ACTIONS(1131), + [anon_sym_import] = ACTIONS(1131), + [anon_sym_test] = ACTIONS(1131), + [anon_sym_hide] = ACTIONS(1131), + [anon_sym_func] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1131), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1131), + [anon_sym_QMARK] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1131), + [anon_sym_anyopaque] = ACTIONS(1131), + [anon_sym_bool] = ACTIONS(1131), + [anon_sym_int] = ACTIONS(1131), + [anon_sym_uint] = ACTIONS(1131), + [anon_sym_float] = ACTIONS(1131), + [anon_sym_range] = ACTIONS(1131), + [anon_sym_i8] = ACTIONS(1131), + [anon_sym_i16] = ACTIONS(1131), + [anon_sym_i32] = ACTIONS(1131), + [anon_sym_i64] = ACTIONS(1131), + [anon_sym_u8] = ACTIONS(1131), + [anon_sym_u16] = ACTIONS(1131), + [anon_sym_u32] = ACTIONS(1131), + [anon_sym_u64] = ACTIONS(1131), + [anon_sym_isize] = ACTIONS(1131), + [anon_sym_usize] = ACTIONS(1131), + [anon_sym_f32] = ACTIONS(1131), + [anon_sym_f64] = ACTIONS(1131), + [anon_sym_c_char] = ACTIONS(1131), + [anon_sym_c_schar] = ACTIONS(1131), + [anon_sym_c_uchar] = ACTIONS(1131), + [anon_sym_c_short] = ACTIONS(1131), + [anon_sym_c_ushort] = ACTIONS(1131), + [anon_sym_c_int] = ACTIONS(1131), + [anon_sym_c_uint] = ACTIONS(1131), + [anon_sym_c_long] = ACTIONS(1131), + [anon_sym_c_ulong] = ACTIONS(1131), + [anon_sym_c_longlong] = ACTIONS(1131), + [anon_sym_c_ulonglong] = ACTIONS(1131), + [anon_sym_c_float] = ACTIONS(1131), + [anon_sym_c_double] = ACTIONS(1131), + [anon_sym_c_longdouble] = ACTIONS(1131), + [anon_sym_PLUS_EQ] = ACTIONS(1129), + [anon_sym_DASH_EQ] = ACTIONS(1129), + [anon_sym_STAR_EQ] = ACTIONS(1129), + [anon_sym_SLASH_EQ] = ACTIONS(1129), + [anon_sym_AMP_EQ] = ACTIONS(1129), + [anon_sym_PIPE_EQ] = ACTIONS(1129), + [anon_sym_xor_EQ] = ACTIONS(1129), + [anon_sym_LT_LT_EQ] = ACTIONS(1129), + [anon_sym_GT_GT_EQ] = ACTIONS(1129), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1129), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_defer] = ACTIONS(1131), + [anon_sym_errdefer] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_expand] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_DOT_DOT] = ACTIONS(1131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_orelse] = ACTIONS(1131), + [anon_sym_catch] = ACTIONS(1131), + [anon_sym_or] = ACTIONS(1131), + [anon_sym_and] = ACTIONS(1131), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(1131), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1131), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1131), + [anon_sym_xor] = ACTIONS(1131), + [anon_sym_LT_LT] = ACTIONS(1131), + [anon_sym_GT_GT] = ACTIONS(1131), + [anon_sym_LT_LT_PIPE] = ACTIONS(1131), + [anon_sym_PLUS] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1131), + [sym_none] = ACTIONS(1131), + [sym_undefined] = ACTIONS(1131), + [sym_sink] = ACTIONS(1131), + [sym_integer] = ACTIONS(1131), + [sym_float] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_multiline_string] = ACTIONS(1129), + [sym_character] = ACTIONS(1129), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1129), + }, + [STATE(253)] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [anon_sym_import] = ACTIONS(1135), + [anon_sym_test] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1135), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_anyopaque] = ACTIONS(1135), + [anon_sym_bool] = ACTIONS(1135), + [anon_sym_int] = ACTIONS(1135), + [anon_sym_uint] = ACTIONS(1135), + [anon_sym_float] = ACTIONS(1135), + [anon_sym_range] = ACTIONS(1135), + [anon_sym_i8] = ACTIONS(1135), + [anon_sym_i16] = ACTIONS(1135), + [anon_sym_i32] = ACTIONS(1135), + [anon_sym_i64] = ACTIONS(1135), + [anon_sym_u8] = ACTIONS(1135), + [anon_sym_u16] = ACTIONS(1135), + [anon_sym_u32] = ACTIONS(1135), + [anon_sym_u64] = ACTIONS(1135), + [anon_sym_isize] = ACTIONS(1135), + [anon_sym_usize] = ACTIONS(1135), + [anon_sym_f32] = ACTIONS(1135), + [anon_sym_f64] = ACTIONS(1135), + [anon_sym_c_char] = ACTIONS(1135), + [anon_sym_c_schar] = ACTIONS(1135), + [anon_sym_c_uchar] = ACTIONS(1135), + [anon_sym_c_short] = ACTIONS(1135), + [anon_sym_c_ushort] = ACTIONS(1135), + [anon_sym_c_int] = ACTIONS(1135), + [anon_sym_c_uint] = ACTIONS(1135), + [anon_sym_c_long] = ACTIONS(1135), + [anon_sym_c_ulong] = ACTIONS(1135), + [anon_sym_c_longlong] = ACTIONS(1135), + [anon_sym_c_ulonglong] = ACTIONS(1135), + [anon_sym_c_float] = ACTIONS(1135), + [anon_sym_c_double] = ACTIONS(1135), + [anon_sym_c_longdouble] = ACTIONS(1135), + [anon_sym_PLUS_EQ] = ACTIONS(1133), + [anon_sym_DASH_EQ] = ACTIONS(1133), + [anon_sym_STAR_EQ] = ACTIONS(1133), + [anon_sym_SLASH_EQ] = ACTIONS(1133), + [anon_sym_AMP_EQ] = ACTIONS(1133), + [anon_sym_PIPE_EQ] = ACTIONS(1133), + [anon_sym_xor_EQ] = ACTIONS(1133), + [anon_sym_LT_LT_EQ] = ACTIONS(1133), + [anon_sym_GT_GT_EQ] = ACTIONS(1133), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1133), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_defer] = ACTIONS(1135), + [anon_sym_errdefer] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_expand] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1133), + [anon_sym_orelse] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1135), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1135), + [anon_sym_LT_LT_PIPE] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [sym_none] = ACTIONS(1135), + [sym_undefined] = ACTIONS(1135), + [sym_sink] = ACTIONS(1135), + [sym_integer] = ACTIONS(1135), + [sym_float] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_multiline_string] = ACTIONS(1133), + [sym_character] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1133), + }, + [STATE(254)] = { + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(1139), + [anon_sym_test] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_func] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_COMMA] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1139), + [anon_sym_QMARK] = ACTIONS(1137), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1139), + [anon_sym_anyopaque] = ACTIONS(1139), + [anon_sym_bool] = ACTIONS(1139), + [anon_sym_int] = ACTIONS(1139), + [anon_sym_uint] = ACTIONS(1139), + [anon_sym_float] = ACTIONS(1139), + [anon_sym_range] = ACTIONS(1139), + [anon_sym_i8] = ACTIONS(1139), + [anon_sym_i16] = ACTIONS(1139), + [anon_sym_i32] = ACTIONS(1139), + [anon_sym_i64] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(1139), + [anon_sym_u16] = ACTIONS(1139), + [anon_sym_u32] = ACTIONS(1139), + [anon_sym_u64] = ACTIONS(1139), + [anon_sym_isize] = ACTIONS(1139), + [anon_sym_usize] = ACTIONS(1139), + [anon_sym_f32] = ACTIONS(1139), + [anon_sym_f64] = ACTIONS(1139), + [anon_sym_c_char] = ACTIONS(1139), + [anon_sym_c_schar] = ACTIONS(1139), + [anon_sym_c_uchar] = ACTIONS(1139), + [anon_sym_c_short] = ACTIONS(1139), + [anon_sym_c_ushort] = ACTIONS(1139), + [anon_sym_c_int] = ACTIONS(1139), + [anon_sym_c_uint] = ACTIONS(1139), + [anon_sym_c_long] = ACTIONS(1139), + [anon_sym_c_ulong] = ACTIONS(1139), + [anon_sym_c_longlong] = ACTIONS(1139), + [anon_sym_c_ulonglong] = ACTIONS(1139), + [anon_sym_c_float] = ACTIONS(1139), + [anon_sym_c_double] = ACTIONS(1139), + [anon_sym_c_longdouble] = ACTIONS(1139), + [anon_sym_PLUS_EQ] = ACTIONS(1137), + [anon_sym_DASH_EQ] = ACTIONS(1137), + [anon_sym_STAR_EQ] = ACTIONS(1137), + [anon_sym_SLASH_EQ] = ACTIONS(1137), + [anon_sym_AMP_EQ] = ACTIONS(1137), + [anon_sym_PIPE_EQ] = ACTIONS(1137), + [anon_sym_xor_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_EQ] = ACTIONS(1137), + [anon_sym_GT_GT_EQ] = ACTIONS(1137), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1137), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_defer] = ACTIONS(1139), + [anon_sym_errdefer] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_expand] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), + [anon_sym_orelse] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1139), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1139), + [anon_sym_LT_LT_PIPE] = ACTIONS(1139), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_DOT] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [sym_none] = ACTIONS(1139), + [sym_undefined] = ACTIONS(1139), + [sym_sink] = ACTIONS(1139), + [sym_integer] = ACTIONS(1139), + [sym_float] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_multiline_string] = ACTIONS(1137), + [sym_character] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1137), + }, + [STATE(255)] = { + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1143), + [anon_sym_import] = ACTIONS(1143), + [anon_sym_test] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_func] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1143), + [anon_sym_DOLLAR] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1143), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_anyopaque] = ACTIONS(1143), + [anon_sym_bool] = ACTIONS(1143), + [anon_sym_int] = ACTIONS(1143), + [anon_sym_uint] = ACTIONS(1143), + [anon_sym_float] = ACTIONS(1143), + [anon_sym_range] = ACTIONS(1143), + [anon_sym_i8] = ACTIONS(1143), + [anon_sym_i16] = ACTIONS(1143), + [anon_sym_i32] = ACTIONS(1143), + [anon_sym_i64] = ACTIONS(1143), + [anon_sym_u8] = ACTIONS(1143), + [anon_sym_u16] = ACTIONS(1143), + [anon_sym_u32] = ACTIONS(1143), + [anon_sym_u64] = ACTIONS(1143), + [anon_sym_isize] = ACTIONS(1143), + [anon_sym_usize] = ACTIONS(1143), + [anon_sym_f32] = ACTIONS(1143), + [anon_sym_f64] = ACTIONS(1143), + [anon_sym_c_char] = ACTIONS(1143), + [anon_sym_c_schar] = ACTIONS(1143), + [anon_sym_c_uchar] = ACTIONS(1143), + [anon_sym_c_short] = ACTIONS(1143), + [anon_sym_c_ushort] = ACTIONS(1143), + [anon_sym_c_int] = ACTIONS(1143), + [anon_sym_c_uint] = ACTIONS(1143), + [anon_sym_c_long] = ACTIONS(1143), + [anon_sym_c_ulong] = ACTIONS(1143), + [anon_sym_c_longlong] = ACTIONS(1143), + [anon_sym_c_ulonglong] = ACTIONS(1143), + [anon_sym_c_float] = ACTIONS(1143), + [anon_sym_c_double] = ACTIONS(1143), + [anon_sym_c_longdouble] = ACTIONS(1143), + [anon_sym_PLUS_EQ] = ACTIONS(1141), + [anon_sym_DASH_EQ] = ACTIONS(1141), + [anon_sym_STAR_EQ] = ACTIONS(1141), + [anon_sym_SLASH_EQ] = ACTIONS(1141), + [anon_sym_AMP_EQ] = ACTIONS(1141), + [anon_sym_PIPE_EQ] = ACTIONS(1141), + [anon_sym_xor_EQ] = ACTIONS(1141), + [anon_sym_LT_LT_EQ] = ACTIONS(1141), + [anon_sym_GT_GT_EQ] = ACTIONS(1141), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_yield] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_defer] = ACTIONS(1143), + [anon_sym_errdefer] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_expand] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_orelse] = ACTIONS(1143), + [anon_sym_catch] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1143), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1143), + [anon_sym_LT_LT_PIPE] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1143), + [anon_sym_SLASH] = ACTIONS(1143), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_DOT] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [sym_none] = ACTIONS(1143), + [sym_undefined] = ACTIONS(1143), + [sym_sink] = ACTIONS(1143), + [sym_integer] = ACTIONS(1143), + [sym_float] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_multiline_string] = ACTIONS(1141), + [sym_character] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1141), + }, + [STATE(256)] = { + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1147), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_test] = ACTIONS(1147), + [anon_sym_hide] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1147), + [anon_sym_anyopaque] = ACTIONS(1147), + [anon_sym_bool] = ACTIONS(1147), + [anon_sym_int] = ACTIONS(1147), + [anon_sym_uint] = ACTIONS(1147), + [anon_sym_float] = ACTIONS(1147), + [anon_sym_range] = ACTIONS(1147), + [anon_sym_i8] = ACTIONS(1147), + [anon_sym_i16] = ACTIONS(1147), + [anon_sym_i32] = ACTIONS(1147), + [anon_sym_i64] = ACTIONS(1147), + [anon_sym_u8] = ACTIONS(1147), + [anon_sym_u16] = ACTIONS(1147), + [anon_sym_u32] = ACTIONS(1147), + [anon_sym_u64] = ACTIONS(1147), + [anon_sym_isize] = ACTIONS(1147), + [anon_sym_usize] = ACTIONS(1147), + [anon_sym_f32] = ACTIONS(1147), + [anon_sym_f64] = ACTIONS(1147), + [anon_sym_c_char] = ACTIONS(1147), + [anon_sym_c_schar] = ACTIONS(1147), + [anon_sym_c_uchar] = ACTIONS(1147), + [anon_sym_c_short] = ACTIONS(1147), + [anon_sym_c_ushort] = ACTIONS(1147), + [anon_sym_c_int] = ACTIONS(1147), + [anon_sym_c_uint] = ACTIONS(1147), + [anon_sym_c_long] = ACTIONS(1147), + [anon_sym_c_ulong] = ACTIONS(1147), + [anon_sym_c_longlong] = ACTIONS(1147), + [anon_sym_c_ulonglong] = ACTIONS(1147), + [anon_sym_c_float] = ACTIONS(1147), + [anon_sym_c_double] = ACTIONS(1147), + [anon_sym_c_longdouble] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(1145), + [anon_sym_DASH_EQ] = ACTIONS(1145), + [anon_sym_STAR_EQ] = ACTIONS(1145), + [anon_sym_SLASH_EQ] = ACTIONS(1145), + [anon_sym_AMP_EQ] = ACTIONS(1145), + [anon_sym_PIPE_EQ] = ACTIONS(1145), + [anon_sym_xor_EQ] = ACTIONS(1145), + [anon_sym_LT_LT_EQ] = ACTIONS(1145), + [anon_sym_GT_GT_EQ] = ACTIONS(1145), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_yield] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_defer] = ACTIONS(1147), + [anon_sym_errdefer] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_expand] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [anon_sym_orelse] = ACTIONS(1147), + [anon_sym_catch] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1147), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_xor] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_LT_LT_PIPE] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1147), + [anon_sym_false] = ACTIONS(1147), + [sym_none] = ACTIONS(1147), + [sym_undefined] = ACTIONS(1147), + [sym_sink] = ACTIONS(1147), + [sym_integer] = ACTIONS(1147), + [sym_float] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_multiline_string] = ACTIONS(1145), + [sym_character] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1145), + }, + [STATE(257)] = { + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1151), + [anon_sym_import] = ACTIONS(1151), + [anon_sym_test] = ACTIONS(1151), + [anon_sym_hide] = ACTIONS(1151), + [anon_sym_func] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_EQ] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1149), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_COMMA] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1151), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_void] = ACTIONS(1151), + [anon_sym_anyopaque] = ACTIONS(1151), + [anon_sym_bool] = ACTIONS(1151), + [anon_sym_int] = ACTIONS(1151), + [anon_sym_uint] = ACTIONS(1151), + [anon_sym_float] = ACTIONS(1151), + [anon_sym_range] = ACTIONS(1151), + [anon_sym_i8] = ACTIONS(1151), + [anon_sym_i16] = ACTIONS(1151), + [anon_sym_i32] = ACTIONS(1151), + [anon_sym_i64] = ACTIONS(1151), + [anon_sym_u8] = ACTIONS(1151), + [anon_sym_u16] = ACTIONS(1151), + [anon_sym_u32] = ACTIONS(1151), + [anon_sym_u64] = ACTIONS(1151), + [anon_sym_isize] = ACTIONS(1151), + [anon_sym_usize] = ACTIONS(1151), + [anon_sym_f32] = ACTIONS(1151), + [anon_sym_f64] = ACTIONS(1151), + [anon_sym_c_char] = ACTIONS(1151), + [anon_sym_c_schar] = ACTIONS(1151), + [anon_sym_c_uchar] = ACTIONS(1151), + [anon_sym_c_short] = ACTIONS(1151), + [anon_sym_c_ushort] = ACTIONS(1151), + [anon_sym_c_int] = ACTIONS(1151), + [anon_sym_c_uint] = ACTIONS(1151), + [anon_sym_c_long] = ACTIONS(1151), + [anon_sym_c_ulong] = ACTIONS(1151), + [anon_sym_c_longlong] = ACTIONS(1151), + [anon_sym_c_ulonglong] = ACTIONS(1151), + [anon_sym_c_float] = ACTIONS(1151), + [anon_sym_c_double] = ACTIONS(1151), + [anon_sym_c_longdouble] = ACTIONS(1151), + [anon_sym_PLUS_EQ] = ACTIONS(1149), + [anon_sym_DASH_EQ] = ACTIONS(1149), + [anon_sym_STAR_EQ] = ACTIONS(1149), + [anon_sym_SLASH_EQ] = ACTIONS(1149), + [anon_sym_AMP_EQ] = ACTIONS(1149), + [anon_sym_PIPE_EQ] = ACTIONS(1149), + [anon_sym_xor_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_GT_EQ] = ACTIONS(1149), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1149), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_yield] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_defer] = ACTIONS(1151), + [anon_sym_errdefer] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_expand] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_match] = ACTIONS(1151), + [anon_sym_DOT_DOT] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1149), + [anon_sym_orelse] = ACTIONS(1151), + [anon_sym_catch] = ACTIONS(1151), + [anon_sym_or] = ACTIONS(1151), + [anon_sym_and] = ACTIONS(1151), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_xor] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1151), + [anon_sym_LT_LT_PIPE] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1151), + [anon_sym_SLASH] = ACTIONS(1151), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_DOT] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_true] = ACTIONS(1151), + [anon_sym_false] = ACTIONS(1151), + [sym_none] = ACTIONS(1151), + [sym_undefined] = ACTIONS(1151), + [sym_sink] = ACTIONS(1151), + [sym_integer] = ACTIONS(1151), + [sym_float] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_multiline_string] = ACTIONS(1149), + [sym_character] = ACTIONS(1149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1149), + }, + [STATE(258)] = { + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(1155), + [anon_sym_test] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_func] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_EQ] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_COMMA] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1155), + [anon_sym_DOLLAR] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1153), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_anyopaque] = ACTIONS(1155), + [anon_sym_bool] = ACTIONS(1155), + [anon_sym_int] = ACTIONS(1155), + [anon_sym_uint] = ACTIONS(1155), + [anon_sym_float] = ACTIONS(1155), + [anon_sym_range] = ACTIONS(1155), + [anon_sym_i8] = ACTIONS(1155), + [anon_sym_i16] = ACTIONS(1155), + [anon_sym_i32] = ACTIONS(1155), + [anon_sym_i64] = ACTIONS(1155), + [anon_sym_u8] = ACTIONS(1155), + [anon_sym_u16] = ACTIONS(1155), + [anon_sym_u32] = ACTIONS(1155), + [anon_sym_u64] = ACTIONS(1155), + [anon_sym_isize] = ACTIONS(1155), + [anon_sym_usize] = ACTIONS(1155), + [anon_sym_f32] = ACTIONS(1155), + [anon_sym_f64] = ACTIONS(1155), + [anon_sym_c_char] = ACTIONS(1155), + [anon_sym_c_schar] = ACTIONS(1155), + [anon_sym_c_uchar] = ACTIONS(1155), + [anon_sym_c_short] = ACTIONS(1155), + [anon_sym_c_ushort] = ACTIONS(1155), + [anon_sym_c_int] = ACTIONS(1155), + [anon_sym_c_uint] = ACTIONS(1155), + [anon_sym_c_long] = ACTIONS(1155), + [anon_sym_c_ulong] = ACTIONS(1155), + [anon_sym_c_longlong] = ACTIONS(1155), + [anon_sym_c_ulonglong] = ACTIONS(1155), + [anon_sym_c_float] = ACTIONS(1155), + [anon_sym_c_double] = ACTIONS(1155), + [anon_sym_c_longdouble] = ACTIONS(1155), + [anon_sym_PLUS_EQ] = ACTIONS(1153), + [anon_sym_DASH_EQ] = ACTIONS(1153), + [anon_sym_STAR_EQ] = ACTIONS(1153), + [anon_sym_SLASH_EQ] = ACTIONS(1153), + [anon_sym_AMP_EQ] = ACTIONS(1153), + [anon_sym_PIPE_EQ] = ACTIONS(1153), + [anon_sym_xor_EQ] = ACTIONS(1153), + [anon_sym_LT_LT_EQ] = ACTIONS(1153), + [anon_sym_GT_GT_EQ] = ACTIONS(1153), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1153), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1155), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_defer] = ACTIONS(1155), + [anon_sym_errdefer] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_expand] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1153), + [anon_sym_orelse] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1153), + [anon_sym_BANG_EQ] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1155), + [anon_sym_LT_LT_PIPE] = ACTIONS(1155), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_SLASH] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [sym_none] = ACTIONS(1155), + [sym_undefined] = ACTIONS(1155), + [sym_sink] = ACTIONS(1155), + [sym_integer] = ACTIONS(1155), + [sym_float] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_multiline_string] = ACTIONS(1153), + [sym_character] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1153), + }, + [STATE(259)] = { + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(1159), + [anon_sym_test] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_func] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_EQ] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_COMMA] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_QMARK] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_void] = ACTIONS(1159), + [anon_sym_anyopaque] = ACTIONS(1159), + [anon_sym_bool] = ACTIONS(1159), + [anon_sym_int] = ACTIONS(1159), + [anon_sym_uint] = ACTIONS(1159), + [anon_sym_float] = ACTIONS(1159), + [anon_sym_range] = ACTIONS(1159), + [anon_sym_i8] = ACTIONS(1159), + [anon_sym_i16] = ACTIONS(1159), + [anon_sym_i32] = ACTIONS(1159), + [anon_sym_i64] = ACTIONS(1159), + [anon_sym_u8] = ACTIONS(1159), + [anon_sym_u16] = ACTIONS(1159), + [anon_sym_u32] = ACTIONS(1159), + [anon_sym_u64] = ACTIONS(1159), + [anon_sym_isize] = ACTIONS(1159), + [anon_sym_usize] = ACTIONS(1159), + [anon_sym_f32] = ACTIONS(1159), + [anon_sym_f64] = ACTIONS(1159), + [anon_sym_c_char] = ACTIONS(1159), + [anon_sym_c_schar] = ACTIONS(1159), + [anon_sym_c_uchar] = ACTIONS(1159), + [anon_sym_c_short] = ACTIONS(1159), + [anon_sym_c_ushort] = ACTIONS(1159), + [anon_sym_c_int] = ACTIONS(1159), + [anon_sym_c_uint] = ACTIONS(1159), + [anon_sym_c_long] = ACTIONS(1159), + [anon_sym_c_ulong] = ACTIONS(1159), + [anon_sym_c_longlong] = ACTIONS(1159), + [anon_sym_c_ulonglong] = ACTIONS(1159), + [anon_sym_c_float] = ACTIONS(1159), + [anon_sym_c_double] = ACTIONS(1159), + [anon_sym_c_longdouble] = ACTIONS(1159), + [anon_sym_PLUS_EQ] = ACTIONS(1157), + [anon_sym_DASH_EQ] = ACTIONS(1157), + [anon_sym_STAR_EQ] = ACTIONS(1157), + [anon_sym_SLASH_EQ] = ACTIONS(1157), + [anon_sym_AMP_EQ] = ACTIONS(1157), + [anon_sym_PIPE_EQ] = ACTIONS(1157), + [anon_sym_xor_EQ] = ACTIONS(1157), + [anon_sym_LT_LT_EQ] = ACTIONS(1157), + [anon_sym_GT_GT_EQ] = ACTIONS(1157), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_yield] = ACTIONS(1159), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_defer] = ACTIONS(1159), + [anon_sym_errdefer] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_expand] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [anon_sym_orelse] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1157), + [anon_sym_BANG_EQ] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1159), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_LT_LT_PIPE] = ACTIONS(1159), + [anon_sym_PLUS] = ACTIONS(1159), + [anon_sym_SLASH] = ACTIONS(1159), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_DOT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [sym_none] = ACTIONS(1159), + [sym_undefined] = ACTIONS(1159), + [sym_sink] = ACTIONS(1159), + [sym_integer] = ACTIONS(1159), + [sym_float] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_multiline_string] = ACTIONS(1157), + [sym_character] = ACTIONS(1157), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1157), + }, + [STATE(260)] = { + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1163), + [anon_sym_import] = ACTIONS(1163), + [anon_sym_test] = ACTIONS(1163), + [anon_sym_hide] = ACTIONS(1163), + [anon_sym_func] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1163), + [anon_sym_DOLLAR] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1163), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_void] = ACTIONS(1163), + [anon_sym_anyopaque] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_int] = ACTIONS(1163), + [anon_sym_uint] = ACTIONS(1163), + [anon_sym_float] = ACTIONS(1163), + [anon_sym_range] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_c_char] = ACTIONS(1163), + [anon_sym_c_schar] = ACTIONS(1163), + [anon_sym_c_uchar] = ACTIONS(1163), + [anon_sym_c_short] = ACTIONS(1163), + [anon_sym_c_ushort] = ACTIONS(1163), + [anon_sym_c_int] = ACTIONS(1163), + [anon_sym_c_uint] = ACTIONS(1163), + [anon_sym_c_long] = ACTIONS(1163), + [anon_sym_c_ulong] = ACTIONS(1163), + [anon_sym_c_longlong] = ACTIONS(1163), + [anon_sym_c_ulonglong] = ACTIONS(1163), + [anon_sym_c_float] = ACTIONS(1163), + [anon_sym_c_double] = ACTIONS(1163), + [anon_sym_c_longdouble] = ACTIONS(1163), + [anon_sym_PLUS_EQ] = ACTIONS(1161), + [anon_sym_DASH_EQ] = ACTIONS(1161), + [anon_sym_STAR_EQ] = ACTIONS(1161), + [anon_sym_SLASH_EQ] = ACTIONS(1161), + [anon_sym_AMP_EQ] = ACTIONS(1161), + [anon_sym_PIPE_EQ] = ACTIONS(1161), + [anon_sym_xor_EQ] = ACTIONS(1161), + [anon_sym_LT_LT_EQ] = ACTIONS(1161), + [anon_sym_GT_GT_EQ] = ACTIONS(1161), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1161), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_defer] = ACTIONS(1163), + [anon_sym_errdefer] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_expand] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_DOT_DOT] = ACTIONS(1163), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1161), + [anon_sym_orelse] = ACTIONS(1163), + [anon_sym_catch] = ACTIONS(1163), + [anon_sym_or] = ACTIONS(1163), + [anon_sym_and] = ACTIONS(1163), + [anon_sym_EQ_EQ] = ACTIONS(1161), + [anon_sym_BANG_EQ] = ACTIONS(1161), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_LT_EQ] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_GT_EQ] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1163), + [anon_sym_xor] = ACTIONS(1163), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1163), + [anon_sym_LT_LT_PIPE] = ACTIONS(1163), + [anon_sym_PLUS] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1161), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [sym_none] = ACTIONS(1163), + [sym_undefined] = ACTIONS(1163), + [sym_sink] = ACTIONS(1163), + [sym_integer] = ACTIONS(1163), + [sym_float] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_multiline_string] = ACTIONS(1161), + [sym_character] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1161), + }, + [STATE(261)] = { + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1167), + [anon_sym_import] = ACTIONS(1167), + [anon_sym_test] = ACTIONS(1167), + [anon_sym_hide] = ACTIONS(1167), + [anon_sym_func] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_COMMA] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1167), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1167), + [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1167), + [anon_sym_anyopaque] = ACTIONS(1167), + [anon_sym_bool] = ACTIONS(1167), + [anon_sym_int] = ACTIONS(1167), + [anon_sym_uint] = ACTIONS(1167), + [anon_sym_float] = ACTIONS(1167), + [anon_sym_range] = ACTIONS(1167), + [anon_sym_i8] = ACTIONS(1167), + [anon_sym_i16] = ACTIONS(1167), + [anon_sym_i32] = ACTIONS(1167), + [anon_sym_i64] = ACTIONS(1167), + [anon_sym_u8] = ACTIONS(1167), + [anon_sym_u16] = ACTIONS(1167), + [anon_sym_u32] = ACTIONS(1167), + [anon_sym_u64] = ACTIONS(1167), + [anon_sym_isize] = ACTIONS(1167), + [anon_sym_usize] = ACTIONS(1167), + [anon_sym_f32] = ACTIONS(1167), + [anon_sym_f64] = ACTIONS(1167), + [anon_sym_c_char] = ACTIONS(1167), + [anon_sym_c_schar] = ACTIONS(1167), + [anon_sym_c_uchar] = ACTIONS(1167), + [anon_sym_c_short] = ACTIONS(1167), + [anon_sym_c_ushort] = ACTIONS(1167), + [anon_sym_c_int] = ACTIONS(1167), + [anon_sym_c_uint] = ACTIONS(1167), + [anon_sym_c_long] = ACTIONS(1167), + [anon_sym_c_ulong] = ACTIONS(1167), + [anon_sym_c_longlong] = ACTIONS(1167), + [anon_sym_c_ulonglong] = ACTIONS(1167), + [anon_sym_c_float] = ACTIONS(1167), + [anon_sym_c_double] = ACTIONS(1167), + [anon_sym_c_longdouble] = ACTIONS(1167), + [anon_sym_PLUS_EQ] = ACTIONS(1165), + [anon_sym_DASH_EQ] = ACTIONS(1165), + [anon_sym_STAR_EQ] = ACTIONS(1165), + [anon_sym_SLASH_EQ] = ACTIONS(1165), + [anon_sym_AMP_EQ] = ACTIONS(1165), + [anon_sym_PIPE_EQ] = ACTIONS(1165), + [anon_sym_xor_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_EQ] = ACTIONS(1165), + [anon_sym_GT_GT_EQ] = ACTIONS(1165), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_yield] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_defer] = ACTIONS(1167), + [anon_sym_errdefer] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_expand] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_match] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_orelse] = ACTIONS(1167), + [anon_sym_catch] = ACTIONS(1167), + [anon_sym_or] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1167), + [anon_sym_xor] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1167), + [anon_sym_LT_LT_PIPE] = ACTIONS(1167), + [anon_sym_PLUS] = ACTIONS(1167), + [anon_sym_SLASH] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1167), + [anon_sym_DOT] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1167), + [anon_sym_false] = ACTIONS(1167), + [sym_none] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1167), + [sym_sink] = ACTIONS(1167), + [sym_integer] = ACTIONS(1167), + [sym_float] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_multiline_string] = ACTIONS(1165), + [sym_character] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1165), + }, + [STATE(262)] = { + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1171), + [anon_sym_import] = ACTIONS(1171), + [anon_sym_test] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_func] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1171), + [anon_sym_QMARK] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1171), + [anon_sym_anyopaque] = ACTIONS(1171), + [anon_sym_bool] = ACTIONS(1171), + [anon_sym_int] = ACTIONS(1171), + [anon_sym_uint] = ACTIONS(1171), + [anon_sym_float] = ACTIONS(1171), + [anon_sym_range] = ACTIONS(1171), + [anon_sym_i8] = ACTIONS(1171), + [anon_sym_i16] = ACTIONS(1171), + [anon_sym_i32] = ACTIONS(1171), + [anon_sym_i64] = ACTIONS(1171), + [anon_sym_u8] = ACTIONS(1171), + [anon_sym_u16] = ACTIONS(1171), + [anon_sym_u32] = ACTIONS(1171), + [anon_sym_u64] = ACTIONS(1171), + [anon_sym_isize] = ACTIONS(1171), + [anon_sym_usize] = ACTIONS(1171), + [anon_sym_f32] = ACTIONS(1171), + [anon_sym_f64] = ACTIONS(1171), + [anon_sym_c_char] = ACTIONS(1171), + [anon_sym_c_schar] = ACTIONS(1171), + [anon_sym_c_uchar] = ACTIONS(1171), + [anon_sym_c_short] = ACTIONS(1171), + [anon_sym_c_ushort] = ACTIONS(1171), + [anon_sym_c_int] = ACTIONS(1171), + [anon_sym_c_uint] = ACTIONS(1171), + [anon_sym_c_long] = ACTIONS(1171), + [anon_sym_c_ulong] = ACTIONS(1171), + [anon_sym_c_longlong] = ACTIONS(1171), + [anon_sym_c_ulonglong] = ACTIONS(1171), + [anon_sym_c_float] = ACTIONS(1171), + [anon_sym_c_double] = ACTIONS(1171), + [anon_sym_c_longdouble] = ACTIONS(1171), + [anon_sym_PLUS_EQ] = ACTIONS(1169), + [anon_sym_DASH_EQ] = ACTIONS(1169), + [anon_sym_STAR_EQ] = ACTIONS(1169), + [anon_sym_SLASH_EQ] = ACTIONS(1169), + [anon_sym_AMP_EQ] = ACTIONS(1169), + [anon_sym_PIPE_EQ] = ACTIONS(1169), + [anon_sym_xor_EQ] = ACTIONS(1169), + [anon_sym_LT_LT_EQ] = ACTIONS(1169), + [anon_sym_GT_GT_EQ] = ACTIONS(1169), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1169), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_defer] = ACTIONS(1171), + [anon_sym_errdefer] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_expand] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), + [anon_sym_orelse] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_LT_LT_PIPE] = ACTIONS(1171), + [anon_sym_PLUS] = ACTIONS(1171), + [anon_sym_SLASH] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_DOT] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1169), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [sym_none] = ACTIONS(1171), + [sym_undefined] = ACTIONS(1171), + [sym_sink] = ACTIONS(1171), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_multiline_string] = ACTIONS(1169), + [sym_character] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1169), + }, + [STATE(263)] = { + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1175), + [anon_sym_import] = ACTIONS(1175), + [anon_sym_test] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_func] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_void] = ACTIONS(1175), + [anon_sym_anyopaque] = ACTIONS(1175), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_uint] = ACTIONS(1175), + [anon_sym_float] = ACTIONS(1175), + [anon_sym_range] = ACTIONS(1175), + [anon_sym_i8] = ACTIONS(1175), + [anon_sym_i16] = ACTIONS(1175), + [anon_sym_i32] = ACTIONS(1175), + [anon_sym_i64] = ACTIONS(1175), + [anon_sym_u8] = ACTIONS(1175), + [anon_sym_u16] = ACTIONS(1175), + [anon_sym_u32] = ACTIONS(1175), + [anon_sym_u64] = ACTIONS(1175), + [anon_sym_isize] = ACTIONS(1175), + [anon_sym_usize] = ACTIONS(1175), + [anon_sym_f32] = ACTIONS(1175), + [anon_sym_f64] = ACTIONS(1175), + [anon_sym_c_char] = ACTIONS(1175), + [anon_sym_c_schar] = ACTIONS(1175), + [anon_sym_c_uchar] = ACTIONS(1175), + [anon_sym_c_short] = ACTIONS(1175), + [anon_sym_c_ushort] = ACTIONS(1175), + [anon_sym_c_int] = ACTIONS(1175), + [anon_sym_c_uint] = ACTIONS(1175), + [anon_sym_c_long] = ACTIONS(1175), + [anon_sym_c_ulong] = ACTIONS(1175), + [anon_sym_c_longlong] = ACTIONS(1175), + [anon_sym_c_ulonglong] = ACTIONS(1175), + [anon_sym_c_float] = ACTIONS(1175), + [anon_sym_c_double] = ACTIONS(1175), + [anon_sym_c_longdouble] = ACTIONS(1175), + [anon_sym_PLUS_EQ] = ACTIONS(1173), + [anon_sym_DASH_EQ] = ACTIONS(1173), + [anon_sym_STAR_EQ] = ACTIONS(1173), + [anon_sym_SLASH_EQ] = ACTIONS(1173), + [anon_sym_AMP_EQ] = ACTIONS(1173), + [anon_sym_PIPE_EQ] = ACTIONS(1173), + [anon_sym_xor_EQ] = ACTIONS(1173), + [anon_sym_LT_LT_EQ] = ACTIONS(1173), + [anon_sym_GT_GT_EQ] = ACTIONS(1173), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1173), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_defer] = ACTIONS(1175), + [anon_sym_errdefer] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_expand] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_orelse] = ACTIONS(1175), + [anon_sym_catch] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1175), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(1175), + [anon_sym_GT_GT] = ACTIONS(1175), + [anon_sym_LT_LT_PIPE] = ACTIONS(1175), + [anon_sym_PLUS] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [sym_none] = ACTIONS(1175), + [sym_undefined] = ACTIONS(1175), + [sym_sink] = ACTIONS(1175), + [sym_integer] = ACTIONS(1175), + [sym_float] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_multiline_string] = ACTIONS(1173), + [sym_character] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1173), + }, + [STATE(264)] = { + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1179), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_test] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_func] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_COMMA] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1179), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1179), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_anyopaque] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_range] = ACTIONS(1179), + [anon_sym_i8] = ACTIONS(1179), + [anon_sym_i16] = ACTIONS(1179), + [anon_sym_i32] = ACTIONS(1179), + [anon_sym_i64] = ACTIONS(1179), + [anon_sym_u8] = ACTIONS(1179), + [anon_sym_u16] = ACTIONS(1179), + [anon_sym_u32] = ACTIONS(1179), + [anon_sym_u64] = ACTIONS(1179), + [anon_sym_isize] = ACTIONS(1179), + [anon_sym_usize] = ACTIONS(1179), + [anon_sym_f32] = ACTIONS(1179), + [anon_sym_f64] = ACTIONS(1179), + [anon_sym_c_char] = ACTIONS(1179), + [anon_sym_c_schar] = ACTIONS(1179), + [anon_sym_c_uchar] = ACTIONS(1179), + [anon_sym_c_short] = ACTIONS(1179), + [anon_sym_c_ushort] = ACTIONS(1179), + [anon_sym_c_int] = ACTIONS(1179), + [anon_sym_c_uint] = ACTIONS(1179), + [anon_sym_c_long] = ACTIONS(1179), + [anon_sym_c_ulong] = ACTIONS(1179), + [anon_sym_c_longlong] = ACTIONS(1179), + [anon_sym_c_ulonglong] = ACTIONS(1179), + [anon_sym_c_float] = ACTIONS(1179), + [anon_sym_c_double] = ACTIONS(1179), + [anon_sym_c_longdouble] = ACTIONS(1179), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_AMP_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1177), + [anon_sym_xor_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_GT_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_yield] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_errdefer] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_expand] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), + [anon_sym_orelse] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1179), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1179), + [anon_sym_GT_GT] = ACTIONS(1179), + [anon_sym_LT_LT_PIPE] = ACTIONS(1179), + [anon_sym_PLUS] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [sym_none] = ACTIONS(1179), + [sym_undefined] = ACTIONS(1179), + [sym_sink] = ACTIONS(1179), + [sym_integer] = ACTIONS(1179), + [sym_float] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_multiline_string] = ACTIONS(1177), + [sym_character] = ACTIONS(1177), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1177), + }, + [STATE(265)] = { + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1183), + [anon_sym_import] = ACTIONS(1183), + [anon_sym_test] = ACTIONS(1183), + [anon_sym_hide] = ACTIONS(1183), + [anon_sym_func] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1183), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1183), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_anyopaque] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_int] = ACTIONS(1183), + [anon_sym_uint] = ACTIONS(1183), + [anon_sym_float] = ACTIONS(1183), + [anon_sym_range] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_c_char] = ACTIONS(1183), + [anon_sym_c_schar] = ACTIONS(1183), + [anon_sym_c_uchar] = ACTIONS(1183), + [anon_sym_c_short] = ACTIONS(1183), + [anon_sym_c_ushort] = ACTIONS(1183), + [anon_sym_c_int] = ACTIONS(1183), + [anon_sym_c_uint] = ACTIONS(1183), + [anon_sym_c_long] = ACTIONS(1183), + [anon_sym_c_ulong] = ACTIONS(1183), + [anon_sym_c_longlong] = ACTIONS(1183), + [anon_sym_c_ulonglong] = ACTIONS(1183), + [anon_sym_c_float] = ACTIONS(1183), + [anon_sym_c_double] = ACTIONS(1183), + [anon_sym_c_longdouble] = ACTIONS(1183), + [anon_sym_PLUS_EQ] = ACTIONS(1181), + [anon_sym_DASH_EQ] = ACTIONS(1181), + [anon_sym_STAR_EQ] = ACTIONS(1181), + [anon_sym_SLASH_EQ] = ACTIONS(1181), + [anon_sym_AMP_EQ] = ACTIONS(1181), + [anon_sym_PIPE_EQ] = ACTIONS(1181), + [anon_sym_xor_EQ] = ACTIONS(1181), + [anon_sym_LT_LT_EQ] = ACTIONS(1181), + [anon_sym_GT_GT_EQ] = ACTIONS(1181), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1181), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_yield] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_defer] = ACTIONS(1183), + [anon_sym_errdefer] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_expand] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_match] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_orelse] = ACTIONS(1183), + [anon_sym_catch] = ACTIONS(1183), + [anon_sym_or] = ACTIONS(1183), + [anon_sym_and] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1183), + [anon_sym_xor] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1183), + [anon_sym_LT_LT_PIPE] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1183), + [anon_sym_false] = ACTIONS(1183), + [sym_none] = ACTIONS(1183), + [sym_undefined] = ACTIONS(1183), + [sym_sink] = ACTIONS(1183), + [sym_integer] = ACTIONS(1183), + [sym_float] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_multiline_string] = ACTIONS(1181), + [sym_character] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1181), + }, + [STATE(266)] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1187), + [anon_sym_import] = ACTIONS(1187), + [anon_sym_test] = ACTIONS(1187), + [anon_sym_hide] = ACTIONS(1187), + [anon_sym_func] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1187), + [anon_sym_anyopaque] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_int] = ACTIONS(1187), + [anon_sym_uint] = ACTIONS(1187), + [anon_sym_float] = ACTIONS(1187), + [anon_sym_range] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_c_char] = ACTIONS(1187), + [anon_sym_c_schar] = ACTIONS(1187), + [anon_sym_c_uchar] = ACTIONS(1187), + [anon_sym_c_short] = ACTIONS(1187), + [anon_sym_c_ushort] = ACTIONS(1187), + [anon_sym_c_int] = ACTIONS(1187), + [anon_sym_c_uint] = ACTIONS(1187), + [anon_sym_c_long] = ACTIONS(1187), + [anon_sym_c_ulong] = ACTIONS(1187), + [anon_sym_c_longlong] = ACTIONS(1187), + [anon_sym_c_ulonglong] = ACTIONS(1187), + [anon_sym_c_float] = ACTIONS(1187), + [anon_sym_c_double] = ACTIONS(1187), + [anon_sym_c_longdouble] = ACTIONS(1187), + [anon_sym_PLUS_EQ] = ACTIONS(1185), + [anon_sym_DASH_EQ] = ACTIONS(1185), + [anon_sym_STAR_EQ] = ACTIONS(1185), + [anon_sym_SLASH_EQ] = ACTIONS(1185), + [anon_sym_AMP_EQ] = ACTIONS(1185), + [anon_sym_PIPE_EQ] = ACTIONS(1185), + [anon_sym_xor_EQ] = ACTIONS(1185), + [anon_sym_LT_LT_EQ] = ACTIONS(1185), + [anon_sym_GT_GT_EQ] = ACTIONS(1185), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1185), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_defer] = ACTIONS(1187), + [anon_sym_errdefer] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_expand] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), + [anon_sym_orelse] = ACTIONS(1187), + [anon_sym_catch] = ACTIONS(1187), + [anon_sym_or] = ACTIONS(1187), + [anon_sym_and] = ACTIONS(1187), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1187), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_xor] = ACTIONS(1187), + [anon_sym_LT_LT] = ACTIONS(1187), + [anon_sym_GT_GT] = ACTIONS(1187), + [anon_sym_LT_LT_PIPE] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_try] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1187), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1187), + [anon_sym_false] = ACTIONS(1187), + [sym_none] = ACTIONS(1187), + [sym_undefined] = ACTIONS(1187), + [sym_sink] = ACTIONS(1187), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_multiline_string] = ACTIONS(1185), + [sym_character] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1185), + }, + [STATE(267)] = { + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1191), + [anon_sym_import] = ACTIONS(1191), + [anon_sym_test] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_func] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1191), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_void] = ACTIONS(1191), + [anon_sym_anyopaque] = ACTIONS(1191), + [anon_sym_bool] = ACTIONS(1191), + [anon_sym_int] = ACTIONS(1191), + [anon_sym_uint] = ACTIONS(1191), + [anon_sym_float] = ACTIONS(1191), + [anon_sym_range] = ACTIONS(1191), + [anon_sym_i8] = ACTIONS(1191), + [anon_sym_i16] = ACTIONS(1191), + [anon_sym_i32] = ACTIONS(1191), + [anon_sym_i64] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(1191), + [anon_sym_u16] = ACTIONS(1191), + [anon_sym_u32] = ACTIONS(1191), + [anon_sym_u64] = ACTIONS(1191), + [anon_sym_isize] = ACTIONS(1191), + [anon_sym_usize] = ACTIONS(1191), + [anon_sym_f32] = ACTIONS(1191), + [anon_sym_f64] = ACTIONS(1191), + [anon_sym_c_char] = ACTIONS(1191), + [anon_sym_c_schar] = ACTIONS(1191), + [anon_sym_c_uchar] = ACTIONS(1191), + [anon_sym_c_short] = ACTIONS(1191), + [anon_sym_c_ushort] = ACTIONS(1191), + [anon_sym_c_int] = ACTIONS(1191), + [anon_sym_c_uint] = ACTIONS(1191), + [anon_sym_c_long] = ACTIONS(1191), + [anon_sym_c_ulong] = ACTIONS(1191), + [anon_sym_c_longlong] = ACTIONS(1191), + [anon_sym_c_ulonglong] = ACTIONS(1191), + [anon_sym_c_float] = ACTIONS(1191), + [anon_sym_c_double] = ACTIONS(1191), + [anon_sym_c_longdouble] = ACTIONS(1191), + [anon_sym_PLUS_EQ] = ACTIONS(1189), + [anon_sym_DASH_EQ] = ACTIONS(1189), + [anon_sym_STAR_EQ] = ACTIONS(1189), + [anon_sym_SLASH_EQ] = ACTIONS(1189), + [anon_sym_AMP_EQ] = ACTIONS(1189), + [anon_sym_PIPE_EQ] = ACTIONS(1189), + [anon_sym_xor_EQ] = ACTIONS(1189), + [anon_sym_LT_LT_EQ] = ACTIONS(1189), + [anon_sym_GT_GT_EQ] = ACTIONS(1189), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_yield] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_defer] = ACTIONS(1191), + [anon_sym_errdefer] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_expand] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1189), + [anon_sym_orelse] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1189), + [anon_sym_BANG_EQ] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1191), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_LT_LT] = ACTIONS(1191), + [anon_sym_GT_GT] = ACTIONS(1191), + [anon_sym_LT_LT_PIPE] = ACTIONS(1191), + [anon_sym_PLUS] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [sym_none] = ACTIONS(1191), + [sym_undefined] = ACTIONS(1191), + [sym_sink] = ACTIONS(1191), + [sym_integer] = ACTIONS(1191), + [sym_float] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_multiline_string] = ACTIONS(1189), + [sym_character] = ACTIONS(1189), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1189), + }, + [STATE(268)] = { + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1195), + [anon_sym_import] = ACTIONS(1195), + [anon_sym_test] = ACTIONS(1195), + [anon_sym_hide] = ACTIONS(1195), + [anon_sym_func] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1195), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_void] = ACTIONS(1195), + [anon_sym_anyopaque] = ACTIONS(1195), + [anon_sym_bool] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(1195), + [anon_sym_uint] = ACTIONS(1195), + [anon_sym_float] = ACTIONS(1195), + [anon_sym_range] = ACTIONS(1195), + [anon_sym_i8] = ACTIONS(1195), + [anon_sym_i16] = ACTIONS(1195), + [anon_sym_i32] = ACTIONS(1195), + [anon_sym_i64] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1195), + [anon_sym_u16] = ACTIONS(1195), + [anon_sym_u32] = ACTIONS(1195), + [anon_sym_u64] = ACTIONS(1195), + [anon_sym_isize] = ACTIONS(1195), + [anon_sym_usize] = ACTIONS(1195), + [anon_sym_f32] = ACTIONS(1195), + [anon_sym_f64] = ACTIONS(1195), + [anon_sym_c_char] = ACTIONS(1195), + [anon_sym_c_schar] = ACTIONS(1195), + [anon_sym_c_uchar] = ACTIONS(1195), + [anon_sym_c_short] = ACTIONS(1195), + [anon_sym_c_ushort] = ACTIONS(1195), + [anon_sym_c_int] = ACTIONS(1195), + [anon_sym_c_uint] = ACTIONS(1195), + [anon_sym_c_long] = ACTIONS(1195), + [anon_sym_c_ulong] = ACTIONS(1195), + [anon_sym_c_longlong] = ACTIONS(1195), + [anon_sym_c_ulonglong] = ACTIONS(1195), + [anon_sym_c_float] = ACTIONS(1195), + [anon_sym_c_double] = ACTIONS(1195), + [anon_sym_c_longdouble] = ACTIONS(1195), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_xor_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_yield] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_defer] = ACTIONS(1195), + [anon_sym_errdefer] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_expand] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_match] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1193), + [anon_sym_orelse] = ACTIONS(1195), + [anon_sym_catch] = ACTIONS(1195), + [anon_sym_or] = ACTIONS(1195), + [anon_sym_and] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_xor] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_LT_LT_PIPE] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), + [sym_none] = ACTIONS(1195), + [sym_undefined] = ACTIONS(1195), + [sym_sink] = ACTIONS(1195), + [sym_integer] = ACTIONS(1195), + [sym_float] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_multiline_string] = ACTIONS(1193), + [sym_character] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1193), + }, + [STATE(269)] = { + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1199), + [anon_sym_import] = ACTIONS(1199), + [anon_sym_test] = ACTIONS(1199), + [anon_sym_hide] = ACTIONS(1199), + [anon_sym_func] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1197), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_void] = ACTIONS(1199), + [anon_sym_anyopaque] = ACTIONS(1199), + [anon_sym_bool] = ACTIONS(1199), + [anon_sym_int] = ACTIONS(1199), + [anon_sym_uint] = ACTIONS(1199), + [anon_sym_float] = ACTIONS(1199), + [anon_sym_range] = ACTIONS(1199), + [anon_sym_i8] = ACTIONS(1199), + [anon_sym_i16] = ACTIONS(1199), + [anon_sym_i32] = ACTIONS(1199), + [anon_sym_i64] = ACTIONS(1199), + [anon_sym_u8] = ACTIONS(1199), + [anon_sym_u16] = ACTIONS(1199), + [anon_sym_u32] = ACTIONS(1199), + [anon_sym_u64] = ACTIONS(1199), + [anon_sym_isize] = ACTIONS(1199), + [anon_sym_usize] = ACTIONS(1199), + [anon_sym_f32] = ACTIONS(1199), + [anon_sym_f64] = ACTIONS(1199), + [anon_sym_c_char] = ACTIONS(1199), + [anon_sym_c_schar] = ACTIONS(1199), + [anon_sym_c_uchar] = ACTIONS(1199), + [anon_sym_c_short] = ACTIONS(1199), + [anon_sym_c_ushort] = ACTIONS(1199), + [anon_sym_c_int] = ACTIONS(1199), + [anon_sym_c_uint] = ACTIONS(1199), + [anon_sym_c_long] = ACTIONS(1199), + [anon_sym_c_ulong] = ACTIONS(1199), + [anon_sym_c_longlong] = ACTIONS(1199), + [anon_sym_c_ulonglong] = ACTIONS(1199), + [anon_sym_c_float] = ACTIONS(1199), + [anon_sym_c_double] = ACTIONS(1199), + [anon_sym_c_longdouble] = ACTIONS(1199), + [anon_sym_PLUS_EQ] = ACTIONS(1197), + [anon_sym_DASH_EQ] = ACTIONS(1197), + [anon_sym_STAR_EQ] = ACTIONS(1197), + [anon_sym_SLASH_EQ] = ACTIONS(1197), + [anon_sym_AMP_EQ] = ACTIONS(1197), + [anon_sym_PIPE_EQ] = ACTIONS(1197), + [anon_sym_xor_EQ] = ACTIONS(1197), + [anon_sym_LT_LT_EQ] = ACTIONS(1197), + [anon_sym_GT_GT_EQ] = ACTIONS(1197), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_yield] = ACTIONS(1199), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_defer] = ACTIONS(1199), + [anon_sym_errdefer] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_expand] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1199), + [anon_sym_DOT_DOT] = ACTIONS(1199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), + [anon_sym_orelse] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_or] = ACTIONS(1199), + [anon_sym_and] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1197), + [anon_sym_BANG_EQ] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1197), + [anon_sym_GT] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1199), + [anon_sym_xor] = ACTIONS(1199), + [anon_sym_LT_LT] = ACTIONS(1199), + [anon_sym_GT_GT] = ACTIONS(1199), + [anon_sym_LT_LT_PIPE] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1199), + [anon_sym_false] = ACTIONS(1199), + [sym_none] = ACTIONS(1199), + [sym_undefined] = ACTIONS(1199), + [sym_sink] = ACTIONS(1199), + [sym_integer] = ACTIONS(1199), + [sym_float] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_multiline_string] = ACTIONS(1197), + [sym_character] = ACTIONS(1197), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1197), + }, + [STATE(270)] = { + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(1203), + [anon_sym_test] = ACTIONS(1203), + [anon_sym_hide] = ACTIONS(1203), + [anon_sym_func] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_anyopaque] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_int] = ACTIONS(1203), + [anon_sym_uint] = ACTIONS(1203), + [anon_sym_float] = ACTIONS(1203), + [anon_sym_range] = ACTIONS(1203), + [anon_sym_i8] = ACTIONS(1203), + [anon_sym_i16] = ACTIONS(1203), + [anon_sym_i32] = ACTIONS(1203), + [anon_sym_i64] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1203), + [anon_sym_u16] = ACTIONS(1203), + [anon_sym_u32] = ACTIONS(1203), + [anon_sym_u64] = ACTIONS(1203), + [anon_sym_isize] = ACTIONS(1203), + [anon_sym_usize] = ACTIONS(1203), + [anon_sym_f32] = ACTIONS(1203), + [anon_sym_f64] = ACTIONS(1203), + [anon_sym_c_char] = ACTIONS(1203), + [anon_sym_c_schar] = ACTIONS(1203), + [anon_sym_c_uchar] = ACTIONS(1203), + [anon_sym_c_short] = ACTIONS(1203), + [anon_sym_c_ushort] = ACTIONS(1203), + [anon_sym_c_int] = ACTIONS(1203), + [anon_sym_c_uint] = ACTIONS(1203), + [anon_sym_c_long] = ACTIONS(1203), + [anon_sym_c_ulong] = ACTIONS(1203), + [anon_sym_c_longlong] = ACTIONS(1203), + [anon_sym_c_ulonglong] = ACTIONS(1203), + [anon_sym_c_float] = ACTIONS(1203), + [anon_sym_c_double] = ACTIONS(1203), + [anon_sym_c_longdouble] = ACTIONS(1203), + [anon_sym_PLUS_EQ] = ACTIONS(1201), + [anon_sym_DASH_EQ] = ACTIONS(1201), + [anon_sym_STAR_EQ] = ACTIONS(1201), + [anon_sym_SLASH_EQ] = ACTIONS(1201), + [anon_sym_AMP_EQ] = ACTIONS(1201), + [anon_sym_PIPE_EQ] = ACTIONS(1201), + [anon_sym_xor_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_EQ] = ACTIONS(1201), + [anon_sym_GT_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1201), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_defer] = ACTIONS(1203), + [anon_sym_errdefer] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_expand] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_match] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), + [anon_sym_orelse] = ACTIONS(1203), + [anon_sym_catch] = ACTIONS(1203), + [anon_sym_or] = ACTIONS(1203), + [anon_sym_and] = ACTIONS(1203), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1203), + [anon_sym_xor] = ACTIONS(1203), + [anon_sym_LT_LT] = ACTIONS(1203), + [anon_sym_GT_GT] = ACTIONS(1203), + [anon_sym_LT_LT_PIPE] = ACTIONS(1203), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1203), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1203), + [anon_sym_false] = ACTIONS(1203), + [sym_none] = ACTIONS(1203), + [sym_undefined] = ACTIONS(1203), + [sym_sink] = ACTIONS(1203), + [sym_integer] = ACTIONS(1203), + [sym_float] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_multiline_string] = ACTIONS(1201), + [sym_character] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1201), + }, + [STATE(271)] = { + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1207), + [anon_sym_import] = ACTIONS(1207), + [anon_sym_test] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), + [anon_sym_func] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DOLLAR] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_void] = ACTIONS(1207), + [anon_sym_anyopaque] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_int] = ACTIONS(1207), + [anon_sym_uint] = ACTIONS(1207), + [anon_sym_float] = ACTIONS(1207), + [anon_sym_range] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_c_char] = ACTIONS(1207), + [anon_sym_c_schar] = ACTIONS(1207), + [anon_sym_c_uchar] = ACTIONS(1207), + [anon_sym_c_short] = ACTIONS(1207), + [anon_sym_c_ushort] = ACTIONS(1207), + [anon_sym_c_int] = ACTIONS(1207), + [anon_sym_c_uint] = ACTIONS(1207), + [anon_sym_c_long] = ACTIONS(1207), + [anon_sym_c_ulong] = ACTIONS(1207), + [anon_sym_c_longlong] = ACTIONS(1207), + [anon_sym_c_ulonglong] = ACTIONS(1207), + [anon_sym_c_float] = ACTIONS(1207), + [anon_sym_c_double] = ACTIONS(1207), + [anon_sym_c_longdouble] = ACTIONS(1207), + [anon_sym_PLUS_EQ] = ACTIONS(1205), + [anon_sym_DASH_EQ] = ACTIONS(1205), + [anon_sym_STAR_EQ] = ACTIONS(1205), + [anon_sym_SLASH_EQ] = ACTIONS(1205), + [anon_sym_AMP_EQ] = ACTIONS(1205), + [anon_sym_PIPE_EQ] = ACTIONS(1205), + [anon_sym_xor_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1205), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_defer] = ACTIONS(1207), + [anon_sym_errdefer] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_expand] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_catch] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1207), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [anon_sym_GT_GT] = ACTIONS(1207), + [anon_sym_LT_LT_PIPE] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_SLASH] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [sym_none] = ACTIONS(1207), + [sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_multiline_string] = ACTIONS(1205), + [sym_character] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1205), + }, + [STATE(272)] = { + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1211), + [anon_sym_import] = ACTIONS(1211), + [anon_sym_test] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_func] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1211), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_void] = ACTIONS(1211), + [anon_sym_anyopaque] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_int] = ACTIONS(1211), + [anon_sym_uint] = ACTIONS(1211), + [anon_sym_float] = ACTIONS(1211), + [anon_sym_range] = ACTIONS(1211), + [anon_sym_i8] = ACTIONS(1211), + [anon_sym_i16] = ACTIONS(1211), + [anon_sym_i32] = ACTIONS(1211), + [anon_sym_i64] = ACTIONS(1211), + [anon_sym_u8] = ACTIONS(1211), + [anon_sym_u16] = ACTIONS(1211), + [anon_sym_u32] = ACTIONS(1211), + [anon_sym_u64] = ACTIONS(1211), + [anon_sym_isize] = ACTIONS(1211), + [anon_sym_usize] = ACTIONS(1211), + [anon_sym_f32] = ACTIONS(1211), + [anon_sym_f64] = ACTIONS(1211), + [anon_sym_c_char] = ACTIONS(1211), + [anon_sym_c_schar] = ACTIONS(1211), + [anon_sym_c_uchar] = ACTIONS(1211), + [anon_sym_c_short] = ACTIONS(1211), + [anon_sym_c_ushort] = ACTIONS(1211), + [anon_sym_c_int] = ACTIONS(1211), + [anon_sym_c_uint] = ACTIONS(1211), + [anon_sym_c_long] = ACTIONS(1211), + [anon_sym_c_ulong] = ACTIONS(1211), + [anon_sym_c_longlong] = ACTIONS(1211), + [anon_sym_c_ulonglong] = ACTIONS(1211), + [anon_sym_c_float] = ACTIONS(1211), + [anon_sym_c_double] = ACTIONS(1211), + [anon_sym_c_longdouble] = ACTIONS(1211), + [anon_sym_PLUS_EQ] = ACTIONS(1209), + [anon_sym_DASH_EQ] = ACTIONS(1209), + [anon_sym_STAR_EQ] = ACTIONS(1209), + [anon_sym_SLASH_EQ] = ACTIONS(1209), + [anon_sym_AMP_EQ] = ACTIONS(1209), + [anon_sym_PIPE_EQ] = ACTIONS(1209), + [anon_sym_xor_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_EQ] = ACTIONS(1209), + [anon_sym_GT_GT_EQ] = ACTIONS(1209), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1209), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_defer] = ACTIONS(1211), + [anon_sym_errdefer] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_expand] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_orelse] = ACTIONS(1211), + [anon_sym_catch] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1211), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT_PIPE] = ACTIONS(1211), + [anon_sym_PLUS] = ACTIONS(1211), + [anon_sym_SLASH] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [sym_none] = ACTIONS(1211), + [sym_undefined] = ACTIONS(1211), + [sym_sink] = ACTIONS(1211), + [sym_integer] = ACTIONS(1211), + [sym_float] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_multiline_string] = ACTIONS(1209), + [sym_character] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1209), + }, + [STATE(273)] = { + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1215), + [anon_sym_import] = ACTIONS(1215), + [anon_sym_test] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_func] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1215), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_void] = ACTIONS(1215), + [anon_sym_anyopaque] = ACTIONS(1215), + [anon_sym_bool] = ACTIONS(1215), + [anon_sym_int] = ACTIONS(1215), + [anon_sym_uint] = ACTIONS(1215), + [anon_sym_float] = ACTIONS(1215), + [anon_sym_range] = ACTIONS(1215), + [anon_sym_i8] = ACTIONS(1215), + [anon_sym_i16] = ACTIONS(1215), + [anon_sym_i32] = ACTIONS(1215), + [anon_sym_i64] = ACTIONS(1215), + [anon_sym_u8] = ACTIONS(1215), + [anon_sym_u16] = ACTIONS(1215), + [anon_sym_u32] = ACTIONS(1215), + [anon_sym_u64] = ACTIONS(1215), + [anon_sym_isize] = ACTIONS(1215), + [anon_sym_usize] = ACTIONS(1215), + [anon_sym_f32] = ACTIONS(1215), + [anon_sym_f64] = ACTIONS(1215), + [anon_sym_c_char] = ACTIONS(1215), + [anon_sym_c_schar] = ACTIONS(1215), + [anon_sym_c_uchar] = ACTIONS(1215), + [anon_sym_c_short] = ACTIONS(1215), + [anon_sym_c_ushort] = ACTIONS(1215), + [anon_sym_c_int] = ACTIONS(1215), + [anon_sym_c_uint] = ACTIONS(1215), + [anon_sym_c_long] = ACTIONS(1215), + [anon_sym_c_ulong] = ACTIONS(1215), + [anon_sym_c_longlong] = ACTIONS(1215), + [anon_sym_c_ulonglong] = ACTIONS(1215), + [anon_sym_c_float] = ACTIONS(1215), + [anon_sym_c_double] = ACTIONS(1215), + [anon_sym_c_longdouble] = ACTIONS(1215), + [anon_sym_PLUS_EQ] = ACTIONS(1213), + [anon_sym_DASH_EQ] = ACTIONS(1213), + [anon_sym_STAR_EQ] = ACTIONS(1213), + [anon_sym_SLASH_EQ] = ACTIONS(1213), + [anon_sym_AMP_EQ] = ACTIONS(1213), + [anon_sym_PIPE_EQ] = ACTIONS(1213), + [anon_sym_xor_EQ] = ACTIONS(1213), + [anon_sym_LT_LT_EQ] = ACTIONS(1213), + [anon_sym_GT_GT_EQ] = ACTIONS(1213), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1213), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_defer] = ACTIONS(1215), + [anon_sym_errdefer] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_expand] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_orelse] = ACTIONS(1215), + [anon_sym_catch] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT_PIPE] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [sym_none] = ACTIONS(1215), + [sym_undefined] = ACTIONS(1215), + [sym_sink] = ACTIONS(1215), + [sym_integer] = ACTIONS(1215), + [sym_float] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_multiline_string] = ACTIONS(1213), + [sym_character] = ACTIONS(1213), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1213), + }, + [STATE(274)] = { + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1219), + [anon_sym_import] = ACTIONS(1219), + [anon_sym_test] = ACTIONS(1219), + [anon_sym_hide] = ACTIONS(1219), + [anon_sym_func] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1219), + [anon_sym_QMARK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_void] = ACTIONS(1219), + [anon_sym_anyopaque] = ACTIONS(1219), + [anon_sym_bool] = ACTIONS(1219), + [anon_sym_int] = ACTIONS(1219), + [anon_sym_uint] = ACTIONS(1219), + [anon_sym_float] = ACTIONS(1219), + [anon_sym_range] = ACTIONS(1219), + [anon_sym_i8] = ACTIONS(1219), + [anon_sym_i16] = ACTIONS(1219), + [anon_sym_i32] = ACTIONS(1219), + [anon_sym_i64] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1219), + [anon_sym_u16] = ACTIONS(1219), + [anon_sym_u32] = ACTIONS(1219), + [anon_sym_u64] = ACTIONS(1219), + [anon_sym_isize] = ACTIONS(1219), + [anon_sym_usize] = ACTIONS(1219), + [anon_sym_f32] = ACTIONS(1219), + [anon_sym_f64] = ACTIONS(1219), + [anon_sym_c_char] = ACTIONS(1219), + [anon_sym_c_schar] = ACTIONS(1219), + [anon_sym_c_uchar] = ACTIONS(1219), + [anon_sym_c_short] = ACTIONS(1219), + [anon_sym_c_ushort] = ACTIONS(1219), + [anon_sym_c_int] = ACTIONS(1219), + [anon_sym_c_uint] = ACTIONS(1219), + [anon_sym_c_long] = ACTIONS(1219), + [anon_sym_c_ulong] = ACTIONS(1219), + [anon_sym_c_longlong] = ACTIONS(1219), + [anon_sym_c_ulonglong] = ACTIONS(1219), + [anon_sym_c_float] = ACTIONS(1219), + [anon_sym_c_double] = ACTIONS(1219), + [anon_sym_c_longdouble] = ACTIONS(1219), + [anon_sym_PLUS_EQ] = ACTIONS(1217), + [anon_sym_DASH_EQ] = ACTIONS(1217), + [anon_sym_STAR_EQ] = ACTIONS(1217), + [anon_sym_SLASH_EQ] = ACTIONS(1217), + [anon_sym_AMP_EQ] = ACTIONS(1217), + [anon_sym_PIPE_EQ] = ACTIONS(1217), + [anon_sym_xor_EQ] = ACTIONS(1217), + [anon_sym_LT_LT_EQ] = ACTIONS(1217), + [anon_sym_GT_GT_EQ] = ACTIONS(1217), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_defer] = ACTIONS(1219), + [anon_sym_errdefer] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_expand] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_match] = ACTIONS(1219), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), + [anon_sym_orelse] = ACTIONS(1219), + [anon_sym_catch] = ACTIONS(1219), + [anon_sym_or] = ACTIONS(1219), + [anon_sym_and] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_xor] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_LT_LT_PIPE] = ACTIONS(1219), + [anon_sym_PLUS] = ACTIONS(1219), + [anon_sym_SLASH] = ACTIONS(1219), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1219), + [anon_sym_false] = ACTIONS(1219), + [sym_none] = ACTIONS(1219), + [sym_undefined] = ACTIONS(1219), + [sym_sink] = ACTIONS(1219), + [sym_integer] = ACTIONS(1219), + [sym_float] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_multiline_string] = ACTIONS(1217), + [sym_character] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1217), + }, + [STATE(275)] = { + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1223), + [anon_sym_import] = ACTIONS(1223), + [anon_sym_test] = ACTIONS(1223), + [anon_sym_hide] = ACTIONS(1223), + [anon_sym_func] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1223), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_void] = ACTIONS(1223), + [anon_sym_anyopaque] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_int] = ACTIONS(1223), + [anon_sym_uint] = ACTIONS(1223), + [anon_sym_float] = ACTIONS(1223), + [anon_sym_range] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_c_char] = ACTIONS(1223), + [anon_sym_c_schar] = ACTIONS(1223), + [anon_sym_c_uchar] = ACTIONS(1223), + [anon_sym_c_short] = ACTIONS(1223), + [anon_sym_c_ushort] = ACTIONS(1223), + [anon_sym_c_int] = ACTIONS(1223), + [anon_sym_c_uint] = ACTIONS(1223), + [anon_sym_c_long] = ACTIONS(1223), + [anon_sym_c_ulong] = ACTIONS(1223), + [anon_sym_c_longlong] = ACTIONS(1223), + [anon_sym_c_ulonglong] = ACTIONS(1223), + [anon_sym_c_float] = ACTIONS(1223), + [anon_sym_c_double] = ACTIONS(1223), + [anon_sym_c_longdouble] = ACTIONS(1223), + [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_DASH_EQ] = ACTIONS(1221), + [anon_sym_STAR_EQ] = ACTIONS(1221), + [anon_sym_SLASH_EQ] = ACTIONS(1221), + [anon_sym_AMP_EQ] = ACTIONS(1221), + [anon_sym_PIPE_EQ] = ACTIONS(1221), + [anon_sym_xor_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_GT_EQ] = ACTIONS(1221), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_yield] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_defer] = ACTIONS(1223), + [anon_sym_errdefer] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_expand] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_orelse] = ACTIONS(1223), + [anon_sym_catch] = ACTIONS(1223), + [anon_sym_or] = ACTIONS(1223), + [anon_sym_and] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1223), + [anon_sym_xor] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_LT_LT_PIPE] = ACTIONS(1223), + [anon_sym_PLUS] = ACTIONS(1223), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1223), + [anon_sym_false] = ACTIONS(1223), + [sym_none] = ACTIONS(1223), + [sym_undefined] = ACTIONS(1223), + [sym_sink] = ACTIONS(1223), + [sym_integer] = ACTIONS(1223), + [sym_float] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_multiline_string] = ACTIONS(1221), + [sym_character] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1221), + }, + [STATE(276)] = { + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1227), + [anon_sym_import] = ACTIONS(1227), + [anon_sym_test] = ACTIONS(1227), + [anon_sym_hide] = ACTIONS(1227), + [anon_sym_func] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1227), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1227), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_void] = ACTIONS(1227), + [anon_sym_anyopaque] = ACTIONS(1227), + [anon_sym_bool] = ACTIONS(1227), + [anon_sym_int] = ACTIONS(1227), + [anon_sym_uint] = ACTIONS(1227), + [anon_sym_float] = ACTIONS(1227), + [anon_sym_range] = ACTIONS(1227), + [anon_sym_i8] = ACTIONS(1227), + [anon_sym_i16] = ACTIONS(1227), + [anon_sym_i32] = ACTIONS(1227), + [anon_sym_i64] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1227), + [anon_sym_u16] = ACTIONS(1227), + [anon_sym_u32] = ACTIONS(1227), + [anon_sym_u64] = ACTIONS(1227), + [anon_sym_isize] = ACTIONS(1227), + [anon_sym_usize] = ACTIONS(1227), + [anon_sym_f32] = ACTIONS(1227), + [anon_sym_f64] = ACTIONS(1227), + [anon_sym_c_char] = ACTIONS(1227), + [anon_sym_c_schar] = ACTIONS(1227), + [anon_sym_c_uchar] = ACTIONS(1227), + [anon_sym_c_short] = ACTIONS(1227), + [anon_sym_c_ushort] = ACTIONS(1227), + [anon_sym_c_int] = ACTIONS(1227), + [anon_sym_c_uint] = ACTIONS(1227), + [anon_sym_c_long] = ACTIONS(1227), + [anon_sym_c_ulong] = ACTIONS(1227), + [anon_sym_c_longlong] = ACTIONS(1227), + [anon_sym_c_ulonglong] = ACTIONS(1227), + [anon_sym_c_float] = ACTIONS(1227), + [anon_sym_c_double] = ACTIONS(1227), + [anon_sym_c_longdouble] = ACTIONS(1227), + [anon_sym_PLUS_EQ] = ACTIONS(1225), + [anon_sym_DASH_EQ] = ACTIONS(1225), + [anon_sym_STAR_EQ] = ACTIONS(1225), + [anon_sym_SLASH_EQ] = ACTIONS(1225), + [anon_sym_AMP_EQ] = ACTIONS(1225), + [anon_sym_PIPE_EQ] = ACTIONS(1225), + [anon_sym_xor_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_EQ] = ACTIONS(1225), + [anon_sym_GT_GT_EQ] = ACTIONS(1225), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_yield] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_defer] = ACTIONS(1227), + [anon_sym_errdefer] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_expand] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_orelse] = ACTIONS(1227), + [anon_sym_catch] = ACTIONS(1227), + [anon_sym_or] = ACTIONS(1227), + [anon_sym_and] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1227), + [anon_sym_xor] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1227), + [anon_sym_LT_LT_PIPE] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [sym_none] = ACTIONS(1227), + [sym_undefined] = ACTIONS(1227), + [sym_sink] = ACTIONS(1227), + [sym_integer] = ACTIONS(1227), + [sym_float] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_multiline_string] = ACTIONS(1225), + [sym_character] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1225), + }, + [STATE(277)] = { + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1231), + [anon_sym_import] = ACTIONS(1231), + [anon_sym_test] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_func] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1231), + [anon_sym_anyopaque] = ACTIONS(1231), + [anon_sym_bool] = ACTIONS(1231), + [anon_sym_int] = ACTIONS(1231), + [anon_sym_uint] = ACTIONS(1231), + [anon_sym_float] = ACTIONS(1231), + [anon_sym_range] = ACTIONS(1231), + [anon_sym_i8] = ACTIONS(1231), + [anon_sym_i16] = ACTIONS(1231), + [anon_sym_i32] = ACTIONS(1231), + [anon_sym_i64] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1231), + [anon_sym_u16] = ACTIONS(1231), + [anon_sym_u32] = ACTIONS(1231), + [anon_sym_u64] = ACTIONS(1231), + [anon_sym_isize] = ACTIONS(1231), + [anon_sym_usize] = ACTIONS(1231), + [anon_sym_f32] = ACTIONS(1231), + [anon_sym_f64] = ACTIONS(1231), + [anon_sym_c_char] = ACTIONS(1231), + [anon_sym_c_schar] = ACTIONS(1231), + [anon_sym_c_uchar] = ACTIONS(1231), + [anon_sym_c_short] = ACTIONS(1231), + [anon_sym_c_ushort] = ACTIONS(1231), + [anon_sym_c_int] = ACTIONS(1231), + [anon_sym_c_uint] = ACTIONS(1231), + [anon_sym_c_long] = ACTIONS(1231), + [anon_sym_c_ulong] = ACTIONS(1231), + [anon_sym_c_longlong] = ACTIONS(1231), + [anon_sym_c_ulonglong] = ACTIONS(1231), + [anon_sym_c_float] = ACTIONS(1231), + [anon_sym_c_double] = ACTIONS(1231), + [anon_sym_c_longdouble] = ACTIONS(1231), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_AMP_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_xor_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_GT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_defer] = ACTIONS(1231), + [anon_sym_errdefer] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_expand] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_orelse] = ACTIONS(1231), + [anon_sym_catch] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_xor] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_PIPE] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [sym_none] = ACTIONS(1231), + [sym_undefined] = ACTIONS(1231), + [sym_sink] = ACTIONS(1231), + [sym_integer] = ACTIONS(1231), + [sym_float] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_multiline_string] = ACTIONS(1229), + [sym_character] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1229), + }, + [STATE(278)] = { + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1235), + [anon_sym_import] = ACTIONS(1235), + [anon_sym_test] = ACTIONS(1235), + [anon_sym_hide] = ACTIONS(1235), + [anon_sym_func] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1235), + [anon_sym_anyopaque] = ACTIONS(1235), + [anon_sym_bool] = ACTIONS(1235), + [anon_sym_int] = ACTIONS(1235), + [anon_sym_uint] = ACTIONS(1235), + [anon_sym_float] = ACTIONS(1235), + [anon_sym_range] = ACTIONS(1235), + [anon_sym_i8] = ACTIONS(1235), + [anon_sym_i16] = ACTIONS(1235), + [anon_sym_i32] = ACTIONS(1235), + [anon_sym_i64] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1235), + [anon_sym_u16] = ACTIONS(1235), + [anon_sym_u32] = ACTIONS(1235), + [anon_sym_u64] = ACTIONS(1235), + [anon_sym_isize] = ACTIONS(1235), + [anon_sym_usize] = ACTIONS(1235), + [anon_sym_f32] = ACTIONS(1235), + [anon_sym_f64] = ACTIONS(1235), + [anon_sym_c_char] = ACTIONS(1235), + [anon_sym_c_schar] = ACTIONS(1235), + [anon_sym_c_uchar] = ACTIONS(1235), + [anon_sym_c_short] = ACTIONS(1235), + [anon_sym_c_ushort] = ACTIONS(1235), + [anon_sym_c_int] = ACTIONS(1235), + [anon_sym_c_uint] = ACTIONS(1235), + [anon_sym_c_long] = ACTIONS(1235), + [anon_sym_c_ulong] = ACTIONS(1235), + [anon_sym_c_longlong] = ACTIONS(1235), + [anon_sym_c_ulonglong] = ACTIONS(1235), + [anon_sym_c_float] = ACTIONS(1235), + [anon_sym_c_double] = ACTIONS(1235), + [anon_sym_c_longdouble] = ACTIONS(1235), + [anon_sym_PLUS_EQ] = ACTIONS(1233), + [anon_sym_DASH_EQ] = ACTIONS(1233), + [anon_sym_STAR_EQ] = ACTIONS(1233), + [anon_sym_SLASH_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_xor_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1233), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_defer] = ACTIONS(1235), + [anon_sym_errdefer] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_expand] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_orelse] = ACTIONS(1235), + [anon_sym_catch] = ACTIONS(1235), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_xor] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_LT_LT_PIPE] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1235), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1235), + [anon_sym_false] = ACTIONS(1235), + [sym_none] = ACTIONS(1235), + [sym_undefined] = ACTIONS(1235), + [sym_sink] = ACTIONS(1235), + [sym_integer] = ACTIONS(1235), + [sym_float] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_multiline_string] = ACTIONS(1233), + [sym_character] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1233), + }, + [STATE(279)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(280)] = { + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1239), + [anon_sym_import] = ACTIONS(1239), + [anon_sym_test] = ACTIONS(1239), + [anon_sym_hide] = ACTIONS(1239), + [anon_sym_func] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1239), + [anon_sym_anyopaque] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_int] = ACTIONS(1239), + [anon_sym_uint] = ACTIONS(1239), + [anon_sym_float] = ACTIONS(1239), + [anon_sym_range] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_c_char] = ACTIONS(1239), + [anon_sym_c_schar] = ACTIONS(1239), + [anon_sym_c_uchar] = ACTIONS(1239), + [anon_sym_c_short] = ACTIONS(1239), + [anon_sym_c_ushort] = ACTIONS(1239), + [anon_sym_c_int] = ACTIONS(1239), + [anon_sym_c_uint] = ACTIONS(1239), + [anon_sym_c_long] = ACTIONS(1239), + [anon_sym_c_ulong] = ACTIONS(1239), + [anon_sym_c_longlong] = ACTIONS(1239), + [anon_sym_c_ulonglong] = ACTIONS(1239), + [anon_sym_c_float] = ACTIONS(1239), + [anon_sym_c_double] = ACTIONS(1239), + [anon_sym_c_longdouble] = ACTIONS(1239), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_xor_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_defer] = ACTIONS(1239), + [anon_sym_errdefer] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_expand] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_orelse] = ACTIONS(1239), + [anon_sym_catch] = ACTIONS(1239), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_xor] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT_PIPE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [sym_none] = ACTIONS(1239), + [sym_undefined] = ACTIONS(1239), + [sym_sink] = ACTIONS(1239), + [sym_integer] = ACTIONS(1239), + [sym_float] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_multiline_string] = ACTIONS(1237), + [sym_character] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1237), + }, + [STATE(281)] = { + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1243), + [anon_sym_import] = ACTIONS(1243), + [anon_sym_test] = ACTIONS(1243), + [anon_sym_hide] = ACTIONS(1243), + [anon_sym_func] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(1243), + [anon_sym_anyopaque] = ACTIONS(1243), + [anon_sym_bool] = ACTIONS(1243), + [anon_sym_int] = ACTIONS(1243), + [anon_sym_uint] = ACTIONS(1243), + [anon_sym_float] = ACTIONS(1243), + [anon_sym_range] = ACTIONS(1243), + [anon_sym_i8] = ACTIONS(1243), + [anon_sym_i16] = ACTIONS(1243), + [anon_sym_i32] = ACTIONS(1243), + [anon_sym_i64] = ACTIONS(1243), + [anon_sym_u8] = ACTIONS(1243), + [anon_sym_u16] = ACTIONS(1243), + [anon_sym_u32] = ACTIONS(1243), + [anon_sym_u64] = ACTIONS(1243), + [anon_sym_isize] = ACTIONS(1243), + [anon_sym_usize] = ACTIONS(1243), + [anon_sym_f32] = ACTIONS(1243), + [anon_sym_f64] = ACTIONS(1243), + [anon_sym_c_char] = ACTIONS(1243), + [anon_sym_c_schar] = ACTIONS(1243), + [anon_sym_c_uchar] = ACTIONS(1243), + [anon_sym_c_short] = ACTIONS(1243), + [anon_sym_c_ushort] = ACTIONS(1243), + [anon_sym_c_int] = ACTIONS(1243), + [anon_sym_c_uint] = ACTIONS(1243), + [anon_sym_c_long] = ACTIONS(1243), + [anon_sym_c_ulong] = ACTIONS(1243), + [anon_sym_c_longlong] = ACTIONS(1243), + [anon_sym_c_ulonglong] = ACTIONS(1243), + [anon_sym_c_float] = ACTIONS(1243), + [anon_sym_c_double] = ACTIONS(1243), + [anon_sym_c_longdouble] = ACTIONS(1243), + [anon_sym_PLUS_EQ] = ACTIONS(1241), + [anon_sym_DASH_EQ] = ACTIONS(1241), + [anon_sym_STAR_EQ] = ACTIONS(1241), + [anon_sym_SLASH_EQ] = ACTIONS(1241), + [anon_sym_AMP_EQ] = ACTIONS(1241), + [anon_sym_PIPE_EQ] = ACTIONS(1241), + [anon_sym_xor_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_GT_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_defer] = ACTIONS(1243), + [anon_sym_errdefer] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_expand] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_match] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_orelse] = ACTIONS(1243), + [anon_sym_catch] = ACTIONS(1243), + [anon_sym_or] = ACTIONS(1243), + [anon_sym_and] = ACTIONS(1243), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_xor] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_LT_LT_PIPE] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [sym_none] = ACTIONS(1243), + [sym_undefined] = ACTIONS(1243), + [sym_sink] = ACTIONS(1243), + [sym_integer] = ACTIONS(1243), + [sym_float] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_multiline_string] = ACTIONS(1241), + [sym_character] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1241), + }, + [STATE(282)] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_import] = ACTIONS(1247), + [anon_sym_test] = ACTIONS(1247), + [anon_sym_hide] = ACTIONS(1247), + [anon_sym_func] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_anyopaque] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_uint] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_range] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_c_char] = ACTIONS(1247), + [anon_sym_c_schar] = ACTIONS(1247), + [anon_sym_c_uchar] = ACTIONS(1247), + [anon_sym_c_short] = ACTIONS(1247), + [anon_sym_c_ushort] = ACTIONS(1247), + [anon_sym_c_int] = ACTIONS(1247), + [anon_sym_c_uint] = ACTIONS(1247), + [anon_sym_c_long] = ACTIONS(1247), + [anon_sym_c_ulong] = ACTIONS(1247), + [anon_sym_c_longlong] = ACTIONS(1247), + [anon_sym_c_ulonglong] = ACTIONS(1247), + [anon_sym_c_float] = ACTIONS(1247), + [anon_sym_c_double] = ACTIONS(1247), + [anon_sym_c_longdouble] = ACTIONS(1247), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_xor_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_defer] = ACTIONS(1247), + [anon_sym_errdefer] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_expand] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_match] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_orelse] = ACTIONS(1247), + [anon_sym_catch] = ACTIONS(1247), + [anon_sym_or] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_xor] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_LT_LT_PIPE] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [sym_none] = ACTIONS(1247), + [sym_undefined] = ACTIONS(1247), + [sym_sink] = ACTIONS(1247), + [sym_integer] = ACTIONS(1247), + [sym_float] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_multiline_string] = ACTIONS(1245), + [sym_character] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1245), + }, + [STATE(283)] = { + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_import] = ACTIONS(1251), + [anon_sym_test] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_func] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_anyopaque] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_int] = ACTIONS(1251), + [anon_sym_uint] = ACTIONS(1251), + [anon_sym_float] = ACTIONS(1251), + [anon_sym_range] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_c_char] = ACTIONS(1251), + [anon_sym_c_schar] = ACTIONS(1251), + [anon_sym_c_uchar] = ACTIONS(1251), + [anon_sym_c_short] = ACTIONS(1251), + [anon_sym_c_ushort] = ACTIONS(1251), + [anon_sym_c_int] = ACTIONS(1251), + [anon_sym_c_uint] = ACTIONS(1251), + [anon_sym_c_long] = ACTIONS(1251), + [anon_sym_c_ulong] = ACTIONS(1251), + [anon_sym_c_longlong] = ACTIONS(1251), + [anon_sym_c_ulonglong] = ACTIONS(1251), + [anon_sym_c_float] = ACTIONS(1251), + [anon_sym_c_double] = ACTIONS(1251), + [anon_sym_c_longdouble] = ACTIONS(1251), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_xor_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_defer] = ACTIONS(1251), + [anon_sym_errdefer] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_expand] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_orelse] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_xor] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_LT_LT_PIPE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [sym_none] = ACTIONS(1251), + [sym_undefined] = ACTIONS(1251), + [sym_sink] = ACTIONS(1251), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_multiline_string] = ACTIONS(1249), + [sym_character] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1249), + }, + [STATE(284)] = { + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_import] = ACTIONS(1255), + [anon_sym_test] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_func] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_void] = ACTIONS(1255), + [anon_sym_anyopaque] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_int] = ACTIONS(1255), + [anon_sym_uint] = ACTIONS(1255), + [anon_sym_float] = ACTIONS(1255), + [anon_sym_range] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_c_char] = ACTIONS(1255), + [anon_sym_c_schar] = ACTIONS(1255), + [anon_sym_c_uchar] = ACTIONS(1255), + [anon_sym_c_short] = ACTIONS(1255), + [anon_sym_c_ushort] = ACTIONS(1255), + [anon_sym_c_int] = ACTIONS(1255), + [anon_sym_c_uint] = ACTIONS(1255), + [anon_sym_c_long] = ACTIONS(1255), + [anon_sym_c_ulong] = ACTIONS(1255), + [anon_sym_c_longlong] = ACTIONS(1255), + [anon_sym_c_ulonglong] = ACTIONS(1255), + [anon_sym_c_float] = ACTIONS(1255), + [anon_sym_c_double] = ACTIONS(1255), + [anon_sym_c_longdouble] = ACTIONS(1255), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_xor_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_defer] = ACTIONS(1255), + [anon_sym_errdefer] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_expand] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_orelse] = ACTIONS(1255), + [anon_sym_catch] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_LT_LT_PIPE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [sym_none] = ACTIONS(1255), + [sym_undefined] = ACTIONS(1255), + [sym_sink] = ACTIONS(1255), + [sym_integer] = ACTIONS(1255), + [sym_float] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_multiline_string] = ACTIONS(1253), + [sym_character] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1253), + }, + [STATE(285)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(287)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(288)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1257), + }, + [STATE(289)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1741), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1741), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(290)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(292), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1261), + }, + [STATE(291)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(292)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(109), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(619), + }, + [STATE(293)] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [anon_sym_import] = ACTIONS(643), + [anon_sym_test] = ACTIONS(643), + [anon_sym_hide] = ACTIONS(643), + [anon_sym_func] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_COMMA] = ACTIONS(641), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_void] = ACTIONS(643), + [anon_sym_anyopaque] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_int] = ACTIONS(643), + [anon_sym_uint] = ACTIONS(643), + [anon_sym_float] = ACTIONS(643), + [anon_sym_range] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_c_char] = ACTIONS(643), + [anon_sym_c_schar] = ACTIONS(643), + [anon_sym_c_uchar] = ACTIONS(643), + [anon_sym_c_short] = ACTIONS(643), + [anon_sym_c_ushort] = ACTIONS(643), + [anon_sym_c_int] = ACTIONS(643), + [anon_sym_c_uint] = ACTIONS(643), + [anon_sym_c_long] = ACTIONS(643), + [anon_sym_c_ulong] = ACTIONS(643), + [anon_sym_c_longlong] = ACTIONS(643), + [anon_sym_c_ulonglong] = ACTIONS(643), + [anon_sym_c_float] = ACTIONS(643), + [anon_sym_c_double] = ACTIONS(643), + [anon_sym_c_longdouble] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(641), + [anon_sym_DASH_EQ] = ACTIONS(641), + [anon_sym_STAR_EQ] = ACTIONS(641), + [anon_sym_SLASH_EQ] = ACTIONS(641), + [anon_sym_AMP_EQ] = ACTIONS(641), + [anon_sym_PIPE_EQ] = ACTIONS(641), + [anon_sym_xor_EQ] = ACTIONS(641), + [anon_sym_LT_LT_EQ] = ACTIONS(641), + [anon_sym_GT_GT_EQ] = ACTIONS(641), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(641), + [anon_sym_return] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_defer] = ACTIONS(643), + [anon_sym_errdefer] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [anon_sym_expand] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(641), + [anon_sym_orelse] = ACTIONS(643), + [anon_sym_catch] = ACTIONS(643), + [anon_sym_or] = ACTIONS(643), + [anon_sym_and] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), + [anon_sym_xor] = ACTIONS(643), + [anon_sym_LT_LT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(643), + [anon_sym_LT_LT_PIPE] = ACTIONS(643), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_try] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym_true] = ACTIONS(643), + [anon_sym_false] = ACTIONS(643), + [sym_none] = ACTIONS(643), + [sym_undefined] = ACTIONS(643), + [sym_sink] = ACTIONS(643), + [sym_integer] = ACTIONS(643), + [sym_float] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_multiline_string] = ACTIONS(641), + [sym_character] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(641), + }, + [STATE(294)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2522), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2522), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(297), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1265), + }, + [STATE(295)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2522), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2522), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(296)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(93), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1269), + }, + [STATE(297)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2529), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2529), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(298)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1271), + }, + [STATE(299)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2530), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2530), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1273), + }, + [STATE(300)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2530), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2530), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(301)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2514), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2514), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(302)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1275), + }, + [STATE(303)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(304)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1277), + }, + [STATE(305)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2531), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2531), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(306)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(314), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1279), + }, + [STATE(307)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1281), + }, + [STATE(308)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1712), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1712), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(332), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1283), + }, + [STATE(309)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(310)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1285), + }, + [STATE(311)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1287), + }, + [STATE(312)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(313)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(320), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1289), + }, + [STATE(314)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(315)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1291), + }, + [STATE(316)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1712), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1712), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(317)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(318)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(319)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1293), + }, + [STATE(320)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(321)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1295), + }, + [STATE(322)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1297), + }, + [STATE(323)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(324)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(325)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(326)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(327)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1299), + }, + [STATE(328)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(329)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2515), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2515), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1301), + }, + [STATE(330)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1707), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1707), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1303), + }, + [STATE(331)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1707), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1707), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(332)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1715), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1715), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(333)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1718), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1718), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(334)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1708), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1708), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1305), + }, + [STATE(335)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1708), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1708), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(336)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1711), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1711), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(337)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1307), + }, + [STATE(338)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2609), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2609), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1309), + }, + [STATE(339)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2609), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2609), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(340)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1709), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1709), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1311), + }, + [STATE(341)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2688), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(342)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2689), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1313), + }, + [STATE(343)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2689), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(344)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2723), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2723), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(345)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1709), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1709), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(346)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(347), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1317), + }, + [STATE(347)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(109), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(619), + }, + [STATE(348)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(361), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1321), + }, + [STATE(349)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2947), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2947), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(352), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1323), + }, + [STATE(350)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2947), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2947), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(351)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(352)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2955), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2955), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(353)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2956), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2956), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1325), + }, + [STATE(354)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2956), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2956), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(355)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(2959), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(2959), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(356)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(370), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1327), + }, + [STATE(357)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1710), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1710), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(358)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1329), + }, + [STATE(359)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(360), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1333), + }, + [STATE(360)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(109), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_block_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(619), + }, + [STATE(361)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(362)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3031), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3031), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1337), + }, + [STATE(363)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3031), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3031), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(364)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(398), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1339), + }, + [STATE(365)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3036), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3036), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(366)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3037), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3037), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1341), + }, + [STATE(367)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3037), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3037), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(368)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(3039), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(3039), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(369)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1343), + }, + [STATE(370)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(371)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(449), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1345), + }, + [STATE(372)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(373)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1347), + }, + [STATE(374)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1349), + }, + [STATE(375)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(376)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1351), + }, + [STATE(377)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1353), + }, + [STATE(378)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(379)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(385), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1355), + }, + [STATE(380)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1357), + }, + [STATE(381)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(382)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1359), + }, + [STATE(383)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(384)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1361), + }, + [STATE(385)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), }, [STATE(386)] = { - [aux_sym_type_repeat1] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(853), - [anon_sym_COLON_COLON] = ACTIONS(851), - [anon_sym_import] = ACTIONS(853), - [anon_sym_test] = ACTIONS(853), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_func] = ACTIONS(853), - [anon_sym_c_func] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(851), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_AT] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(851), - [anon_sym_void] = ACTIONS(853), - [anon_sym_anyopaque] = ACTIONS(853), - [anon_sym_bool] = ACTIONS(853), - [anon_sym_int] = ACTIONS(853), - [anon_sym_uint] = ACTIONS(853), - [anon_sym_float] = ACTIONS(853), - [anon_sym_range] = ACTIONS(853), - [anon_sym_i8] = ACTIONS(853), - [anon_sym_i16] = ACTIONS(853), - [anon_sym_i32] = ACTIONS(853), - [anon_sym_i64] = ACTIONS(853), - [anon_sym_u8] = ACTIONS(853), - [anon_sym_u16] = ACTIONS(853), - [anon_sym_u32] = ACTIONS(853), - [anon_sym_u64] = ACTIONS(853), - [anon_sym_isize] = ACTIONS(853), - [anon_sym_usize] = ACTIONS(853), - [anon_sym_f32] = ACTIONS(853), - [anon_sym_f64] = ACTIONS(853), - [anon_sym_c_char] = ACTIONS(853), - [anon_sym_c_schar] = ACTIONS(853), - [anon_sym_c_uchar] = ACTIONS(853), - [anon_sym_c_short] = ACTIONS(853), - [anon_sym_c_ushort] = ACTIONS(853), - [anon_sym_c_int] = ACTIONS(853), - [anon_sym_c_uint] = ACTIONS(853), - [anon_sym_c_long] = ACTIONS(853), - [anon_sym_c_ulong] = ACTIONS(853), - [anon_sym_c_longlong] = ACTIONS(853), - [anon_sym_c_ulonglong] = ACTIONS(853), - [anon_sym_c_float] = ACTIONS(853), - [anon_sym_c_double] = ACTIONS(853), - [anon_sym_c_longdouble] = ACTIONS(853), - [anon_sym_PLUS_EQ] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(851), - [anon_sym_STAR_EQ] = ACTIONS(851), - [anon_sym_SLASH_EQ] = ACTIONS(851), - [anon_sym_return] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_defer] = ACTIONS(853), - [anon_sym_errdefer] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_else] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_expand] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_match] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(851), - [anon_sym_orelse] = ACTIONS(853), - [anon_sym_catch] = ACTIONS(853), - [anon_sym_or] = ACTIONS(853), - [anon_sym_and] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_try] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(851), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [sym_none] = ACTIONS(853), - [sym_undefined] = ACTIONS(853), - [sym_sink] = ACTIONS(853), - [sym_integer] = ACTIONS(853), - [sym_float] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(851), - [sym_multiline_string] = ACTIONS(851), - [sym_character] = ACTIONS(851), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(851), + [sym__newline] = ACTIONS(447), }, [STATE(387)] = { - [aux_sym_type_repeat1] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(857), - [anon_sym_COLON_COLON] = ACTIONS(855), - [anon_sym_import] = ACTIONS(857), - [anon_sym_test] = ACTIONS(857), - [anon_sym_hide] = ACTIONS(857), - [anon_sym_func] = ACTIONS(857), - [anon_sym_c_func] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_struct] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(857), - [anon_sym_anyopaque] = ACTIONS(857), - [anon_sym_bool] = ACTIONS(857), - [anon_sym_int] = ACTIONS(857), - [anon_sym_uint] = ACTIONS(857), - [anon_sym_float] = ACTIONS(857), - [anon_sym_range] = ACTIONS(857), - [anon_sym_i8] = ACTIONS(857), - [anon_sym_i16] = ACTIONS(857), - [anon_sym_i32] = ACTIONS(857), - [anon_sym_i64] = ACTIONS(857), - [anon_sym_u8] = ACTIONS(857), - [anon_sym_u16] = ACTIONS(857), - [anon_sym_u32] = ACTIONS(857), - [anon_sym_u64] = ACTIONS(857), - [anon_sym_isize] = ACTIONS(857), - [anon_sym_usize] = ACTIONS(857), - [anon_sym_f32] = ACTIONS(857), - [anon_sym_f64] = ACTIONS(857), - [anon_sym_c_char] = ACTIONS(857), - [anon_sym_c_schar] = ACTIONS(857), - [anon_sym_c_uchar] = ACTIONS(857), - [anon_sym_c_short] = ACTIONS(857), - [anon_sym_c_ushort] = ACTIONS(857), - [anon_sym_c_int] = ACTIONS(857), - [anon_sym_c_uint] = ACTIONS(857), - [anon_sym_c_long] = ACTIONS(857), - [anon_sym_c_ulong] = ACTIONS(857), - [anon_sym_c_longlong] = ACTIONS(857), - [anon_sym_c_ulonglong] = ACTIONS(857), - [anon_sym_c_float] = ACTIONS(857), - [anon_sym_c_double] = ACTIONS(857), - [anon_sym_c_longdouble] = ACTIONS(857), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_return] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(857), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_errdefer] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_else] = ACTIONS(857), - [anon_sym_while] = ACTIONS(857), - [anon_sym_expand] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(857), - [anon_sym_catch] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_and] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(857), - [anon_sym_false] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_undefined] = ACTIONS(857), - [sym_sink] = ACTIONS(857), - [sym_integer] = ACTIONS(857), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(1363), }, [STATE(388)] = { - [aux_sym_type_repeat1] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(851), - [sym_identifier] = ACTIONS(853), - [anon_sym_COLON_COLON] = ACTIONS(851), - [anon_sym_import] = ACTIONS(853), - [anon_sym_test] = ACTIONS(853), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_func] = ACTIONS(853), - [anon_sym_c_func] = ACTIONS(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_EQ] = ACTIONS(853), - [anon_sym_struct] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(851), - [anon_sym_RPAREN] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(851), - [anon_sym_COMMA] = ACTIONS(851), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(851), - [anon_sym_PIPE] = ACTIONS(859), - [anon_sym_QMARK] = ACTIONS(851), - [anon_sym_AT] = ACTIONS(851), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(851), - [anon_sym_RBRACK] = ACTIONS(851), - [anon_sym_void] = ACTIONS(853), - [anon_sym_anyopaque] = ACTIONS(853), - [anon_sym_bool] = ACTIONS(853), - [anon_sym_int] = ACTIONS(853), - [anon_sym_uint] = ACTIONS(853), - [anon_sym_float] = ACTIONS(853), - [anon_sym_range] = ACTIONS(853), - [anon_sym_i8] = ACTIONS(853), - [anon_sym_i16] = ACTIONS(853), - [anon_sym_i32] = ACTIONS(853), - [anon_sym_i64] = ACTIONS(853), - [anon_sym_u8] = ACTIONS(853), - [anon_sym_u16] = ACTIONS(853), - [anon_sym_u32] = ACTIONS(853), - [anon_sym_u64] = ACTIONS(853), - [anon_sym_isize] = ACTIONS(853), - [anon_sym_usize] = ACTIONS(853), - [anon_sym_f32] = ACTIONS(853), - [anon_sym_f64] = ACTIONS(853), - [anon_sym_c_char] = ACTIONS(853), - [anon_sym_c_schar] = ACTIONS(853), - [anon_sym_c_uchar] = ACTIONS(853), - [anon_sym_c_short] = ACTIONS(853), - [anon_sym_c_ushort] = ACTIONS(853), - [anon_sym_c_int] = ACTIONS(853), - [anon_sym_c_uint] = ACTIONS(853), - [anon_sym_c_long] = ACTIONS(853), - [anon_sym_c_ulong] = ACTIONS(853), - [anon_sym_c_longlong] = ACTIONS(853), - [anon_sym_c_ulonglong] = ACTIONS(853), - [anon_sym_c_float] = ACTIONS(853), - [anon_sym_c_double] = ACTIONS(853), - [anon_sym_c_longdouble] = ACTIONS(853), - [anon_sym_PLUS_EQ] = ACTIONS(851), - [anon_sym_DASH_EQ] = ACTIONS(851), - [anon_sym_STAR_EQ] = ACTIONS(851), - [anon_sym_SLASH_EQ] = ACTIONS(851), - [anon_sym_return] = ACTIONS(853), - [anon_sym_yield] = ACTIONS(853), - [anon_sym_COLON] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_defer] = ACTIONS(853), - [anon_sym_errdefer] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_else] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_expand] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_match] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(851), - [anon_sym_orelse] = ACTIONS(853), - [anon_sym_catch] = ACTIONS(853), - [anon_sym_or] = ACTIONS(853), - [anon_sym_and] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(851), - [anon_sym_BANG_EQ] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(851), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(851), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_try] = ACTIONS(853), - [anon_sym_DOT] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(851), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [sym_none] = ACTIONS(853), - [sym_undefined] = ACTIONS(853), - [sym_sink] = ACTIONS(853), - [sym_integer] = ACTIONS(853), - [sym_float] = ACTIONS(851), - [anon_sym_DQUOTE] = ACTIONS(851), - [sym_multiline_string] = ACTIONS(851), - [sym_character] = ACTIONS(851), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(851), + [sym__newline] = ACTIONS(447), }, [STATE(389)] = { - [aux_sym_type_repeat1] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(861), - [sym_identifier] = ACTIONS(863), - [anon_sym_COLON_COLON] = ACTIONS(861), - [anon_sym_import] = ACTIONS(863), - [anon_sym_test] = ACTIONS(863), - [anon_sym_hide] = ACTIONS(863), - [anon_sym_func] = ACTIONS(863), - [anon_sym_c_func] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_void] = ACTIONS(863), - [anon_sym_anyopaque] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_int] = ACTIONS(863), - [anon_sym_uint] = ACTIONS(863), - [anon_sym_float] = ACTIONS(863), - [anon_sym_range] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_c_char] = ACTIONS(863), - [anon_sym_c_schar] = ACTIONS(863), - [anon_sym_c_uchar] = ACTIONS(863), - [anon_sym_c_short] = ACTIONS(863), - [anon_sym_c_ushort] = ACTIONS(863), - [anon_sym_c_int] = ACTIONS(863), - [anon_sym_c_uint] = ACTIONS(863), - [anon_sym_c_long] = ACTIONS(863), - [anon_sym_c_ulong] = ACTIONS(863), - [anon_sym_c_longlong] = ACTIONS(863), - [anon_sym_c_ulonglong] = ACTIONS(863), - [anon_sym_c_float] = ACTIONS(863), - [anon_sym_c_double] = ACTIONS(863), - [anon_sym_c_longdouble] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_defer] = ACTIONS(863), - [anon_sym_errdefer] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_else] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_expand] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [anon_sym_orelse] = ACTIONS(863), - [anon_sym_catch] = ACTIONS(863), - [anon_sym_or] = ACTIONS(863), - [anon_sym_and] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_try] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [sym_none] = ACTIONS(863), - [sym_undefined] = ACTIONS(863), - [sym_sink] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [sym_float] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym_multiline_string] = ACTIONS(861), - [sym_character] = ACTIONS(861), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(861), + [sym__newline] = ACTIONS(1365), }, [STATE(390)] = { - [sym_argument_list] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(868), - [sym_identifier] = ACTIONS(870), - [anon_sym_COLON_COLON] = ACTIONS(868), - [anon_sym_import] = ACTIONS(870), - [anon_sym_test] = ACTIONS(870), - [anon_sym_hide] = ACTIONS(870), - [anon_sym_func] = ACTIONS(870), - [anon_sym_c_func] = ACTIONS(870), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(870), - [anon_sym_struct] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(868), - [anon_sym_RBRACE] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(870), - [anon_sym_DOLLAR] = ACTIONS(868), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_QMARK] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_STAR] = ACTIONS(870), - [anon_sym_LBRACK] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_RBRACK] = ACTIONS(868), - [anon_sym_void] = ACTIONS(870), - [anon_sym_anyopaque] = ACTIONS(870), - [anon_sym_bool] = ACTIONS(870), - [anon_sym_int] = ACTIONS(870), - [anon_sym_uint] = ACTIONS(870), - [anon_sym_float] = ACTIONS(870), - [anon_sym_range] = ACTIONS(870), - [anon_sym_i8] = ACTIONS(870), - [anon_sym_i16] = ACTIONS(870), - [anon_sym_i32] = ACTIONS(870), - [anon_sym_i64] = ACTIONS(870), - [anon_sym_u8] = ACTIONS(870), - [anon_sym_u16] = ACTIONS(870), - [anon_sym_u32] = ACTIONS(870), - [anon_sym_u64] = ACTIONS(870), - [anon_sym_isize] = ACTIONS(870), - [anon_sym_usize] = ACTIONS(870), - [anon_sym_f32] = ACTIONS(870), - [anon_sym_f64] = ACTIONS(870), - [anon_sym_c_char] = ACTIONS(870), - [anon_sym_c_schar] = ACTIONS(870), - [anon_sym_c_uchar] = ACTIONS(870), - [anon_sym_c_short] = ACTIONS(870), - [anon_sym_c_ushort] = ACTIONS(870), - [anon_sym_c_int] = ACTIONS(870), - [anon_sym_c_uint] = ACTIONS(870), - [anon_sym_c_long] = ACTIONS(870), - [anon_sym_c_ulong] = ACTIONS(870), - [anon_sym_c_longlong] = ACTIONS(870), - [anon_sym_c_ulonglong] = ACTIONS(870), - [anon_sym_c_float] = ACTIONS(870), - [anon_sym_c_double] = ACTIONS(870), - [anon_sym_c_longdouble] = ACTIONS(870), - [anon_sym_PLUS_EQ] = ACTIONS(868), - [anon_sym_DASH_EQ] = ACTIONS(868), - [anon_sym_STAR_EQ] = ACTIONS(868), - [anon_sym_SLASH_EQ] = ACTIONS(868), - [anon_sym_return] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(870), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_break] = ACTIONS(870), - [anon_sym_continue] = ACTIONS(870), - [anon_sym_defer] = ACTIONS(870), - [anon_sym_errdefer] = ACTIONS(870), - [anon_sym_if] = ACTIONS(870), - [anon_sym_else] = ACTIONS(870), - [anon_sym_while] = ACTIONS(870), - [anon_sym_expand] = ACTIONS(870), - [anon_sym_for] = ACTIONS(870), - [anon_sym_match] = ACTIONS(870), - [anon_sym_DOT_DOT] = ACTIONS(870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(868), - [anon_sym_orelse] = ACTIONS(870), - [anon_sym_catch] = ACTIONS(870), - [anon_sym_or] = ACTIONS(870), - [anon_sym_and] = ACTIONS(870), - [anon_sym_EQ_EQ] = ACTIONS(868), - [anon_sym_BANG_EQ] = ACTIONS(868), - [anon_sym_LT] = ACTIONS(870), - [anon_sym_LT_EQ] = ACTIONS(868), - [anon_sym_GT] = ACTIONS(870), - [anon_sym_GT_EQ] = ACTIONS(868), - [anon_sym_PLUS] = ACTIONS(870), - [anon_sym_SLASH] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_DOT] = ACTIONS(870), - [anon_sym_CARET] = ACTIONS(868), - [anon_sym_true] = ACTIONS(870), - [anon_sym_false] = ACTIONS(870), - [sym_none] = ACTIONS(870), - [sym_undefined] = ACTIONS(870), - [sym_sink] = ACTIONS(870), - [sym_integer] = ACTIONS(870), - [sym_float] = ACTIONS(868), - [anon_sym_DQUOTE] = ACTIONS(868), - [sym_multiline_string] = ACTIONS(868), - [sym_character] = ACTIONS(868), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(868), + [sym__newline] = ACTIONS(1367), }, [STATE(391)] = { - [aux_sym_type_repeat1] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(855), - [sym_identifier] = ACTIONS(857), - [anon_sym_COLON_COLON] = ACTIONS(855), - [anon_sym_import] = ACTIONS(857), - [anon_sym_test] = ACTIONS(857), - [anon_sym_hide] = ACTIONS(857), - [anon_sym_func] = ACTIONS(857), - [anon_sym_c_func] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(857), - [anon_sym_EQ] = ACTIONS(857), - [anon_sym_struct] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(855), - [anon_sym_RPAREN] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(855), - [anon_sym_COMMA] = ACTIONS(855), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(855), - [anon_sym_PIPE] = ACTIONS(855), - [anon_sym_QMARK] = ACTIONS(855), - [anon_sym_AT] = ACTIONS(855), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(855), - [anon_sym_RBRACK] = ACTIONS(855), - [anon_sym_void] = ACTIONS(857), - [anon_sym_anyopaque] = ACTIONS(857), - [anon_sym_bool] = ACTIONS(857), - [anon_sym_int] = ACTIONS(857), - [anon_sym_uint] = ACTIONS(857), - [anon_sym_float] = ACTIONS(857), - [anon_sym_range] = ACTIONS(857), - [anon_sym_i8] = ACTIONS(857), - [anon_sym_i16] = ACTIONS(857), - [anon_sym_i32] = ACTIONS(857), - [anon_sym_i64] = ACTIONS(857), - [anon_sym_u8] = ACTIONS(857), - [anon_sym_u16] = ACTIONS(857), - [anon_sym_u32] = ACTIONS(857), - [anon_sym_u64] = ACTIONS(857), - [anon_sym_isize] = ACTIONS(857), - [anon_sym_usize] = ACTIONS(857), - [anon_sym_f32] = ACTIONS(857), - [anon_sym_f64] = ACTIONS(857), - [anon_sym_c_char] = ACTIONS(857), - [anon_sym_c_schar] = ACTIONS(857), - [anon_sym_c_uchar] = ACTIONS(857), - [anon_sym_c_short] = ACTIONS(857), - [anon_sym_c_ushort] = ACTIONS(857), - [anon_sym_c_int] = ACTIONS(857), - [anon_sym_c_uint] = ACTIONS(857), - [anon_sym_c_long] = ACTIONS(857), - [anon_sym_c_ulong] = ACTIONS(857), - [anon_sym_c_longlong] = ACTIONS(857), - [anon_sym_c_ulonglong] = ACTIONS(857), - [anon_sym_c_float] = ACTIONS(857), - [anon_sym_c_double] = ACTIONS(857), - [anon_sym_c_longdouble] = ACTIONS(857), - [anon_sym_PLUS_EQ] = ACTIONS(855), - [anon_sym_DASH_EQ] = ACTIONS(855), - [anon_sym_STAR_EQ] = ACTIONS(855), - [anon_sym_SLASH_EQ] = ACTIONS(855), - [anon_sym_return] = ACTIONS(857), - [anon_sym_yield] = ACTIONS(857), - [anon_sym_COLON] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_defer] = ACTIONS(857), - [anon_sym_errdefer] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_else] = ACTIONS(857), - [anon_sym_while] = ACTIONS(857), - [anon_sym_expand] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(855), - [anon_sym_orelse] = ACTIONS(857), - [anon_sym_catch] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_and] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(855), - [anon_sym_BANG_EQ] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(855), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(855), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_try] = ACTIONS(857), - [anon_sym_DOT] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(855), - [anon_sym_true] = ACTIONS(857), - [anon_sym_false] = ACTIONS(857), - [sym_none] = ACTIONS(857), - [sym_undefined] = ACTIONS(857), - [sym_sink] = ACTIONS(857), - [sym_integer] = ACTIONS(857), - [sym_float] = ACTIONS(855), - [anon_sym_DQUOTE] = ACTIONS(855), - [sym_multiline_string] = ACTIONS(855), - [sym_character] = ACTIONS(855), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(855), + [sym__newline] = ACTIONS(447), }, [STATE(392)] = { - [ts_builtin_sym_end] = ACTIONS(874), - [sym_identifier] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(874), - [anon_sym_import] = ACTIONS(876), - [anon_sym_test] = ACTIONS(876), - [anon_sym_hide] = ACTIONS(876), - [anon_sym_func] = ACTIONS(876), - [anon_sym_c_func] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_EQ] = ACTIONS(876), - [anon_sym_struct] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_RPAREN] = ACTIONS(874), - [anon_sym_LBRACE] = ACTIONS(874), - [anon_sym_COMMA] = ACTIONS(874), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_DOLLAR] = ACTIONS(874), - [anon_sym_PIPE] = ACTIONS(874), - [anon_sym_QMARK] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(874), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(874), - [anon_sym_SEMI] = ACTIONS(874), - [anon_sym_RBRACK] = ACTIONS(874), - [anon_sym_void] = ACTIONS(876), - [anon_sym_anyopaque] = ACTIONS(876), - [anon_sym_bool] = ACTIONS(876), - [anon_sym_int] = ACTIONS(876), - [anon_sym_uint] = ACTIONS(876), - [anon_sym_float] = ACTIONS(876), - [anon_sym_range] = ACTIONS(876), - [anon_sym_i8] = ACTIONS(876), - [anon_sym_i16] = ACTIONS(876), - [anon_sym_i32] = ACTIONS(876), - [anon_sym_i64] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(876), - [anon_sym_u16] = ACTIONS(876), - [anon_sym_u32] = ACTIONS(876), - [anon_sym_u64] = ACTIONS(876), - [anon_sym_isize] = ACTIONS(876), - [anon_sym_usize] = ACTIONS(876), - [anon_sym_f32] = ACTIONS(876), - [anon_sym_f64] = ACTIONS(876), - [anon_sym_c_char] = ACTIONS(876), - [anon_sym_c_schar] = ACTIONS(876), - [anon_sym_c_uchar] = ACTIONS(876), - [anon_sym_c_short] = ACTIONS(876), - [anon_sym_c_ushort] = ACTIONS(876), - [anon_sym_c_int] = ACTIONS(876), - [anon_sym_c_uint] = ACTIONS(876), - [anon_sym_c_long] = ACTIONS(876), - [anon_sym_c_ulong] = ACTIONS(876), - [anon_sym_c_longlong] = ACTIONS(876), - [anon_sym_c_ulonglong] = ACTIONS(876), - [anon_sym_c_float] = ACTIONS(876), - [anon_sym_c_double] = ACTIONS(876), - [anon_sym_c_longdouble] = ACTIONS(876), - [anon_sym_PLUS_EQ] = ACTIONS(874), - [anon_sym_DASH_EQ] = ACTIONS(874), - [anon_sym_STAR_EQ] = ACTIONS(874), - [anon_sym_SLASH_EQ] = ACTIONS(874), - [anon_sym_return] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(876), - [anon_sym_break] = ACTIONS(876), - [anon_sym_continue] = ACTIONS(876), - [anon_sym_defer] = ACTIONS(876), - [anon_sym_errdefer] = ACTIONS(876), - [anon_sym_if] = ACTIONS(876), - [anon_sym_else] = ACTIONS(876), - [anon_sym_while] = ACTIONS(876), - [anon_sym_expand] = ACTIONS(876), - [anon_sym_for] = ACTIONS(876), - [anon_sym_match] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_DOT_DOT_EQ] = ACTIONS(874), - [anon_sym_orelse] = ACTIONS(876), - [anon_sym_catch] = ACTIONS(876), - [anon_sym_or] = ACTIONS(876), - [anon_sym_and] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(874), - [anon_sym_BANG_EQ] = ACTIONS(874), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(874), - [anon_sym_GT] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(874), - [anon_sym_PLUS] = ACTIONS(876), - [anon_sym_SLASH] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(874), - [anon_sym_try] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(876), - [anon_sym_CARET] = ACTIONS(874), - [anon_sym_true] = ACTIONS(876), - [anon_sym_false] = ACTIONS(876), - [sym_none] = ACTIONS(876), - [sym_undefined] = ACTIONS(876), - [sym_sink] = ACTIONS(876), - [sym_integer] = ACTIONS(876), - [sym_float] = ACTIONS(874), - [anon_sym_DQUOTE] = ACTIONS(874), - [sym_multiline_string] = ACTIONS(874), - [sym_character] = ACTIONS(874), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(874), + [sym__newline] = ACTIONS(447), }, [STATE(393)] = { - [ts_builtin_sym_end] = ACTIONS(878), - [sym_identifier] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(878), - [anon_sym_import] = ACTIONS(880), - [anon_sym_test] = ACTIONS(880), - [anon_sym_hide] = ACTIONS(880), - [anon_sym_func] = ACTIONS(880), - [anon_sym_c_func] = ACTIONS(880), - [anon_sym_BANG] = ACTIONS(880), - [anon_sym_EQ] = ACTIONS(880), - [anon_sym_struct] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_LBRACE] = ACTIONS(878), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(880), - [anon_sym_DOLLAR] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_QMARK] = ACTIONS(878), - [anon_sym_AT] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(880), - [anon_sym_LBRACK] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(878), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_void] = ACTIONS(880), - [anon_sym_anyopaque] = ACTIONS(880), - [anon_sym_bool] = ACTIONS(880), - [anon_sym_int] = ACTIONS(880), - [anon_sym_uint] = ACTIONS(880), - [anon_sym_float] = ACTIONS(880), - [anon_sym_range] = ACTIONS(880), - [anon_sym_i8] = ACTIONS(880), - [anon_sym_i16] = ACTIONS(880), - [anon_sym_i32] = ACTIONS(880), - [anon_sym_i64] = ACTIONS(880), - [anon_sym_u8] = ACTIONS(880), - [anon_sym_u16] = ACTIONS(880), - [anon_sym_u32] = ACTIONS(880), - [anon_sym_u64] = ACTIONS(880), - [anon_sym_isize] = ACTIONS(880), - [anon_sym_usize] = ACTIONS(880), - [anon_sym_f32] = ACTIONS(880), - [anon_sym_f64] = ACTIONS(880), - [anon_sym_c_char] = ACTIONS(880), - [anon_sym_c_schar] = ACTIONS(880), - [anon_sym_c_uchar] = ACTIONS(880), - [anon_sym_c_short] = ACTIONS(880), - [anon_sym_c_ushort] = ACTIONS(880), - [anon_sym_c_int] = ACTIONS(880), - [anon_sym_c_uint] = ACTIONS(880), - [anon_sym_c_long] = ACTIONS(880), - [anon_sym_c_ulong] = ACTIONS(880), - [anon_sym_c_longlong] = ACTIONS(880), - [anon_sym_c_ulonglong] = ACTIONS(880), - [anon_sym_c_float] = ACTIONS(880), - [anon_sym_c_double] = ACTIONS(880), - [anon_sym_c_longdouble] = ACTIONS(880), - [anon_sym_PLUS_EQ] = ACTIONS(878), - [anon_sym_DASH_EQ] = ACTIONS(878), - [anon_sym_STAR_EQ] = ACTIONS(878), - [anon_sym_SLASH_EQ] = ACTIONS(878), - [anon_sym_return] = ACTIONS(880), - [anon_sym_yield] = ACTIONS(880), - [anon_sym_COLON] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_continue] = ACTIONS(880), - [anon_sym_defer] = ACTIONS(880), - [anon_sym_errdefer] = ACTIONS(880), - [anon_sym_if] = ACTIONS(880), - [anon_sym_else] = ACTIONS(880), - [anon_sym_while] = ACTIONS(880), - [anon_sym_expand] = ACTIONS(880), - [anon_sym_for] = ACTIONS(880), - [anon_sym_match] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(878), - [anon_sym_orelse] = ACTIONS(880), - [anon_sym_catch] = ACTIONS(880), - [anon_sym_or] = ACTIONS(880), - [anon_sym_and] = ACTIONS(880), - [anon_sym_EQ_EQ] = ACTIONS(878), - [anon_sym_BANG_EQ] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(880), - [anon_sym_LT_EQ] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(880), - [anon_sym_GT_EQ] = ACTIONS(878), - [anon_sym_PLUS] = ACTIONS(880), - [anon_sym_SLASH] = ACTIONS(880), - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_try] = ACTIONS(880), - [anon_sym_DOT] = ACTIONS(880), - [anon_sym_CARET] = ACTIONS(878), - [anon_sym_true] = ACTIONS(880), - [anon_sym_false] = ACTIONS(880), - [sym_none] = ACTIONS(880), - [sym_undefined] = ACTIONS(880), - [sym_sink] = ACTIONS(880), - [sym_integer] = ACTIONS(880), - [sym_float] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(878), - [sym_multiline_string] = ACTIONS(878), - [sym_character] = ACTIONS(878), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(878), + [sym__newline] = ACTIONS(447), }, [STATE(394)] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_import] = ACTIONS(884), - [anon_sym_test] = ACTIONS(884), - [anon_sym_hide] = ACTIONS(884), - [anon_sym_func] = ACTIONS(884), - [anon_sym_c_func] = ACTIONS(884), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_COMMA] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_DOLLAR] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_QMARK] = ACTIONS(882), - [anon_sym_AT] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_RBRACK] = ACTIONS(882), - [anon_sym_void] = ACTIONS(884), - [anon_sym_anyopaque] = ACTIONS(884), - [anon_sym_bool] = ACTIONS(884), - [anon_sym_int] = ACTIONS(884), - [anon_sym_uint] = ACTIONS(884), - [anon_sym_float] = ACTIONS(884), - [anon_sym_range] = ACTIONS(884), - [anon_sym_i8] = ACTIONS(884), - [anon_sym_i16] = ACTIONS(884), - [anon_sym_i32] = ACTIONS(884), - [anon_sym_i64] = ACTIONS(884), - [anon_sym_u8] = ACTIONS(884), - [anon_sym_u16] = ACTIONS(884), - [anon_sym_u32] = ACTIONS(884), - [anon_sym_u64] = ACTIONS(884), - [anon_sym_isize] = ACTIONS(884), - [anon_sym_usize] = ACTIONS(884), - [anon_sym_f32] = ACTIONS(884), - [anon_sym_f64] = ACTIONS(884), - [anon_sym_c_char] = ACTIONS(884), - [anon_sym_c_schar] = ACTIONS(884), - [anon_sym_c_uchar] = ACTIONS(884), - [anon_sym_c_short] = ACTIONS(884), - [anon_sym_c_ushort] = ACTIONS(884), - [anon_sym_c_int] = ACTIONS(884), - [anon_sym_c_uint] = ACTIONS(884), - [anon_sym_c_long] = ACTIONS(884), - [anon_sym_c_ulong] = ACTIONS(884), - [anon_sym_c_longlong] = ACTIONS(884), - [anon_sym_c_ulonglong] = ACTIONS(884), - [anon_sym_c_float] = ACTIONS(884), - [anon_sym_c_double] = ACTIONS(884), - [anon_sym_c_longdouble] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), - [anon_sym_STAR_EQ] = ACTIONS(882), - [anon_sym_SLASH_EQ] = ACTIONS(882), - [anon_sym_return] = ACTIONS(884), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_COLON] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_defer] = ACTIONS(884), - [anon_sym_errdefer] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_expand] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_match] = ACTIONS(884), - [anon_sym_DOT_DOT] = ACTIONS(884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(882), - [anon_sym_orelse] = ACTIONS(884), - [anon_sym_catch] = ACTIONS(884), - [anon_sym_or] = ACTIONS(884), - [anon_sym_and] = ACTIONS(884), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_BANG_EQ] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_GT_EQ] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_try] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(882), - [anon_sym_true] = ACTIONS(884), - [anon_sym_false] = ACTIONS(884), - [sym_none] = ACTIONS(884), - [sym_undefined] = ACTIONS(884), - [sym_sink] = ACTIONS(884), - [sym_integer] = ACTIONS(884), - [sym_float] = ACTIONS(882), - [anon_sym_DQUOTE] = ACTIONS(882), - [sym_multiline_string] = ACTIONS(882), - [sym_character] = ACTIONS(882), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(882), + [sym__newline] = ACTIONS(447), }, [STATE(395)] = { - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(888), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_import] = ACTIONS(888), - [anon_sym_test] = ACTIONS(888), - [anon_sym_hide] = ACTIONS(888), - [anon_sym_func] = ACTIONS(888), - [anon_sym_c_func] = ACTIONS(888), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_COMMA] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_QMARK] = ACTIONS(886), - [anon_sym_AT] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_RBRACK] = ACTIONS(886), - [anon_sym_void] = ACTIONS(888), - [anon_sym_anyopaque] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_int] = ACTIONS(888), - [anon_sym_uint] = ACTIONS(888), - [anon_sym_float] = ACTIONS(888), - [anon_sym_range] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_c_char] = ACTIONS(888), - [anon_sym_c_schar] = ACTIONS(888), - [anon_sym_c_uchar] = ACTIONS(888), - [anon_sym_c_short] = ACTIONS(888), - [anon_sym_c_ushort] = ACTIONS(888), - [anon_sym_c_int] = ACTIONS(888), - [anon_sym_c_uint] = ACTIONS(888), - [anon_sym_c_long] = ACTIONS(888), - [anon_sym_c_ulong] = ACTIONS(888), - [anon_sym_c_longlong] = ACTIONS(888), - [anon_sym_c_ulonglong] = ACTIONS(888), - [anon_sym_c_float] = ACTIONS(888), - [anon_sym_c_double] = ACTIONS(888), - [anon_sym_c_longdouble] = ACTIONS(888), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_STAR_EQ] = ACTIONS(886), - [anon_sym_SLASH_EQ] = ACTIONS(886), - [anon_sym_return] = ACTIONS(888), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_COLON] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_defer] = ACTIONS(888), - [anon_sym_errdefer] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_expand] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_match] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(888), - [anon_sym_DOT_DOT_EQ] = ACTIONS(886), - [anon_sym_orelse] = ACTIONS(888), - [anon_sym_catch] = ACTIONS(888), - [anon_sym_or] = ACTIONS(888), - [anon_sym_and] = ACTIONS(888), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_try] = ACTIONS(888), - [anon_sym_DOT] = ACTIONS(888), - [anon_sym_CARET] = ACTIONS(886), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), - [sym_none] = ACTIONS(888), - [sym_undefined] = ACTIONS(888), - [sym_sink] = ACTIONS(888), - [sym_integer] = ACTIONS(888), - [sym_float] = ACTIONS(886), - [anon_sym_DQUOTE] = ACTIONS(886), - [sym_multiline_string] = ACTIONS(886), - [sym_character] = ACTIONS(886), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(886), + [sym__newline] = ACTIONS(1369), }, [STATE(396)] = { - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [anon_sym_COLON_COLON] = ACTIONS(890), - [anon_sym_import] = ACTIONS(892), - [anon_sym_test] = ACTIONS(892), - [anon_sym_hide] = ACTIONS(892), - [anon_sym_func] = ACTIONS(892), - [anon_sym_c_func] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_RPAREN] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_QMARK] = ACTIONS(890), - [anon_sym_AT] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_RBRACK] = ACTIONS(890), - [anon_sym_void] = ACTIONS(892), - [anon_sym_anyopaque] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_int] = ACTIONS(892), - [anon_sym_uint] = ACTIONS(892), - [anon_sym_float] = ACTIONS(892), - [anon_sym_range] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_c_char] = ACTIONS(892), - [anon_sym_c_schar] = ACTIONS(892), - [anon_sym_c_uchar] = ACTIONS(892), - [anon_sym_c_short] = ACTIONS(892), - [anon_sym_c_ushort] = ACTIONS(892), - [anon_sym_c_int] = ACTIONS(892), - [anon_sym_c_uint] = ACTIONS(892), - [anon_sym_c_long] = ACTIONS(892), - [anon_sym_c_ulong] = ACTIONS(892), - [anon_sym_c_longlong] = ACTIONS(892), - [anon_sym_c_ulonglong] = ACTIONS(892), - [anon_sym_c_float] = ACTIONS(892), - [anon_sym_c_double] = ACTIONS(892), - [anon_sym_c_longdouble] = ACTIONS(892), - [anon_sym_PLUS_EQ] = ACTIONS(890), - [anon_sym_DASH_EQ] = ACTIONS(890), - [anon_sym_STAR_EQ] = ACTIONS(890), - [anon_sym_SLASH_EQ] = ACTIONS(890), - [anon_sym_return] = ACTIONS(892), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_COLON] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_defer] = ACTIONS(892), - [anon_sym_errdefer] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_expand] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_match] = ACTIONS(892), - [anon_sym_DOT_DOT] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(890), - [anon_sym_orelse] = ACTIONS(892), - [anon_sym_catch] = ACTIONS(892), - [anon_sym_or] = ACTIONS(892), - [anon_sym_and] = ACTIONS(892), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_GT] = ACTIONS(892), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_SLASH] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_try] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(892), - [anon_sym_CARET] = ACTIONS(890), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), - [sym_none] = ACTIONS(892), - [sym_undefined] = ACTIONS(892), - [sym_sink] = ACTIONS(892), - [sym_integer] = ACTIONS(892), - [sym_float] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(890), - [sym_multiline_string] = ACTIONS(890), - [sym_character] = ACTIONS(890), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(890), + [sym__newline] = ACTIONS(447), }, [STATE(397)] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_identifier] = ACTIONS(896), - [anon_sym_COLON_COLON] = ACTIONS(894), - [anon_sym_import] = ACTIONS(896), - [anon_sym_test] = ACTIONS(896), - [anon_sym_hide] = ACTIONS(896), - [anon_sym_func] = ACTIONS(896), - [anon_sym_c_func] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(896), - [anon_sym_struct] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_LBRACE] = ACTIONS(894), - [anon_sym_COMMA] = ACTIONS(894), - [anon_sym_RBRACE] = ACTIONS(894), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_DOLLAR] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(894), - [anon_sym_AT] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_SEMI] = ACTIONS(894), - [anon_sym_RBRACK] = ACTIONS(894), - [anon_sym_void] = ACTIONS(896), - [anon_sym_anyopaque] = ACTIONS(896), - [anon_sym_bool] = ACTIONS(896), - [anon_sym_int] = ACTIONS(896), - [anon_sym_uint] = ACTIONS(896), - [anon_sym_float] = ACTIONS(896), - [anon_sym_range] = ACTIONS(896), - [anon_sym_i8] = ACTIONS(896), - [anon_sym_i16] = ACTIONS(896), - [anon_sym_i32] = ACTIONS(896), - [anon_sym_i64] = ACTIONS(896), - [anon_sym_u8] = ACTIONS(896), - [anon_sym_u16] = ACTIONS(896), - [anon_sym_u32] = ACTIONS(896), - [anon_sym_u64] = ACTIONS(896), - [anon_sym_isize] = ACTIONS(896), - [anon_sym_usize] = ACTIONS(896), - [anon_sym_f32] = ACTIONS(896), - [anon_sym_f64] = ACTIONS(896), - [anon_sym_c_char] = ACTIONS(896), - [anon_sym_c_schar] = ACTIONS(896), - [anon_sym_c_uchar] = ACTIONS(896), - [anon_sym_c_short] = ACTIONS(896), - [anon_sym_c_ushort] = ACTIONS(896), - [anon_sym_c_int] = ACTIONS(896), - [anon_sym_c_uint] = ACTIONS(896), - [anon_sym_c_long] = ACTIONS(896), - [anon_sym_c_ulong] = ACTIONS(896), - [anon_sym_c_longlong] = ACTIONS(896), - [anon_sym_c_ulonglong] = ACTIONS(896), - [anon_sym_c_float] = ACTIONS(896), - [anon_sym_c_double] = ACTIONS(896), - [anon_sym_c_longdouble] = ACTIONS(896), - [anon_sym_PLUS_EQ] = ACTIONS(894), - [anon_sym_DASH_EQ] = ACTIONS(894), - [anon_sym_STAR_EQ] = ACTIONS(894), - [anon_sym_SLASH_EQ] = ACTIONS(894), - [anon_sym_return] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(896), - [anon_sym_COLON] = ACTIONS(896), - [anon_sym_break] = ACTIONS(896), - [anon_sym_continue] = ACTIONS(896), - [anon_sym_defer] = ACTIONS(896), - [anon_sym_errdefer] = ACTIONS(896), - [anon_sym_if] = ACTIONS(896), - [anon_sym_else] = ACTIONS(896), - [anon_sym_while] = ACTIONS(896), - [anon_sym_expand] = ACTIONS(896), - [anon_sym_for] = ACTIONS(896), - [anon_sym_match] = ACTIONS(896), - [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT_EQ] = ACTIONS(894), - [anon_sym_orelse] = ACTIONS(896), - [anon_sym_catch] = ACTIONS(896), - [anon_sym_or] = ACTIONS(896), - [anon_sym_and] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(894), - [anon_sym_BANG_EQ] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(894), - [anon_sym_GT] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(894), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_SLASH] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_try] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_CARET] = ACTIONS(894), - [anon_sym_true] = ACTIONS(896), - [anon_sym_false] = ACTIONS(896), - [sym_none] = ACTIONS(896), - [sym_undefined] = ACTIONS(896), - [sym_sink] = ACTIONS(896), - [sym_integer] = ACTIONS(896), - [sym_float] = ACTIONS(894), - [anon_sym_DQUOTE] = ACTIONS(894), - [sym_multiline_string] = ACTIONS(894), - [sym_character] = ACTIONS(894), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(894), + [sym__newline] = ACTIONS(1371), }, [STATE(398)] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_import] = ACTIONS(902), - [anon_sym_test] = ACTIONS(902), - [anon_sym_hide] = ACTIONS(902), - [anon_sym_func] = ACTIONS(902), - [anon_sym_c_func] = ACTIONS(902), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_RPAREN] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_PIPE] = ACTIONS(900), - [anon_sym_QMARK] = ACTIONS(900), - [anon_sym_AT] = ACTIONS(900), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(900), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_RBRACK] = ACTIONS(900), - [anon_sym_void] = ACTIONS(902), - [anon_sym_anyopaque] = ACTIONS(902), - [anon_sym_bool] = ACTIONS(902), - [anon_sym_int] = ACTIONS(902), - [anon_sym_uint] = ACTIONS(902), - [anon_sym_float] = ACTIONS(902), - [anon_sym_range] = ACTIONS(902), - [anon_sym_i8] = ACTIONS(902), - [anon_sym_i16] = ACTIONS(902), - [anon_sym_i32] = ACTIONS(902), - [anon_sym_i64] = ACTIONS(902), - [anon_sym_u8] = ACTIONS(902), - [anon_sym_u16] = ACTIONS(902), - [anon_sym_u32] = ACTIONS(902), - [anon_sym_u64] = ACTIONS(902), - [anon_sym_isize] = ACTIONS(902), - [anon_sym_usize] = ACTIONS(902), - [anon_sym_f32] = ACTIONS(902), - [anon_sym_f64] = ACTIONS(902), - [anon_sym_c_char] = ACTIONS(902), - [anon_sym_c_schar] = ACTIONS(902), - [anon_sym_c_uchar] = ACTIONS(902), - [anon_sym_c_short] = ACTIONS(902), - [anon_sym_c_ushort] = ACTIONS(902), - [anon_sym_c_int] = ACTIONS(902), - [anon_sym_c_uint] = ACTIONS(902), - [anon_sym_c_long] = ACTIONS(902), - [anon_sym_c_ulong] = ACTIONS(902), - [anon_sym_c_longlong] = ACTIONS(902), - [anon_sym_c_ulonglong] = ACTIONS(902), - [anon_sym_c_float] = ACTIONS(902), - [anon_sym_c_double] = ACTIONS(902), - [anon_sym_c_longdouble] = ACTIONS(902), - [anon_sym_PLUS_EQ] = ACTIONS(900), - [anon_sym_DASH_EQ] = ACTIONS(900), - [anon_sym_STAR_EQ] = ACTIONS(900), - [anon_sym_SLASH_EQ] = ACTIONS(900), - [anon_sym_return] = ACTIONS(902), - [anon_sym_yield] = ACTIONS(902), - [anon_sym_COLON] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_defer] = ACTIONS(902), - [anon_sym_errdefer] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_else] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_expand] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_match] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(902), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_orelse] = ACTIONS(902), - [anon_sym_catch] = ACTIONS(902), - [anon_sym_or] = ACTIONS(902), - [anon_sym_and] = ACTIONS(902), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_GT_EQ] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(900), - [anon_sym_try] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [sym_none] = ACTIONS(902), - [sym_undefined] = ACTIONS(902), - [sym_sink] = ACTIONS(902), - [sym_integer] = ACTIONS(902), - [sym_float] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(900), - [sym_multiline_string] = ACTIONS(900), - [sym_character] = ACTIONS(900), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(900), + [sym__newline] = ACTIONS(447), }, [STATE(399)] = { - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(906), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_import] = ACTIONS(906), - [anon_sym_test] = ACTIONS(906), - [anon_sym_hide] = ACTIONS(906), - [anon_sym_func] = ACTIONS(906), - [anon_sym_c_func] = ACTIONS(906), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_RPAREN] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_COMMA] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_DOLLAR] = ACTIONS(904), - [anon_sym_PIPE] = ACTIONS(904), - [anon_sym_QMARK] = ACTIONS(904), - [anon_sym_AT] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_RBRACK] = ACTIONS(904), - [anon_sym_void] = ACTIONS(906), - [anon_sym_anyopaque] = ACTIONS(906), - [anon_sym_bool] = ACTIONS(906), - [anon_sym_int] = ACTIONS(906), - [anon_sym_uint] = ACTIONS(906), - [anon_sym_float] = ACTIONS(906), - [anon_sym_range] = ACTIONS(906), - [anon_sym_i8] = ACTIONS(906), - [anon_sym_i16] = ACTIONS(906), - [anon_sym_i32] = ACTIONS(906), - [anon_sym_i64] = ACTIONS(906), - [anon_sym_u8] = ACTIONS(906), - [anon_sym_u16] = ACTIONS(906), - [anon_sym_u32] = ACTIONS(906), - [anon_sym_u64] = ACTIONS(906), - [anon_sym_isize] = ACTIONS(906), - [anon_sym_usize] = ACTIONS(906), - [anon_sym_f32] = ACTIONS(906), - [anon_sym_f64] = ACTIONS(906), - [anon_sym_c_char] = ACTIONS(906), - [anon_sym_c_schar] = ACTIONS(906), - [anon_sym_c_uchar] = ACTIONS(906), - [anon_sym_c_short] = ACTIONS(906), - [anon_sym_c_ushort] = ACTIONS(906), - [anon_sym_c_int] = ACTIONS(906), - [anon_sym_c_uint] = ACTIONS(906), - [anon_sym_c_long] = ACTIONS(906), - [anon_sym_c_ulong] = ACTIONS(906), - [anon_sym_c_longlong] = ACTIONS(906), - [anon_sym_c_ulonglong] = ACTIONS(906), - [anon_sym_c_float] = ACTIONS(906), - [anon_sym_c_double] = ACTIONS(906), - [anon_sym_c_longdouble] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(904), - [anon_sym_DASH_EQ] = ACTIONS(904), - [anon_sym_STAR_EQ] = ACTIONS(904), - [anon_sym_SLASH_EQ] = ACTIONS(904), - [anon_sym_return] = ACTIONS(906), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_COLON] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_defer] = ACTIONS(906), - [anon_sym_errdefer] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_else] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_expand] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(904), - [anon_sym_orelse] = ACTIONS(906), - [anon_sym_catch] = ACTIONS(906), - [anon_sym_or] = ACTIONS(906), - [anon_sym_and] = ACTIONS(906), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_GT_EQ] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(904), - [anon_sym_try] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(904), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), - [sym_none] = ACTIONS(906), - [sym_undefined] = ACTIONS(906), - [sym_sink] = ACTIONS(906), - [sym_integer] = ACTIONS(906), - [sym_float] = ACTIONS(904), - [anon_sym_DQUOTE] = ACTIONS(904), - [sym_multiline_string] = ACTIONS(904), - [sym_character] = ACTIONS(904), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(904), + [sym__newline] = ACTIONS(447), }, [STATE(400)] = { - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(908), - [anon_sym_import] = ACTIONS(910), - [anon_sym_test] = ACTIONS(910), - [anon_sym_hide] = ACTIONS(910), - [anon_sym_func] = ACTIONS(910), - [anon_sym_c_func] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_DOLLAR] = ACTIONS(908), - [anon_sym_PIPE] = ACTIONS(908), - [anon_sym_QMARK] = ACTIONS(908), - [anon_sym_AT] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_RBRACK] = ACTIONS(908), - [anon_sym_void] = ACTIONS(910), - [anon_sym_anyopaque] = ACTIONS(910), - [anon_sym_bool] = ACTIONS(910), - [anon_sym_int] = ACTIONS(910), - [anon_sym_uint] = ACTIONS(910), - [anon_sym_float] = ACTIONS(910), - [anon_sym_range] = ACTIONS(910), - [anon_sym_i8] = ACTIONS(910), - [anon_sym_i16] = ACTIONS(910), - [anon_sym_i32] = ACTIONS(910), - [anon_sym_i64] = ACTIONS(910), - [anon_sym_u8] = ACTIONS(910), - [anon_sym_u16] = ACTIONS(910), - [anon_sym_u32] = ACTIONS(910), - [anon_sym_u64] = ACTIONS(910), - [anon_sym_isize] = ACTIONS(910), - [anon_sym_usize] = ACTIONS(910), - [anon_sym_f32] = ACTIONS(910), - [anon_sym_f64] = ACTIONS(910), - [anon_sym_c_char] = ACTIONS(910), - [anon_sym_c_schar] = ACTIONS(910), - [anon_sym_c_uchar] = ACTIONS(910), - [anon_sym_c_short] = ACTIONS(910), - [anon_sym_c_ushort] = ACTIONS(910), - [anon_sym_c_int] = ACTIONS(910), - [anon_sym_c_uint] = ACTIONS(910), - [anon_sym_c_long] = ACTIONS(910), - [anon_sym_c_ulong] = ACTIONS(910), - [anon_sym_c_longlong] = ACTIONS(910), - [anon_sym_c_ulonglong] = ACTIONS(910), - [anon_sym_c_float] = ACTIONS(910), - [anon_sym_c_double] = ACTIONS(910), - [anon_sym_c_longdouble] = ACTIONS(910), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_return] = ACTIONS(910), - [anon_sym_yield] = ACTIONS(910), - [anon_sym_COLON] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_defer] = ACTIONS(910), - [anon_sym_errdefer] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_else] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_expand] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_match] = ACTIONS(910), - [anon_sym_DOT_DOT] = ACTIONS(910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [anon_sym_orelse] = ACTIONS(910), - [anon_sym_catch] = ACTIONS(910), - [anon_sym_or] = ACTIONS(910), - [anon_sym_and] = ACTIONS(910), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT] = ACTIONS(910), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_SLASH] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(908), - [anon_sym_try] = ACTIONS(910), - [anon_sym_DOT] = ACTIONS(910), - [anon_sym_CARET] = ACTIONS(908), - [anon_sym_true] = ACTIONS(910), - [anon_sym_false] = ACTIONS(910), - [sym_none] = ACTIONS(910), - [sym_undefined] = ACTIONS(910), - [sym_sink] = ACTIONS(910), - [sym_integer] = ACTIONS(910), - [sym_float] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(908), - [sym_multiline_string] = ACTIONS(908), - [sym_character] = ACTIONS(908), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(402), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(908), + [sym__newline] = ACTIONS(1373), }, [STATE(401)] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_identifier] = ACTIONS(914), - [anon_sym_COLON_COLON] = ACTIONS(912), - [anon_sym_import] = ACTIONS(914), - [anon_sym_test] = ACTIONS(914), - [anon_sym_hide] = ACTIONS(914), - [anon_sym_func] = ACTIONS(914), - [anon_sym_c_func] = ACTIONS(914), - [anon_sym_BANG] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(914), - [anon_sym_struct] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(912), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_COMMA] = ACTIONS(912), - [anon_sym_RBRACE] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(912), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_QMARK] = ACTIONS(912), - [anon_sym_AT] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(912), - [anon_sym_SEMI] = ACTIONS(912), - [anon_sym_RBRACK] = ACTIONS(912), - [anon_sym_void] = ACTIONS(914), - [anon_sym_anyopaque] = ACTIONS(914), - [anon_sym_bool] = ACTIONS(914), - [anon_sym_int] = ACTIONS(914), - [anon_sym_uint] = ACTIONS(914), - [anon_sym_float] = ACTIONS(914), - [anon_sym_range] = ACTIONS(914), - [anon_sym_i8] = ACTIONS(914), - [anon_sym_i16] = ACTIONS(914), - [anon_sym_i32] = ACTIONS(914), - [anon_sym_i64] = ACTIONS(914), - [anon_sym_u8] = ACTIONS(914), - [anon_sym_u16] = ACTIONS(914), - [anon_sym_u32] = ACTIONS(914), - [anon_sym_u64] = ACTIONS(914), - [anon_sym_isize] = ACTIONS(914), - [anon_sym_usize] = ACTIONS(914), - [anon_sym_f32] = ACTIONS(914), - [anon_sym_f64] = ACTIONS(914), - [anon_sym_c_char] = ACTIONS(914), - [anon_sym_c_schar] = ACTIONS(914), - [anon_sym_c_uchar] = ACTIONS(914), - [anon_sym_c_short] = ACTIONS(914), - [anon_sym_c_ushort] = ACTIONS(914), - [anon_sym_c_int] = ACTIONS(914), - [anon_sym_c_uint] = ACTIONS(914), - [anon_sym_c_long] = ACTIONS(914), - [anon_sym_c_ulong] = ACTIONS(914), - [anon_sym_c_longlong] = ACTIONS(914), - [anon_sym_c_ulonglong] = ACTIONS(914), - [anon_sym_c_float] = ACTIONS(914), - [anon_sym_c_double] = ACTIONS(914), - [anon_sym_c_longdouble] = ACTIONS(914), - [anon_sym_PLUS_EQ] = ACTIONS(912), - [anon_sym_DASH_EQ] = ACTIONS(912), - [anon_sym_STAR_EQ] = ACTIONS(912), - [anon_sym_SLASH_EQ] = ACTIONS(912), - [anon_sym_return] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(914), - [anon_sym_COLON] = ACTIONS(914), - [anon_sym_break] = ACTIONS(914), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_defer] = ACTIONS(914), - [anon_sym_errdefer] = ACTIONS(914), - [anon_sym_if] = ACTIONS(914), - [anon_sym_else] = ACTIONS(914), - [anon_sym_while] = ACTIONS(914), - [anon_sym_expand] = ACTIONS(914), - [anon_sym_for] = ACTIONS(914), - [anon_sym_match] = ACTIONS(914), - [anon_sym_DOT_DOT] = ACTIONS(914), - [anon_sym_DOT_DOT_EQ] = ACTIONS(912), - [anon_sym_orelse] = ACTIONS(914), - [anon_sym_catch] = ACTIONS(914), - [anon_sym_or] = ACTIONS(914), - [anon_sym_and] = ACTIONS(914), - [anon_sym_EQ_EQ] = ACTIONS(912), - [anon_sym_BANG_EQ] = ACTIONS(912), - [anon_sym_LT] = ACTIONS(914), - [anon_sym_LT_EQ] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(914), - [anon_sym_GT_EQ] = ACTIONS(912), - [anon_sym_PLUS] = ACTIONS(914), - [anon_sym_SLASH] = ACTIONS(914), - [anon_sym_AMP] = ACTIONS(912), - [anon_sym_try] = ACTIONS(914), - [anon_sym_DOT] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(912), - [anon_sym_true] = ACTIONS(914), - [anon_sym_false] = ACTIONS(914), - [sym_none] = ACTIONS(914), - [sym_undefined] = ACTIONS(914), - [sym_sink] = ACTIONS(914), - [sym_integer] = ACTIONS(914), - [sym_float] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(912), - [sym_multiline_string] = ACTIONS(912), - [sym_character] = ACTIONS(912), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(912), + [sym__newline] = ACTIONS(1375), }, [STATE(402)] = { - [ts_builtin_sym_end] = ACTIONS(916), - [sym_identifier] = ACTIONS(918), - [anon_sym_COLON_COLON] = ACTIONS(916), - [anon_sym_import] = ACTIONS(918), - [anon_sym_test] = ACTIONS(918), - [anon_sym_hide] = ACTIONS(918), - [anon_sym_func] = ACTIONS(918), - [anon_sym_c_func] = ACTIONS(918), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(918), - [anon_sym_struct] = ACTIONS(918), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_RPAREN] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(916), - [anon_sym_COMMA] = ACTIONS(916), - [anon_sym_RBRACE] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(918), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_PIPE] = ACTIONS(916), - [anon_sym_QMARK] = ACTIONS(916), - [anon_sym_AT] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(916), - [anon_sym_SEMI] = ACTIONS(916), - [anon_sym_RBRACK] = ACTIONS(916), - [anon_sym_void] = ACTIONS(918), - [anon_sym_anyopaque] = ACTIONS(918), - [anon_sym_bool] = ACTIONS(918), - [anon_sym_int] = ACTIONS(918), - [anon_sym_uint] = ACTIONS(918), - [anon_sym_float] = ACTIONS(918), - [anon_sym_range] = ACTIONS(918), - [anon_sym_i8] = ACTIONS(918), - [anon_sym_i16] = ACTIONS(918), - [anon_sym_i32] = ACTIONS(918), - [anon_sym_i64] = ACTIONS(918), - [anon_sym_u8] = ACTIONS(918), - [anon_sym_u16] = ACTIONS(918), - [anon_sym_u32] = ACTIONS(918), - [anon_sym_u64] = ACTIONS(918), - [anon_sym_isize] = ACTIONS(918), - [anon_sym_usize] = ACTIONS(918), - [anon_sym_f32] = ACTIONS(918), - [anon_sym_f64] = ACTIONS(918), - [anon_sym_c_char] = ACTIONS(918), - [anon_sym_c_schar] = ACTIONS(918), - [anon_sym_c_uchar] = ACTIONS(918), - [anon_sym_c_short] = ACTIONS(918), - [anon_sym_c_ushort] = ACTIONS(918), - [anon_sym_c_int] = ACTIONS(918), - [anon_sym_c_uint] = ACTIONS(918), - [anon_sym_c_long] = ACTIONS(918), - [anon_sym_c_ulong] = ACTIONS(918), - [anon_sym_c_longlong] = ACTIONS(918), - [anon_sym_c_ulonglong] = ACTIONS(918), - [anon_sym_c_float] = ACTIONS(918), - [anon_sym_c_double] = ACTIONS(918), - [anon_sym_c_longdouble] = ACTIONS(918), - [anon_sym_PLUS_EQ] = ACTIONS(916), - [anon_sym_DASH_EQ] = ACTIONS(916), - [anon_sym_STAR_EQ] = ACTIONS(916), - [anon_sym_SLASH_EQ] = ACTIONS(916), - [anon_sym_return] = ACTIONS(918), - [anon_sym_yield] = ACTIONS(918), - [anon_sym_COLON] = ACTIONS(918), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_defer] = ACTIONS(918), - [anon_sym_errdefer] = ACTIONS(918), - [anon_sym_if] = ACTIONS(918), - [anon_sym_else] = ACTIONS(918), - [anon_sym_while] = ACTIONS(918), - [anon_sym_expand] = ACTIONS(918), - [anon_sym_for] = ACTIONS(918), - [anon_sym_match] = ACTIONS(918), - [anon_sym_DOT_DOT] = ACTIONS(918), - [anon_sym_DOT_DOT_EQ] = ACTIONS(916), - [anon_sym_orelse] = ACTIONS(918), - [anon_sym_catch] = ACTIONS(918), - [anon_sym_or] = ACTIONS(918), - [anon_sym_and] = ACTIONS(918), - [anon_sym_EQ_EQ] = ACTIONS(916), - [anon_sym_BANG_EQ] = ACTIONS(916), - [anon_sym_LT] = ACTIONS(918), - [anon_sym_LT_EQ] = ACTIONS(916), - [anon_sym_GT] = ACTIONS(918), - [anon_sym_GT_EQ] = ACTIONS(916), - [anon_sym_PLUS] = ACTIONS(918), - [anon_sym_SLASH] = ACTIONS(918), - [anon_sym_AMP] = ACTIONS(916), - [anon_sym_try] = ACTIONS(918), - [anon_sym_DOT] = ACTIONS(918), - [anon_sym_CARET] = ACTIONS(916), - [anon_sym_true] = ACTIONS(918), - [anon_sym_false] = ACTIONS(918), - [sym_none] = ACTIONS(918), - [sym_undefined] = ACTIONS(918), - [sym_sink] = ACTIONS(918), - [sym_integer] = ACTIONS(918), - [sym_float] = ACTIONS(916), - [anon_sym_DQUOTE] = ACTIONS(916), - [sym_multiline_string] = ACTIONS(916), - [sym_character] = ACTIONS(916), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(916), + [sym__newline] = ACTIONS(447), }, [STATE(403)] = { - [ts_builtin_sym_end] = ACTIONS(920), - [sym_identifier] = ACTIONS(922), - [anon_sym_COLON_COLON] = ACTIONS(920), - [anon_sym_import] = ACTIONS(922), - [anon_sym_test] = ACTIONS(922), - [anon_sym_hide] = ACTIONS(922), - [anon_sym_func] = ACTIONS(922), - [anon_sym_c_func] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(922), - [anon_sym_EQ] = ACTIONS(922), - [anon_sym_struct] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(920), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_COMMA] = ACTIONS(920), - [anon_sym_RBRACE] = ACTIONS(920), - [anon_sym_DASH] = ACTIONS(922), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_QMARK] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(920), - [anon_sym_STAR] = ACTIONS(922), - [anon_sym_LBRACK] = ACTIONS(920), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_RBRACK] = ACTIONS(920), - [anon_sym_void] = ACTIONS(922), - [anon_sym_anyopaque] = ACTIONS(922), - [anon_sym_bool] = ACTIONS(922), - [anon_sym_int] = ACTIONS(922), - [anon_sym_uint] = ACTIONS(922), - [anon_sym_float] = ACTIONS(922), - [anon_sym_range] = ACTIONS(922), - [anon_sym_i8] = ACTIONS(922), - [anon_sym_i16] = ACTIONS(922), - [anon_sym_i32] = ACTIONS(922), - [anon_sym_i64] = ACTIONS(922), - [anon_sym_u8] = ACTIONS(922), - [anon_sym_u16] = ACTIONS(922), - [anon_sym_u32] = ACTIONS(922), - [anon_sym_u64] = ACTIONS(922), - [anon_sym_isize] = ACTIONS(922), - [anon_sym_usize] = ACTIONS(922), - [anon_sym_f32] = ACTIONS(922), - [anon_sym_f64] = ACTIONS(922), - [anon_sym_c_char] = ACTIONS(922), - [anon_sym_c_schar] = ACTIONS(922), - [anon_sym_c_uchar] = ACTIONS(922), - [anon_sym_c_short] = ACTIONS(922), - [anon_sym_c_ushort] = ACTIONS(922), - [anon_sym_c_int] = ACTIONS(922), - [anon_sym_c_uint] = ACTIONS(922), - [anon_sym_c_long] = ACTIONS(922), - [anon_sym_c_ulong] = ACTIONS(922), - [anon_sym_c_longlong] = ACTIONS(922), - [anon_sym_c_ulonglong] = ACTIONS(922), - [anon_sym_c_float] = ACTIONS(922), - [anon_sym_c_double] = ACTIONS(922), - [anon_sym_c_longdouble] = ACTIONS(922), - [anon_sym_PLUS_EQ] = ACTIONS(920), - [anon_sym_DASH_EQ] = ACTIONS(920), - [anon_sym_STAR_EQ] = ACTIONS(920), - [anon_sym_SLASH_EQ] = ACTIONS(920), - [anon_sym_return] = ACTIONS(922), - [anon_sym_yield] = ACTIONS(922), - [anon_sym_COLON] = ACTIONS(922), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(922), - [anon_sym_defer] = ACTIONS(922), - [anon_sym_errdefer] = ACTIONS(922), - [anon_sym_if] = ACTIONS(922), - [anon_sym_else] = ACTIONS(922), - [anon_sym_while] = ACTIONS(922), - [anon_sym_expand] = ACTIONS(922), - [anon_sym_for] = ACTIONS(922), - [anon_sym_match] = ACTIONS(922), - [anon_sym_DOT_DOT] = ACTIONS(922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(920), - [anon_sym_orelse] = ACTIONS(922), - [anon_sym_catch] = ACTIONS(922), - [anon_sym_or] = ACTIONS(922), - [anon_sym_and] = ACTIONS(922), - [anon_sym_EQ_EQ] = ACTIONS(920), - [anon_sym_BANG_EQ] = ACTIONS(920), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_LT_EQ] = ACTIONS(920), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_EQ] = ACTIONS(920), - [anon_sym_PLUS] = ACTIONS(922), - [anon_sym_SLASH] = ACTIONS(922), - [anon_sym_AMP] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_DOT] = ACTIONS(922), - [anon_sym_CARET] = ACTIONS(920), - [anon_sym_true] = ACTIONS(922), - [anon_sym_false] = ACTIONS(922), - [sym_none] = ACTIONS(922), - [sym_undefined] = ACTIONS(922), - [sym_sink] = ACTIONS(922), - [sym_integer] = ACTIONS(922), - [sym_float] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(920), - [sym_multiline_string] = ACTIONS(920), - [sym_character] = ACTIONS(920), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(408), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(920), + [sym__newline] = ACTIONS(1377), }, [STATE(404)] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_identifier] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(924), - [anon_sym_import] = ACTIONS(926), - [anon_sym_test] = ACTIONS(926), - [anon_sym_hide] = ACTIONS(926), - [anon_sym_func] = ACTIONS(926), - [anon_sym_c_func] = ACTIONS(926), - [anon_sym_BANG] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(926), - [anon_sym_struct] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_RBRACE] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_QMARK] = ACTIONS(924), - [anon_sym_AT] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(924), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_void] = ACTIONS(926), - [anon_sym_anyopaque] = ACTIONS(926), - [anon_sym_bool] = ACTIONS(926), - [anon_sym_int] = ACTIONS(926), - [anon_sym_uint] = ACTIONS(926), - [anon_sym_float] = ACTIONS(926), - [anon_sym_range] = ACTIONS(926), - [anon_sym_i8] = ACTIONS(926), - [anon_sym_i16] = ACTIONS(926), - [anon_sym_i32] = ACTIONS(926), - [anon_sym_i64] = ACTIONS(926), - [anon_sym_u8] = ACTIONS(926), - [anon_sym_u16] = ACTIONS(926), - [anon_sym_u32] = ACTIONS(926), - [anon_sym_u64] = ACTIONS(926), - [anon_sym_isize] = ACTIONS(926), - [anon_sym_usize] = ACTIONS(926), - [anon_sym_f32] = ACTIONS(926), - [anon_sym_f64] = ACTIONS(926), - [anon_sym_c_char] = ACTIONS(926), - [anon_sym_c_schar] = ACTIONS(926), - [anon_sym_c_uchar] = ACTIONS(926), - [anon_sym_c_short] = ACTIONS(926), - [anon_sym_c_ushort] = ACTIONS(926), - [anon_sym_c_int] = ACTIONS(926), - [anon_sym_c_uint] = ACTIONS(926), - [anon_sym_c_long] = ACTIONS(926), - [anon_sym_c_ulong] = ACTIONS(926), - [anon_sym_c_longlong] = ACTIONS(926), - [anon_sym_c_ulonglong] = ACTIONS(926), - [anon_sym_c_float] = ACTIONS(926), - [anon_sym_c_double] = ACTIONS(926), - [anon_sym_c_longdouble] = ACTIONS(926), - [anon_sym_PLUS_EQ] = ACTIONS(924), - [anon_sym_DASH_EQ] = ACTIONS(924), - [anon_sym_STAR_EQ] = ACTIONS(924), - [anon_sym_SLASH_EQ] = ACTIONS(924), - [anon_sym_return] = ACTIONS(926), - [anon_sym_yield] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(926), - [anon_sym_break] = ACTIONS(926), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_defer] = ACTIONS(926), - [anon_sym_errdefer] = ACTIONS(926), - [anon_sym_if] = ACTIONS(926), - [anon_sym_else] = ACTIONS(926), - [anon_sym_while] = ACTIONS(926), - [anon_sym_expand] = ACTIONS(926), - [anon_sym_for] = ACTIONS(926), - [anon_sym_match] = ACTIONS(926), - [anon_sym_DOT_DOT] = ACTIONS(926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(924), - [anon_sym_orelse] = ACTIONS(926), - [anon_sym_catch] = ACTIONS(926), - [anon_sym_or] = ACTIONS(926), - [anon_sym_and] = ACTIONS(926), - [anon_sym_EQ_EQ] = ACTIONS(924), - [anon_sym_BANG_EQ] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(924), - [anon_sym_GT] = ACTIONS(926), - [anon_sym_GT_EQ] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(926), - [anon_sym_SLASH] = ACTIONS(926), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_try] = ACTIONS(926), - [anon_sym_DOT] = ACTIONS(926), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_true] = ACTIONS(926), - [anon_sym_false] = ACTIONS(926), - [sym_none] = ACTIONS(926), - [sym_undefined] = ACTIONS(926), - [sym_sink] = ACTIONS(926), - [sym_integer] = ACTIONS(926), - [sym_float] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(924), - [sym_multiline_string] = ACTIONS(924), - [sym_character] = ACTIONS(924), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(924), + [sym__newline] = ACTIONS(1379), }, [STATE(405)] = { - [ts_builtin_sym_end] = ACTIONS(928), - [sym_identifier] = ACTIONS(930), - [anon_sym_COLON_COLON] = ACTIONS(928), - [anon_sym_import] = ACTIONS(930), - [anon_sym_test] = ACTIONS(930), - [anon_sym_hide] = ACTIONS(930), - [anon_sym_func] = ACTIONS(930), - [anon_sym_c_func] = ACTIONS(930), - [anon_sym_BANG] = ACTIONS(930), - [anon_sym_EQ] = ACTIONS(930), - [anon_sym_struct] = ACTIONS(930), - [anon_sym_LPAREN] = ACTIONS(928), - [anon_sym_RPAREN] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(928), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_RBRACE] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(930), - [anon_sym_DOLLAR] = ACTIONS(928), - [anon_sym_PIPE] = ACTIONS(928), - [anon_sym_QMARK] = ACTIONS(928), - [anon_sym_AT] = ACTIONS(928), - [anon_sym_STAR] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), - [anon_sym_RBRACK] = ACTIONS(928), - [anon_sym_void] = ACTIONS(930), - [anon_sym_anyopaque] = ACTIONS(930), - [anon_sym_bool] = ACTIONS(930), - [anon_sym_int] = ACTIONS(930), - [anon_sym_uint] = ACTIONS(930), - [anon_sym_float] = ACTIONS(930), - [anon_sym_range] = ACTIONS(930), - [anon_sym_i8] = ACTIONS(930), - [anon_sym_i16] = ACTIONS(930), - [anon_sym_i32] = ACTIONS(930), - [anon_sym_i64] = ACTIONS(930), - [anon_sym_u8] = ACTIONS(930), - [anon_sym_u16] = ACTIONS(930), - [anon_sym_u32] = ACTIONS(930), - [anon_sym_u64] = ACTIONS(930), - [anon_sym_isize] = ACTIONS(930), - [anon_sym_usize] = ACTIONS(930), - [anon_sym_f32] = ACTIONS(930), - [anon_sym_f64] = ACTIONS(930), - [anon_sym_c_char] = ACTIONS(930), - [anon_sym_c_schar] = ACTIONS(930), - [anon_sym_c_uchar] = ACTIONS(930), - [anon_sym_c_short] = ACTIONS(930), - [anon_sym_c_ushort] = ACTIONS(930), - [anon_sym_c_int] = ACTIONS(930), - [anon_sym_c_uint] = ACTIONS(930), - [anon_sym_c_long] = ACTIONS(930), - [anon_sym_c_ulong] = ACTIONS(930), - [anon_sym_c_longlong] = ACTIONS(930), - [anon_sym_c_ulonglong] = ACTIONS(930), - [anon_sym_c_float] = ACTIONS(930), - [anon_sym_c_double] = ACTIONS(930), - [anon_sym_c_longdouble] = ACTIONS(930), - [anon_sym_PLUS_EQ] = ACTIONS(928), - [anon_sym_DASH_EQ] = ACTIONS(928), - [anon_sym_STAR_EQ] = ACTIONS(928), - [anon_sym_SLASH_EQ] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_yield] = ACTIONS(930), - [anon_sym_COLON] = ACTIONS(930), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_defer] = ACTIONS(930), - [anon_sym_errdefer] = ACTIONS(930), - [anon_sym_if] = ACTIONS(930), - [anon_sym_else] = ACTIONS(930), - [anon_sym_while] = ACTIONS(930), - [anon_sym_expand] = ACTIONS(930), - [anon_sym_for] = ACTIONS(930), - [anon_sym_match] = ACTIONS(930), - [anon_sym_DOT_DOT] = ACTIONS(930), - [anon_sym_DOT_DOT_EQ] = ACTIONS(928), - [anon_sym_orelse] = ACTIONS(930), - [anon_sym_catch] = ACTIONS(930), - [anon_sym_or] = ACTIONS(930), - [anon_sym_and] = ACTIONS(930), - [anon_sym_EQ_EQ] = ACTIONS(928), - [anon_sym_BANG_EQ] = ACTIONS(928), - [anon_sym_LT] = ACTIONS(930), - [anon_sym_LT_EQ] = ACTIONS(928), - [anon_sym_GT] = ACTIONS(930), - [anon_sym_GT_EQ] = ACTIONS(928), - [anon_sym_PLUS] = ACTIONS(930), - [anon_sym_SLASH] = ACTIONS(930), - [anon_sym_AMP] = ACTIONS(928), - [anon_sym_try] = ACTIONS(930), - [anon_sym_DOT] = ACTIONS(930), - [anon_sym_CARET] = ACTIONS(928), - [anon_sym_true] = ACTIONS(930), - [anon_sym_false] = ACTIONS(930), - [sym_none] = ACTIONS(930), - [sym_undefined] = ACTIONS(930), - [sym_sink] = ACTIONS(930), - [sym_integer] = ACTIONS(930), - [sym_float] = ACTIONS(928), - [anon_sym_DQUOTE] = ACTIONS(928), - [sym_multiline_string] = ACTIONS(928), - [sym_character] = ACTIONS(928), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(928), + [sym__newline] = ACTIONS(447), }, [STATE(406)] = { - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(932), - [anon_sym_import] = ACTIONS(934), - [anon_sym_test] = ACTIONS(934), - [anon_sym_hide] = ACTIONS(934), - [anon_sym_func] = ACTIONS(934), - [anon_sym_c_func] = ACTIONS(934), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_RPAREN] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_DOLLAR] = ACTIONS(932), - [anon_sym_PIPE] = ACTIONS(932), - [anon_sym_QMARK] = ACTIONS(932), - [anon_sym_AT] = ACTIONS(932), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_RBRACK] = ACTIONS(932), - [anon_sym_void] = ACTIONS(934), - [anon_sym_anyopaque] = ACTIONS(934), - [anon_sym_bool] = ACTIONS(934), - [anon_sym_int] = ACTIONS(934), - [anon_sym_uint] = ACTIONS(934), - [anon_sym_float] = ACTIONS(934), - [anon_sym_range] = ACTIONS(934), - [anon_sym_i8] = ACTIONS(934), - [anon_sym_i16] = ACTIONS(934), - [anon_sym_i32] = ACTIONS(934), - [anon_sym_i64] = ACTIONS(934), - [anon_sym_u8] = ACTIONS(934), - [anon_sym_u16] = ACTIONS(934), - [anon_sym_u32] = ACTIONS(934), - [anon_sym_u64] = ACTIONS(934), - [anon_sym_isize] = ACTIONS(934), - [anon_sym_usize] = ACTIONS(934), - [anon_sym_f32] = ACTIONS(934), - [anon_sym_f64] = ACTIONS(934), - [anon_sym_c_char] = ACTIONS(934), - [anon_sym_c_schar] = ACTIONS(934), - [anon_sym_c_uchar] = ACTIONS(934), - [anon_sym_c_short] = ACTIONS(934), - [anon_sym_c_ushort] = ACTIONS(934), - [anon_sym_c_int] = ACTIONS(934), - [anon_sym_c_uint] = ACTIONS(934), - [anon_sym_c_long] = ACTIONS(934), - [anon_sym_c_ulong] = ACTIONS(934), - [anon_sym_c_longlong] = ACTIONS(934), - [anon_sym_c_ulonglong] = ACTIONS(934), - [anon_sym_c_float] = ACTIONS(934), - [anon_sym_c_double] = ACTIONS(934), - [anon_sym_c_longdouble] = ACTIONS(934), - [anon_sym_PLUS_EQ] = ACTIONS(932), - [anon_sym_DASH_EQ] = ACTIONS(932), - [anon_sym_STAR_EQ] = ACTIONS(932), - [anon_sym_SLASH_EQ] = ACTIONS(932), - [anon_sym_return] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(934), - [anon_sym_COLON] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_defer] = ACTIONS(934), - [anon_sym_errdefer] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_else] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_expand] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_match] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_orelse] = ACTIONS(934), - [anon_sym_catch] = ACTIONS(934), - [anon_sym_or] = ACTIONS(934), - [anon_sym_and] = ACTIONS(934), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_CARET] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [sym_none] = ACTIONS(934), - [sym_undefined] = ACTIONS(934), - [sym_sink] = ACTIONS(934), - [sym_integer] = ACTIONS(934), - [sym_float] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(932), - [sym_multiline_string] = ACTIONS(932), - [sym_character] = ACTIONS(932), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(932), + [sym__newline] = ACTIONS(1381), }, [STATE(407)] = { - [sym_type] = STATE(398), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(299), - [anon_sym_func] = ACTIONS(304), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(302), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_DOLLAR] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(307), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(310), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_void] = ACTIONS(318), - [anon_sym_anyopaque] = ACTIONS(318), - [anon_sym_bool] = ACTIONS(318), - [anon_sym_int] = ACTIONS(318), - [anon_sym_uint] = ACTIONS(318), - [anon_sym_float] = ACTIONS(318), - [anon_sym_range] = ACTIONS(318), - [anon_sym_i8] = ACTIONS(318), - [anon_sym_i16] = ACTIONS(318), - [anon_sym_i32] = ACTIONS(318), - [anon_sym_i64] = ACTIONS(318), - [anon_sym_u8] = ACTIONS(318), - [anon_sym_u16] = ACTIONS(318), - [anon_sym_u32] = ACTIONS(318), - [anon_sym_u64] = ACTIONS(318), - [anon_sym_isize] = ACTIONS(318), - [anon_sym_usize] = ACTIONS(318), - [anon_sym_f32] = ACTIONS(318), - [anon_sym_f64] = ACTIONS(318), - [anon_sym_c_char] = ACTIONS(318), - [anon_sym_c_schar] = ACTIONS(318), - [anon_sym_c_uchar] = ACTIONS(318), - [anon_sym_c_short] = ACTIONS(318), - [anon_sym_c_ushort] = ACTIONS(318), - [anon_sym_c_int] = ACTIONS(318), - [anon_sym_c_uint] = ACTIONS(318), - [anon_sym_c_long] = ACTIONS(318), - [anon_sym_c_ulong] = ACTIONS(318), - [anon_sym_c_longlong] = ACTIONS(318), - [anon_sym_c_ulonglong] = ACTIONS(318), - [anon_sym_c_float] = ACTIONS(318), - [anon_sym_c_double] = ACTIONS(318), - [anon_sym_c_longdouble] = ACTIONS(318), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_return] = ACTIONS(302), - [anon_sym_yield] = ACTIONS(302), - [anon_sym_break] = ACTIONS(302), - [anon_sym_continue] = ACTIONS(302), - [anon_sym_defer] = ACTIONS(302), - [anon_sym_errdefer] = ACTIONS(302), - [anon_sym_if] = ACTIONS(302), - [anon_sym_else] = ACTIONS(302), - [anon_sym_while] = ACTIONS(302), - [anon_sym_expand] = ACTIONS(302), - [anon_sym_for] = ACTIONS(302), - [anon_sym_match] = ACTIONS(302), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(297), - [anon_sym_orelse] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(302), - [anon_sym_or] = ACTIONS(302), - [anon_sym_and] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(297), - [anon_sym_try] = ACTIONS(302), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_true] = ACTIONS(302), - [anon_sym_false] = ACTIONS(302), - [sym_none] = ACTIONS(302), - [sym_undefined] = ACTIONS(302), - [sym_sink] = ACTIONS(302), - [sym_integer] = ACTIONS(302), - [sym_float] = ACTIONS(297), - [anon_sym_DQUOTE] = ACTIONS(297), - [sym_multiline_string] = ACTIONS(297), - [sym_character] = ACTIONS(297), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(297), + [sym__newline] = ACTIONS(1383), }, [STATE(408)] = { - [ts_builtin_sym_end] = ACTIONS(938), - [sym_identifier] = ACTIONS(940), - [anon_sym_COLON_COLON] = ACTIONS(938), - [anon_sym_import] = ACTIONS(940), - [anon_sym_test] = ACTIONS(940), - [anon_sym_hide] = ACTIONS(940), - [anon_sym_func] = ACTIONS(940), - [anon_sym_c_func] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_struct] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(938), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(938), - [anon_sym_RBRACE] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_DOLLAR] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(938), - [anon_sym_AT] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_void] = ACTIONS(940), - [anon_sym_anyopaque] = ACTIONS(940), - [anon_sym_bool] = ACTIONS(940), - [anon_sym_int] = ACTIONS(940), - [anon_sym_uint] = ACTIONS(940), - [anon_sym_float] = ACTIONS(940), - [anon_sym_range] = ACTIONS(940), - [anon_sym_i8] = ACTIONS(940), - [anon_sym_i16] = ACTIONS(940), - [anon_sym_i32] = ACTIONS(940), - [anon_sym_i64] = ACTIONS(940), - [anon_sym_u8] = ACTIONS(940), - [anon_sym_u16] = ACTIONS(940), - [anon_sym_u32] = ACTIONS(940), - [anon_sym_u64] = ACTIONS(940), - [anon_sym_isize] = ACTIONS(940), - [anon_sym_usize] = ACTIONS(940), - [anon_sym_f32] = ACTIONS(940), - [anon_sym_f64] = ACTIONS(940), - [anon_sym_c_char] = ACTIONS(940), - [anon_sym_c_schar] = ACTIONS(940), - [anon_sym_c_uchar] = ACTIONS(940), - [anon_sym_c_short] = ACTIONS(940), - [anon_sym_c_ushort] = ACTIONS(940), - [anon_sym_c_int] = ACTIONS(940), - [anon_sym_c_uint] = ACTIONS(940), - [anon_sym_c_long] = ACTIONS(940), - [anon_sym_c_ulong] = ACTIONS(940), - [anon_sym_c_longlong] = ACTIONS(940), - [anon_sym_c_ulonglong] = ACTIONS(940), - [anon_sym_c_float] = ACTIONS(940), - [anon_sym_c_double] = ACTIONS(940), - [anon_sym_c_longdouble] = ACTIONS(940), - [anon_sym_PLUS_EQ] = ACTIONS(938), - [anon_sym_DASH_EQ] = ACTIONS(938), - [anon_sym_STAR_EQ] = ACTIONS(938), - [anon_sym_SLASH_EQ] = ACTIONS(938), - [anon_sym_return] = ACTIONS(940), - [anon_sym_yield] = ACTIONS(940), - [anon_sym_COLON] = ACTIONS(940), - [anon_sym_break] = ACTIONS(940), - [anon_sym_continue] = ACTIONS(940), - [anon_sym_defer] = ACTIONS(940), - [anon_sym_errdefer] = ACTIONS(940), - [anon_sym_if] = ACTIONS(940), - [anon_sym_else] = ACTIONS(940), - [anon_sym_while] = ACTIONS(940), - [anon_sym_expand] = ACTIONS(940), - [anon_sym_for] = ACTIONS(940), - [anon_sym_match] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT_EQ] = ACTIONS(938), - [anon_sym_orelse] = ACTIONS(940), - [anon_sym_catch] = ACTIONS(940), - [anon_sym_or] = ACTIONS(940), - [anon_sym_and] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(938), - [anon_sym_BANG_EQ] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(938), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_SLASH] = ACTIONS(940), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_try] = ACTIONS(940), - [anon_sym_DOT] = ACTIONS(940), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_true] = ACTIONS(940), - [anon_sym_false] = ACTIONS(940), - [sym_none] = ACTIONS(940), - [sym_undefined] = ACTIONS(940), - [sym_sink] = ACTIONS(940), - [sym_integer] = ACTIONS(940), - [sym_float] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(938), - [sym_multiline_string] = ACTIONS(938), - [sym_character] = ACTIONS(938), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(938), + [sym__newline] = ACTIONS(447), }, [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_identifier] = ACTIONS(944), - [anon_sym_COLON_COLON] = ACTIONS(942), - [anon_sym_import] = ACTIONS(944), - [anon_sym_test] = ACTIONS(944), - [anon_sym_hide] = ACTIONS(944), - [anon_sym_func] = ACTIONS(944), - [anon_sym_c_func] = ACTIONS(944), - [anon_sym_BANG] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(944), - [anon_sym_struct] = ACTIONS(944), - [anon_sym_LPAREN] = ACTIONS(942), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(944), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(942), - [anon_sym_AT] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_void] = ACTIONS(944), - [anon_sym_anyopaque] = ACTIONS(944), - [anon_sym_bool] = ACTIONS(944), - [anon_sym_int] = ACTIONS(944), - [anon_sym_uint] = ACTIONS(944), - [anon_sym_float] = ACTIONS(944), - [anon_sym_range] = ACTIONS(944), - [anon_sym_i8] = ACTIONS(944), - [anon_sym_i16] = ACTIONS(944), - [anon_sym_i32] = ACTIONS(944), - [anon_sym_i64] = ACTIONS(944), - [anon_sym_u8] = ACTIONS(944), - [anon_sym_u16] = ACTIONS(944), - [anon_sym_u32] = ACTIONS(944), - [anon_sym_u64] = ACTIONS(944), - [anon_sym_isize] = ACTIONS(944), - [anon_sym_usize] = ACTIONS(944), - [anon_sym_f32] = ACTIONS(944), - [anon_sym_f64] = ACTIONS(944), - [anon_sym_c_char] = ACTIONS(944), - [anon_sym_c_schar] = ACTIONS(944), - [anon_sym_c_uchar] = ACTIONS(944), - [anon_sym_c_short] = ACTIONS(944), - [anon_sym_c_ushort] = ACTIONS(944), - [anon_sym_c_int] = ACTIONS(944), - [anon_sym_c_uint] = ACTIONS(944), - [anon_sym_c_long] = ACTIONS(944), - [anon_sym_c_ulong] = ACTIONS(944), - [anon_sym_c_longlong] = ACTIONS(944), - [anon_sym_c_ulonglong] = ACTIONS(944), - [anon_sym_c_float] = ACTIONS(944), - [anon_sym_c_double] = ACTIONS(944), - [anon_sym_c_longdouble] = ACTIONS(944), - [anon_sym_PLUS_EQ] = ACTIONS(942), - [anon_sym_DASH_EQ] = ACTIONS(942), - [anon_sym_STAR_EQ] = ACTIONS(942), - [anon_sym_SLASH_EQ] = ACTIONS(942), - [anon_sym_return] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(944), - [anon_sym_COLON] = ACTIONS(944), - [anon_sym_break] = ACTIONS(944), - [anon_sym_continue] = ACTIONS(944), - [anon_sym_defer] = ACTIONS(944), - [anon_sym_errdefer] = ACTIONS(944), - [anon_sym_if] = ACTIONS(944), - [anon_sym_else] = ACTIONS(944), - [anon_sym_while] = ACTIONS(944), - [anon_sym_expand] = ACTIONS(944), - [anon_sym_for] = ACTIONS(944), - [anon_sym_match] = ACTIONS(944), - [anon_sym_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(942), - [anon_sym_orelse] = ACTIONS(944), - [anon_sym_catch] = ACTIONS(944), - [anon_sym_or] = ACTIONS(944), - [anon_sym_and] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(942), - [anon_sym_BANG_EQ] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(944), - [anon_sym_SLASH] = ACTIONS(944), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_try] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(944), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym_true] = ACTIONS(944), - [anon_sym_false] = ACTIONS(944), - [sym_none] = ACTIONS(944), - [sym_undefined] = ACTIONS(944), - [sym_sink] = ACTIONS(944), - [sym_integer] = ACTIONS(944), - [sym_float] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(942), - [sym_multiline_string] = ACTIONS(942), - [sym_character] = ACTIONS(942), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(415), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(942), + [sym__newline] = ACTIONS(1385), }, [STATE(410)] = { - [ts_builtin_sym_end] = ACTIONS(946), - [sym_identifier] = ACTIONS(948), - [anon_sym_COLON_COLON] = ACTIONS(946), - [anon_sym_import] = ACTIONS(948), - [anon_sym_test] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_func] = ACTIONS(948), - [anon_sym_c_func] = ACTIONS(948), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_struct] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(946), - [anon_sym_COMMA] = ACTIONS(946), - [anon_sym_RBRACE] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(946), - [anon_sym_AT] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(948), - [anon_sym_LBRACK] = ACTIONS(946), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_RBRACK] = ACTIONS(946), - [anon_sym_void] = ACTIONS(948), - [anon_sym_anyopaque] = ACTIONS(948), - [anon_sym_bool] = ACTIONS(948), - [anon_sym_int] = ACTIONS(948), - [anon_sym_uint] = ACTIONS(948), - [anon_sym_float] = ACTIONS(948), - [anon_sym_range] = ACTIONS(948), - [anon_sym_i8] = ACTIONS(948), - [anon_sym_i16] = ACTIONS(948), - [anon_sym_i32] = ACTIONS(948), - [anon_sym_i64] = ACTIONS(948), - [anon_sym_u8] = ACTIONS(948), - [anon_sym_u16] = ACTIONS(948), - [anon_sym_u32] = ACTIONS(948), - [anon_sym_u64] = ACTIONS(948), - [anon_sym_isize] = ACTIONS(948), - [anon_sym_usize] = ACTIONS(948), - [anon_sym_f32] = ACTIONS(948), - [anon_sym_f64] = ACTIONS(948), - [anon_sym_c_char] = ACTIONS(948), - [anon_sym_c_schar] = ACTIONS(948), - [anon_sym_c_uchar] = ACTIONS(948), - [anon_sym_c_short] = ACTIONS(948), - [anon_sym_c_ushort] = ACTIONS(948), - [anon_sym_c_int] = ACTIONS(948), - [anon_sym_c_uint] = ACTIONS(948), - [anon_sym_c_long] = ACTIONS(948), - [anon_sym_c_ulong] = ACTIONS(948), - [anon_sym_c_longlong] = ACTIONS(948), - [anon_sym_c_ulonglong] = ACTIONS(948), - [anon_sym_c_float] = ACTIONS(948), - [anon_sym_c_double] = ACTIONS(948), - [anon_sym_c_longdouble] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(946), - [anon_sym_DASH_EQ] = ACTIONS(946), - [anon_sym_STAR_EQ] = ACTIONS(946), - [anon_sym_SLASH_EQ] = ACTIONS(946), - [anon_sym_return] = ACTIONS(948), - [anon_sym_yield] = ACTIONS(948), - [anon_sym_COLON] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_defer] = ACTIONS(948), - [anon_sym_errdefer] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_expand] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(946), - [anon_sym_orelse] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_or] = ACTIONS(948), - [anon_sym_and] = ACTIONS(948), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_BANG_EQ] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(948), - [anon_sym_LT_EQ] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(948), - [anon_sym_GT_EQ] = ACTIONS(946), - [anon_sym_PLUS] = ACTIONS(948), - [anon_sym_SLASH] = ACTIONS(948), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_try] = ACTIONS(948), - [anon_sym_DOT] = ACTIONS(948), - [anon_sym_CARET] = ACTIONS(946), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [sym_none] = ACTIONS(948), - [sym_undefined] = ACTIONS(948), - [sym_sink] = ACTIONS(948), - [sym_integer] = ACTIONS(948), - [sym_float] = ACTIONS(946), - [anon_sym_DQUOTE] = ACTIONS(946), - [sym_multiline_string] = ACTIONS(946), - [sym_character] = ACTIONS(946), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(946), + [sym__newline] = ACTIONS(447), }, [STATE(411)] = { - [ts_builtin_sym_end] = ACTIONS(950), - [sym_identifier] = ACTIONS(952), - [anon_sym_COLON_COLON] = ACTIONS(950), - [anon_sym_import] = ACTIONS(952), - [anon_sym_test] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_func] = ACTIONS(952), - [anon_sym_c_func] = ACTIONS(952), - [anon_sym_BANG] = ACTIONS(952), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_struct] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_QMARK] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(950), - [anon_sym_STAR] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_RBRACK] = ACTIONS(950), - [anon_sym_void] = ACTIONS(952), - [anon_sym_anyopaque] = ACTIONS(952), - [anon_sym_bool] = ACTIONS(952), - [anon_sym_int] = ACTIONS(952), - [anon_sym_uint] = ACTIONS(952), - [anon_sym_float] = ACTIONS(952), - [anon_sym_range] = ACTIONS(952), - [anon_sym_i8] = ACTIONS(952), - [anon_sym_i16] = ACTIONS(952), - [anon_sym_i32] = ACTIONS(952), - [anon_sym_i64] = ACTIONS(952), - [anon_sym_u8] = ACTIONS(952), - [anon_sym_u16] = ACTIONS(952), - [anon_sym_u32] = ACTIONS(952), - [anon_sym_u64] = ACTIONS(952), - [anon_sym_isize] = ACTIONS(952), - [anon_sym_usize] = ACTIONS(952), - [anon_sym_f32] = ACTIONS(952), - [anon_sym_f64] = ACTIONS(952), - [anon_sym_c_char] = ACTIONS(952), - [anon_sym_c_schar] = ACTIONS(952), - [anon_sym_c_uchar] = ACTIONS(952), - [anon_sym_c_short] = ACTIONS(952), - [anon_sym_c_ushort] = ACTIONS(952), - [anon_sym_c_int] = ACTIONS(952), - [anon_sym_c_uint] = ACTIONS(952), - [anon_sym_c_long] = ACTIONS(952), - [anon_sym_c_ulong] = ACTIONS(952), - [anon_sym_c_longlong] = ACTIONS(952), - [anon_sym_c_ulonglong] = ACTIONS(952), - [anon_sym_c_float] = ACTIONS(952), - [anon_sym_c_double] = ACTIONS(952), - [anon_sym_c_longdouble] = ACTIONS(952), - [anon_sym_PLUS_EQ] = ACTIONS(950), - [anon_sym_DASH_EQ] = ACTIONS(950), - [anon_sym_STAR_EQ] = ACTIONS(950), - [anon_sym_SLASH_EQ] = ACTIONS(950), - [anon_sym_return] = ACTIONS(952), - [anon_sym_yield] = ACTIONS(952), - [anon_sym_COLON] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_defer] = ACTIONS(952), - [anon_sym_errdefer] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_expand] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(950), - [anon_sym_orelse] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_or] = ACTIONS(952), - [anon_sym_and] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(950), - [anon_sym_BANG_EQ] = ACTIONS(950), - [anon_sym_LT] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(950), - [anon_sym_PLUS] = ACTIONS(952), - [anon_sym_SLASH] = ACTIONS(952), - [anon_sym_AMP] = ACTIONS(950), - [anon_sym_try] = ACTIONS(952), - [anon_sym_DOT] = ACTIONS(952), - [anon_sym_CARET] = ACTIONS(950), - [anon_sym_true] = ACTIONS(952), - [anon_sym_false] = ACTIONS(952), - [sym_none] = ACTIONS(952), - [sym_undefined] = ACTIONS(952), - [sym_sink] = ACTIONS(952), - [sym_integer] = ACTIONS(952), - [sym_float] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym_multiline_string] = ACTIONS(950), - [sym_character] = ACTIONS(950), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(418), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(950), + [sym__newline] = ACTIONS(1387), }, [STATE(412)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(323), - [anon_sym_func] = ACTIONS(328), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(342), - [anon_sym_anyopaque] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_int] = ACTIONS(342), - [anon_sym_uint] = ACTIONS(342), - [anon_sym_float] = ACTIONS(342), - [anon_sym_range] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_c_char] = ACTIONS(342), - [anon_sym_c_schar] = ACTIONS(342), - [anon_sym_c_uchar] = ACTIONS(342), - [anon_sym_c_short] = ACTIONS(342), - [anon_sym_c_ushort] = ACTIONS(342), - [anon_sym_c_int] = ACTIONS(342), - [anon_sym_c_uint] = ACTIONS(342), - [anon_sym_c_long] = ACTIONS(342), - [anon_sym_c_ulong] = ACTIONS(342), - [anon_sym_c_longlong] = ACTIONS(342), - [anon_sym_c_ulonglong] = ACTIONS(342), - [anon_sym_c_float] = ACTIONS(342), - [anon_sym_c_double] = ACTIONS(342), - [anon_sym_c_longdouble] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_return] = ACTIONS(326), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_defer] = ACTIONS(326), - [anon_sym_errdefer] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_else] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_expand] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_match] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_try] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_true] = ACTIONS(326), - [anon_sym_false] = ACTIONS(326), - [sym_none] = ACTIONS(326), - [sym_undefined] = ACTIONS(326), - [sym_sink] = ACTIONS(326), - [sym_integer] = ACTIONS(326), - [sym_float] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(321), - [sym_multiline_string] = ACTIONS(321), - [sym_character] = ACTIONS(321), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(447), }, [STATE(413)] = { - [sym_type] = STATE(436), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(323), - [anon_sym_func] = ACTIONS(328), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(326), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_struct] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(342), - [anon_sym_anyopaque] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_int] = ACTIONS(342), - [anon_sym_uint] = ACTIONS(342), - [anon_sym_float] = ACTIONS(342), - [anon_sym_range] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_c_char] = ACTIONS(342), - [anon_sym_c_schar] = ACTIONS(342), - [anon_sym_c_uchar] = ACTIONS(342), - [anon_sym_c_short] = ACTIONS(342), - [anon_sym_c_ushort] = ACTIONS(342), - [anon_sym_c_int] = ACTIONS(342), - [anon_sym_c_uint] = ACTIONS(342), - [anon_sym_c_long] = ACTIONS(342), - [anon_sym_c_ulong] = ACTIONS(342), - [anon_sym_c_longlong] = ACTIONS(342), - [anon_sym_c_ulonglong] = ACTIONS(342), - [anon_sym_c_float] = ACTIONS(342), - [anon_sym_c_double] = ACTIONS(342), - [anon_sym_c_longdouble] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_return] = ACTIONS(326), - [anon_sym_yield] = ACTIONS(326), - [anon_sym_break] = ACTIONS(326), - [anon_sym_continue] = ACTIONS(326), - [anon_sym_defer] = ACTIONS(326), - [anon_sym_errdefer] = ACTIONS(326), - [anon_sym_if] = ACTIONS(326), - [anon_sym_else] = ACTIONS(326), - [anon_sym_while] = ACTIONS(326), - [anon_sym_expand] = ACTIONS(326), - [anon_sym_for] = ACTIONS(326), - [anon_sym_match] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_try] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_true] = ACTIONS(326), - [anon_sym_false] = ACTIONS(326), - [sym_none] = ACTIONS(326), - [sym_undefined] = ACTIONS(326), - [sym_sink] = ACTIONS(326), - [sym_integer] = ACTIONS(326), - [sym_float] = ACTIONS(321), - [anon_sym_DQUOTE] = ACTIONS(321), - [sym_multiline_string] = ACTIONS(321), - [sym_character] = ACTIONS(321), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(447), }, [STATE(414)] = { - [ts_builtin_sym_end] = ACTIONS(861), - [sym_identifier] = ACTIONS(863), - [anon_sym_COLON_COLON] = ACTIONS(861), - [anon_sym_import] = ACTIONS(863), - [anon_sym_test] = ACTIONS(863), - [anon_sym_hide] = ACTIONS(863), - [anon_sym_func] = ACTIONS(863), - [anon_sym_c_func] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(863), - [anon_sym_EQ] = ACTIONS(863), - [anon_sym_struct] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_COMMA] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(863), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_QMARK] = ACTIONS(861), - [anon_sym_AT] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_RBRACK] = ACTIONS(861), - [anon_sym_void] = ACTIONS(863), - [anon_sym_anyopaque] = ACTIONS(863), - [anon_sym_bool] = ACTIONS(863), - [anon_sym_int] = ACTIONS(863), - [anon_sym_uint] = ACTIONS(863), - [anon_sym_float] = ACTIONS(863), - [anon_sym_range] = ACTIONS(863), - [anon_sym_i8] = ACTIONS(863), - [anon_sym_i16] = ACTIONS(863), - [anon_sym_i32] = ACTIONS(863), - [anon_sym_i64] = ACTIONS(863), - [anon_sym_u8] = ACTIONS(863), - [anon_sym_u16] = ACTIONS(863), - [anon_sym_u32] = ACTIONS(863), - [anon_sym_u64] = ACTIONS(863), - [anon_sym_isize] = ACTIONS(863), - [anon_sym_usize] = ACTIONS(863), - [anon_sym_f32] = ACTIONS(863), - [anon_sym_f64] = ACTIONS(863), - [anon_sym_c_char] = ACTIONS(863), - [anon_sym_c_schar] = ACTIONS(863), - [anon_sym_c_uchar] = ACTIONS(863), - [anon_sym_c_short] = ACTIONS(863), - [anon_sym_c_ushort] = ACTIONS(863), - [anon_sym_c_int] = ACTIONS(863), - [anon_sym_c_uint] = ACTIONS(863), - [anon_sym_c_long] = ACTIONS(863), - [anon_sym_c_ulong] = ACTIONS(863), - [anon_sym_c_longlong] = ACTIONS(863), - [anon_sym_c_ulonglong] = ACTIONS(863), - [anon_sym_c_float] = ACTIONS(863), - [anon_sym_c_double] = ACTIONS(863), - [anon_sym_c_longdouble] = ACTIONS(863), - [anon_sym_PLUS_EQ] = ACTIONS(861), - [anon_sym_DASH_EQ] = ACTIONS(861), - [anon_sym_STAR_EQ] = ACTIONS(861), - [anon_sym_SLASH_EQ] = ACTIONS(861), - [anon_sym_return] = ACTIONS(863), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_COLON] = ACTIONS(863), - [anon_sym_break] = ACTIONS(863), - [anon_sym_continue] = ACTIONS(863), - [anon_sym_defer] = ACTIONS(863), - [anon_sym_errdefer] = ACTIONS(863), - [anon_sym_if] = ACTIONS(863), - [anon_sym_else] = ACTIONS(863), - [anon_sym_while] = ACTIONS(863), - [anon_sym_expand] = ACTIONS(863), - [anon_sym_for] = ACTIONS(863), - [anon_sym_match] = ACTIONS(863), - [anon_sym_DOT_DOT] = ACTIONS(863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [anon_sym_orelse] = ACTIONS(863), - [anon_sym_catch] = ACTIONS(863), - [anon_sym_or] = ACTIONS(863), - [anon_sym_and] = ACTIONS(863), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT] = ACTIONS(863), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(863), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(863), - [anon_sym_SLASH] = ACTIONS(863), - [anon_sym_AMP] = ACTIONS(861), - [anon_sym_try] = ACTIONS(863), - [anon_sym_DOT] = ACTIONS(863), - [anon_sym_CARET] = ACTIONS(861), - [anon_sym_true] = ACTIONS(863), - [anon_sym_false] = ACTIONS(863), - [sym_none] = ACTIONS(863), - [sym_undefined] = ACTIONS(863), - [sym_sink] = ACTIONS(863), - [sym_integer] = ACTIONS(863), - [sym_float] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym_multiline_string] = ACTIONS(861), - [sym_character] = ACTIONS(861), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(419), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(861), + [sym__newline] = ACTIONS(1389), }, [STATE(415)] = { - [ts_builtin_sym_end] = ACTIONS(956), - [sym_identifier] = ACTIONS(958), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_import] = ACTIONS(958), - [anon_sym_test] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_func] = ACTIONS(958), - [anon_sym_c_func] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(956), - [anon_sym_PIPE] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_void] = ACTIONS(958), - [anon_sym_anyopaque] = ACTIONS(958), - [anon_sym_bool] = ACTIONS(958), - [anon_sym_int] = ACTIONS(958), - [anon_sym_uint] = ACTIONS(958), - [anon_sym_float] = ACTIONS(958), - [anon_sym_range] = ACTIONS(958), - [anon_sym_i8] = ACTIONS(958), - [anon_sym_i16] = ACTIONS(958), - [anon_sym_i32] = ACTIONS(958), - [anon_sym_i64] = ACTIONS(958), - [anon_sym_u8] = ACTIONS(958), - [anon_sym_u16] = ACTIONS(958), - [anon_sym_u32] = ACTIONS(958), - [anon_sym_u64] = ACTIONS(958), - [anon_sym_isize] = ACTIONS(958), - [anon_sym_usize] = ACTIONS(958), - [anon_sym_f32] = ACTIONS(958), - [anon_sym_f64] = ACTIONS(958), - [anon_sym_c_char] = ACTIONS(958), - [anon_sym_c_schar] = ACTIONS(958), - [anon_sym_c_uchar] = ACTIONS(958), - [anon_sym_c_short] = ACTIONS(958), - [anon_sym_c_ushort] = ACTIONS(958), - [anon_sym_c_int] = ACTIONS(958), - [anon_sym_c_uint] = ACTIONS(958), - [anon_sym_c_long] = ACTIONS(958), - [anon_sym_c_ulong] = ACTIONS(958), - [anon_sym_c_longlong] = ACTIONS(958), - [anon_sym_c_ulonglong] = ACTIONS(958), - [anon_sym_c_float] = ACTIONS(958), - [anon_sym_c_double] = ACTIONS(958), - [anon_sym_c_longdouble] = ACTIONS(958), - [anon_sym_PLUS_EQ] = ACTIONS(956), - [anon_sym_DASH_EQ] = ACTIONS(956), - [anon_sym_STAR_EQ] = ACTIONS(956), - [anon_sym_SLASH_EQ] = ACTIONS(956), - [anon_sym_return] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(958), - [anon_sym_COLON] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_defer] = ACTIONS(958), - [anon_sym_errdefer] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_expand] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_orelse] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_or] = ACTIONS(958), - [anon_sym_and] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(956), - [anon_sym_try] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(956), - [anon_sym_true] = ACTIONS(958), - [anon_sym_false] = ACTIONS(958), - [sym_none] = ACTIONS(958), - [sym_undefined] = ACTIONS(958), - [sym_sink] = ACTIONS(958), - [sym_integer] = ACTIONS(958), - [sym_float] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(956), - [sym_multiline_string] = ACTIONS(956), - [sym_character] = ACTIONS(956), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(956), + [sym__newline] = ACTIONS(447), }, [STATE(416)] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_identifier] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(960), - [anon_sym_import] = ACTIONS(962), - [anon_sym_test] = ACTIONS(962), - [anon_sym_hide] = ACTIONS(962), - [anon_sym_func] = ACTIONS(962), - [anon_sym_c_func] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_void] = ACTIONS(962), - [anon_sym_anyopaque] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_int] = ACTIONS(962), - [anon_sym_uint] = ACTIONS(962), - [anon_sym_float] = ACTIONS(962), - [anon_sym_range] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_c_char] = ACTIONS(962), - [anon_sym_c_schar] = ACTIONS(962), - [anon_sym_c_uchar] = ACTIONS(962), - [anon_sym_c_short] = ACTIONS(962), - [anon_sym_c_ushort] = ACTIONS(962), - [anon_sym_c_int] = ACTIONS(962), - [anon_sym_c_uint] = ACTIONS(962), - [anon_sym_c_long] = ACTIONS(962), - [anon_sym_c_ulong] = ACTIONS(962), - [anon_sym_c_longlong] = ACTIONS(962), - [anon_sym_c_ulonglong] = ACTIONS(962), - [anon_sym_c_float] = ACTIONS(962), - [anon_sym_c_double] = ACTIONS(962), - [anon_sym_c_longdouble] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(960), - [anon_sym_DASH_EQ] = ACTIONS(960), - [anon_sym_STAR_EQ] = ACTIONS(960), - [anon_sym_SLASH_EQ] = ACTIONS(960), - [anon_sym_return] = ACTIONS(962), - [anon_sym_yield] = ACTIONS(962), - [anon_sym_COLON] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_defer] = ACTIONS(962), - [anon_sym_errdefer] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_else] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [anon_sym_expand] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_orelse] = ACTIONS(962), - [anon_sym_catch] = ACTIONS(962), - [anon_sym_or] = ACTIONS(962), - [anon_sym_and] = ACTIONS(962), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_try] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(960), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [sym_none] = ACTIONS(962), - [sym_undefined] = ACTIONS(962), - [sym_sink] = ACTIONS(962), - [sym_integer] = ACTIONS(962), - [sym_float] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_multiline_string] = ACTIONS(960), - [sym_character] = ACTIONS(960), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(420), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(960), + [sym__newline] = ACTIONS(1391), }, [STATE(417)] = { - [ts_builtin_sym_end] = ACTIONS(964), - [sym_identifier] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_import] = ACTIONS(966), - [anon_sym_test] = ACTIONS(966), - [anon_sym_hide] = ACTIONS(966), - [anon_sym_func] = ACTIONS(966), - [anon_sym_c_func] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_PIPE] = ACTIONS(964), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(964), - [anon_sym_void] = ACTIONS(966), - [anon_sym_anyopaque] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_int] = ACTIONS(966), - [anon_sym_uint] = ACTIONS(966), - [anon_sym_float] = ACTIONS(966), - [anon_sym_range] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_c_char] = ACTIONS(966), - [anon_sym_c_schar] = ACTIONS(966), - [anon_sym_c_uchar] = ACTIONS(966), - [anon_sym_c_short] = ACTIONS(966), - [anon_sym_c_ushort] = ACTIONS(966), - [anon_sym_c_int] = ACTIONS(966), - [anon_sym_c_uint] = ACTIONS(966), - [anon_sym_c_long] = ACTIONS(966), - [anon_sym_c_ulong] = ACTIONS(966), - [anon_sym_c_longlong] = ACTIONS(966), - [anon_sym_c_ulonglong] = ACTIONS(966), - [anon_sym_c_float] = ACTIONS(966), - [anon_sym_c_double] = ACTIONS(966), - [anon_sym_c_longdouble] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_return] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(966), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_defer] = ACTIONS(966), - [anon_sym_errdefer] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_else] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [anon_sym_expand] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_orelse] = ACTIONS(966), - [anon_sym_catch] = ACTIONS(966), - [anon_sym_or] = ACTIONS(966), - [anon_sym_and] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(964), - [anon_sym_try] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [sym_none] = ACTIONS(966), - [sym_undefined] = ACTIONS(966), - [sym_sink] = ACTIONS(966), - [sym_integer] = ACTIONS(966), - [sym_float] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym_multiline_string] = ACTIONS(964), - [sym_character] = ACTIONS(964), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(421), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(964), + [sym__newline] = ACTIONS(1393), }, [STATE(418)] = { - [ts_builtin_sym_end] = ACTIONS(968), - [sym_identifier] = ACTIONS(970), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_import] = ACTIONS(970), - [anon_sym_test] = ACTIONS(970), - [anon_sym_hide] = ACTIONS(970), - [anon_sym_func] = ACTIONS(970), - [anon_sym_c_func] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(968), - [anon_sym_void] = ACTIONS(970), - [anon_sym_anyopaque] = ACTIONS(970), - [anon_sym_bool] = ACTIONS(970), - [anon_sym_int] = ACTIONS(970), - [anon_sym_uint] = ACTIONS(970), - [anon_sym_float] = ACTIONS(970), - [anon_sym_range] = ACTIONS(970), - [anon_sym_i8] = ACTIONS(970), - [anon_sym_i16] = ACTIONS(970), - [anon_sym_i32] = ACTIONS(970), - [anon_sym_i64] = ACTIONS(970), - [anon_sym_u8] = ACTIONS(970), - [anon_sym_u16] = ACTIONS(970), - [anon_sym_u32] = ACTIONS(970), - [anon_sym_u64] = ACTIONS(970), - [anon_sym_isize] = ACTIONS(970), - [anon_sym_usize] = ACTIONS(970), - [anon_sym_f32] = ACTIONS(970), - [anon_sym_f64] = ACTIONS(970), - [anon_sym_c_char] = ACTIONS(970), - [anon_sym_c_schar] = ACTIONS(970), - [anon_sym_c_uchar] = ACTIONS(970), - [anon_sym_c_short] = ACTIONS(970), - [anon_sym_c_ushort] = ACTIONS(970), - [anon_sym_c_int] = ACTIONS(970), - [anon_sym_c_uint] = ACTIONS(970), - [anon_sym_c_long] = ACTIONS(970), - [anon_sym_c_ulong] = ACTIONS(970), - [anon_sym_c_longlong] = ACTIONS(970), - [anon_sym_c_ulonglong] = ACTIONS(970), - [anon_sym_c_float] = ACTIONS(970), - [anon_sym_c_double] = ACTIONS(970), - [anon_sym_c_longdouble] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_return] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_COLON] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_defer] = ACTIONS(970), - [anon_sym_errdefer] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_else] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [anon_sym_expand] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_orelse] = ACTIONS(970), - [anon_sym_catch] = ACTIONS(970), - [anon_sym_or] = ACTIONS(970), - [anon_sym_and] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_try] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(968), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [sym_none] = ACTIONS(970), - [sym_undefined] = ACTIONS(970), - [sym_sink] = ACTIONS(970), - [sym_integer] = ACTIONS(970), - [sym_float] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym_multiline_string] = ACTIONS(968), - [sym_character] = ACTIONS(968), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(968), + [sym__newline] = ACTIONS(447), }, [STATE(419)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(349), - [anon_sym_func] = ACTIONS(352), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(366), - [anon_sym_anyopaque] = ACTIONS(366), - [anon_sym_bool] = ACTIONS(366), - [anon_sym_int] = ACTIONS(366), - [anon_sym_uint] = ACTIONS(366), - [anon_sym_float] = ACTIONS(366), - [anon_sym_range] = ACTIONS(366), - [anon_sym_i8] = ACTIONS(366), - [anon_sym_i16] = ACTIONS(366), - [anon_sym_i32] = ACTIONS(366), - [anon_sym_i64] = ACTIONS(366), - [anon_sym_u8] = ACTIONS(366), - [anon_sym_u16] = ACTIONS(366), - [anon_sym_u32] = ACTIONS(366), - [anon_sym_u64] = ACTIONS(366), - [anon_sym_isize] = ACTIONS(366), - [anon_sym_usize] = ACTIONS(366), - [anon_sym_f32] = ACTIONS(366), - [anon_sym_f64] = ACTIONS(366), - [anon_sym_c_char] = ACTIONS(366), - [anon_sym_c_schar] = ACTIONS(366), - [anon_sym_c_uchar] = ACTIONS(366), - [anon_sym_c_short] = ACTIONS(366), - [anon_sym_c_ushort] = ACTIONS(366), - [anon_sym_c_int] = ACTIONS(366), - [anon_sym_c_uint] = ACTIONS(366), - [anon_sym_c_long] = ACTIONS(366), - [anon_sym_c_ulong] = ACTIONS(366), - [anon_sym_c_longlong] = ACTIONS(366), - [anon_sym_c_ulonglong] = ACTIONS(366), - [anon_sym_c_float] = ACTIONS(366), - [anon_sym_c_double] = ACTIONS(366), - [anon_sym_c_longdouble] = ACTIONS(366), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_defer] = ACTIONS(233), - [anon_sym_errdefer] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_expand] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_match] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_try] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_true] = ACTIONS(233), - [anon_sym_false] = ACTIONS(233), - [sym_none] = ACTIONS(233), - [sym_undefined] = ACTIONS(233), - [sym_sink] = ACTIONS(233), - [sym_integer] = ACTIONS(233), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(447), }, [STATE(420)] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(974), - [anon_sym_COLON_COLON] = ACTIONS(972), - [anon_sym_import] = ACTIONS(974), - [anon_sym_test] = ACTIONS(974), - [anon_sym_hide] = ACTIONS(974), - [anon_sym_func] = ACTIONS(974), - [anon_sym_c_func] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_void] = ACTIONS(974), - [anon_sym_anyopaque] = ACTIONS(974), - [anon_sym_bool] = ACTIONS(974), - [anon_sym_int] = ACTIONS(974), - [anon_sym_uint] = ACTIONS(974), - [anon_sym_float] = ACTIONS(974), - [anon_sym_range] = ACTIONS(974), - [anon_sym_i8] = ACTIONS(974), - [anon_sym_i16] = ACTIONS(974), - [anon_sym_i32] = ACTIONS(974), - [anon_sym_i64] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(974), - [anon_sym_u16] = ACTIONS(974), - [anon_sym_u32] = ACTIONS(974), - [anon_sym_u64] = ACTIONS(974), - [anon_sym_isize] = ACTIONS(974), - [anon_sym_usize] = ACTIONS(974), - [anon_sym_f32] = ACTIONS(974), - [anon_sym_f64] = ACTIONS(974), - [anon_sym_c_char] = ACTIONS(974), - [anon_sym_c_schar] = ACTIONS(974), - [anon_sym_c_uchar] = ACTIONS(974), - [anon_sym_c_short] = ACTIONS(974), - [anon_sym_c_ushort] = ACTIONS(974), - [anon_sym_c_int] = ACTIONS(974), - [anon_sym_c_uint] = ACTIONS(974), - [anon_sym_c_long] = ACTIONS(974), - [anon_sym_c_ulong] = ACTIONS(974), - [anon_sym_c_longlong] = ACTIONS(974), - [anon_sym_c_ulonglong] = ACTIONS(974), - [anon_sym_c_float] = ACTIONS(974), - [anon_sym_c_double] = ACTIONS(974), - [anon_sym_c_longdouble] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_return] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(974), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_defer] = ACTIONS(974), - [anon_sym_errdefer] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [anon_sym_expand] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_orelse] = ACTIONS(974), - [anon_sym_catch] = ACTIONS(974), - [anon_sym_or] = ACTIONS(974), - [anon_sym_and] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_try] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [sym_none] = ACTIONS(974), - [sym_undefined] = ACTIONS(974), - [sym_sink] = ACTIONS(974), - [sym_integer] = ACTIONS(974), - [sym_float] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_multiline_string] = ACTIONS(972), - [sym_character] = ACTIONS(972), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(972), + [sym__newline] = ACTIONS(447), }, [STATE(421)] = { - [ts_builtin_sym_end] = ACTIONS(976), - [sym_identifier] = ACTIONS(978), - [anon_sym_COLON_COLON] = ACTIONS(976), - [anon_sym_import] = ACTIONS(978), - [anon_sym_test] = ACTIONS(978), - [anon_sym_hide] = ACTIONS(978), - [anon_sym_func] = ACTIONS(978), - [anon_sym_c_func] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_AT] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_RBRACK] = ACTIONS(976), - [anon_sym_void] = ACTIONS(978), - [anon_sym_anyopaque] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_int] = ACTIONS(978), - [anon_sym_uint] = ACTIONS(978), - [anon_sym_float] = ACTIONS(978), - [anon_sym_range] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_c_char] = ACTIONS(978), - [anon_sym_c_schar] = ACTIONS(978), - [anon_sym_c_uchar] = ACTIONS(978), - [anon_sym_c_short] = ACTIONS(978), - [anon_sym_c_ushort] = ACTIONS(978), - [anon_sym_c_int] = ACTIONS(978), - [anon_sym_c_uint] = ACTIONS(978), - [anon_sym_c_long] = ACTIONS(978), - [anon_sym_c_ulong] = ACTIONS(978), - [anon_sym_c_longlong] = ACTIONS(978), - [anon_sym_c_ulonglong] = ACTIONS(978), - [anon_sym_c_float] = ACTIONS(978), - [anon_sym_c_double] = ACTIONS(978), - [anon_sym_c_longdouble] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_return] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(978), - [anon_sym_COLON] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_defer] = ACTIONS(978), - [anon_sym_errdefer] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_else] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [anon_sym_expand] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_orelse] = ACTIONS(978), - [anon_sym_catch] = ACTIONS(978), - [anon_sym_or] = ACTIONS(978), - [anon_sym_and] = ACTIONS(978), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_try] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [sym_none] = ACTIONS(978), - [sym_undefined] = ACTIONS(978), - [sym_sink] = ACTIONS(978), - [sym_integer] = ACTIONS(978), - [sym_float] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym_multiline_string] = ACTIONS(976), - [sym_character] = ACTIONS(976), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(976), + [sym__newline] = ACTIONS(447), }, [STATE(422)] = { - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(982), - [anon_sym_COLON_COLON] = ACTIONS(980), - [anon_sym_import] = ACTIONS(982), - [anon_sym_test] = ACTIONS(982), - [anon_sym_hide] = ACTIONS(982), - [anon_sym_func] = ACTIONS(982), - [anon_sym_c_func] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_QMARK] = ACTIONS(980), - [anon_sym_AT] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_void] = ACTIONS(982), - [anon_sym_anyopaque] = ACTIONS(982), - [anon_sym_bool] = ACTIONS(982), - [anon_sym_int] = ACTIONS(982), - [anon_sym_uint] = ACTIONS(982), - [anon_sym_float] = ACTIONS(982), - [anon_sym_range] = ACTIONS(982), - [anon_sym_i8] = ACTIONS(982), - [anon_sym_i16] = ACTIONS(982), - [anon_sym_i32] = ACTIONS(982), - [anon_sym_i64] = ACTIONS(982), - [anon_sym_u8] = ACTIONS(982), - [anon_sym_u16] = ACTIONS(982), - [anon_sym_u32] = ACTIONS(982), - [anon_sym_u64] = ACTIONS(982), - [anon_sym_isize] = ACTIONS(982), - [anon_sym_usize] = ACTIONS(982), - [anon_sym_f32] = ACTIONS(982), - [anon_sym_f64] = ACTIONS(982), - [anon_sym_c_char] = ACTIONS(982), - [anon_sym_c_schar] = ACTIONS(982), - [anon_sym_c_uchar] = ACTIONS(982), - [anon_sym_c_short] = ACTIONS(982), - [anon_sym_c_ushort] = ACTIONS(982), - [anon_sym_c_int] = ACTIONS(982), - [anon_sym_c_uint] = ACTIONS(982), - [anon_sym_c_long] = ACTIONS(982), - [anon_sym_c_ulong] = ACTIONS(982), - [anon_sym_c_longlong] = ACTIONS(982), - [anon_sym_c_ulonglong] = ACTIONS(982), - [anon_sym_c_float] = ACTIONS(982), - [anon_sym_c_double] = ACTIONS(982), - [anon_sym_c_longdouble] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_return] = ACTIONS(982), - [anon_sym_yield] = ACTIONS(982), - [anon_sym_COLON] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_defer] = ACTIONS(982), - [anon_sym_errdefer] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_else] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [anon_sym_expand] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_orelse] = ACTIONS(982), - [anon_sym_catch] = ACTIONS(982), - [anon_sym_or] = ACTIONS(982), - [anon_sym_and] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_try] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(980), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [sym_none] = ACTIONS(982), - [sym_undefined] = ACTIONS(982), - [sym_sink] = ACTIONS(982), - [sym_integer] = ACTIONS(982), - [sym_float] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym_multiline_string] = ACTIONS(980), - [sym_character] = ACTIONS(980), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(980), + [sym__newline] = ACTIONS(1395), }, [STATE(423)] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_identifier] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(984), - [anon_sym_import] = ACTIONS(986), - [anon_sym_test] = ACTIONS(986), - [anon_sym_hide] = ACTIONS(986), - [anon_sym_func] = ACTIONS(986), - [anon_sym_c_func] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_void] = ACTIONS(986), - [anon_sym_anyopaque] = ACTIONS(986), - [anon_sym_bool] = ACTIONS(986), - [anon_sym_int] = ACTIONS(986), - [anon_sym_uint] = ACTIONS(986), - [anon_sym_float] = ACTIONS(986), - [anon_sym_range] = ACTIONS(986), - [anon_sym_i8] = ACTIONS(986), - [anon_sym_i16] = ACTIONS(986), - [anon_sym_i32] = ACTIONS(986), - [anon_sym_i64] = ACTIONS(986), - [anon_sym_u8] = ACTIONS(986), - [anon_sym_u16] = ACTIONS(986), - [anon_sym_u32] = ACTIONS(986), - [anon_sym_u64] = ACTIONS(986), - [anon_sym_isize] = ACTIONS(986), - [anon_sym_usize] = ACTIONS(986), - [anon_sym_f32] = ACTIONS(986), - [anon_sym_f64] = ACTIONS(986), - [anon_sym_c_char] = ACTIONS(986), - [anon_sym_c_schar] = ACTIONS(986), - [anon_sym_c_uchar] = ACTIONS(986), - [anon_sym_c_short] = ACTIONS(986), - [anon_sym_c_ushort] = ACTIONS(986), - [anon_sym_c_int] = ACTIONS(986), - [anon_sym_c_uint] = ACTIONS(986), - [anon_sym_c_long] = ACTIONS(986), - [anon_sym_c_ulong] = ACTIONS(986), - [anon_sym_c_longlong] = ACTIONS(986), - [anon_sym_c_ulonglong] = ACTIONS(986), - [anon_sym_c_float] = ACTIONS(986), - [anon_sym_c_double] = ACTIONS(986), - [anon_sym_c_longdouble] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_return] = ACTIONS(986), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_COLON] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_defer] = ACTIONS(986), - [anon_sym_errdefer] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_else] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [anon_sym_expand] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_orelse] = ACTIONS(986), - [anon_sym_catch] = ACTIONS(986), - [anon_sym_or] = ACTIONS(986), - [anon_sym_and] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_try] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [sym_none] = ACTIONS(986), - [sym_undefined] = ACTIONS(986), - [sym_sink] = ACTIONS(986), - [sym_integer] = ACTIONS(986), - [sym_float] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym_multiline_string] = ACTIONS(984), - [sym_character] = ACTIONS(984), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(984), + [sym__newline] = ACTIONS(447), }, [STATE(424)] = { - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(988), - [anon_sym_import] = ACTIONS(990), - [anon_sym_test] = ACTIONS(990), - [anon_sym_hide] = ACTIONS(990), - [anon_sym_func] = ACTIONS(990), - [anon_sym_c_func] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_PIPE] = ACTIONS(988), - [anon_sym_QMARK] = ACTIONS(988), - [anon_sym_AT] = ACTIONS(988), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_void] = ACTIONS(990), - [anon_sym_anyopaque] = ACTIONS(990), - [anon_sym_bool] = ACTIONS(990), - [anon_sym_int] = ACTIONS(990), - [anon_sym_uint] = ACTIONS(990), - [anon_sym_float] = ACTIONS(990), - [anon_sym_range] = ACTIONS(990), - [anon_sym_i8] = ACTIONS(990), - [anon_sym_i16] = ACTIONS(990), - [anon_sym_i32] = ACTIONS(990), - [anon_sym_i64] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(990), - [anon_sym_u16] = ACTIONS(990), - [anon_sym_u32] = ACTIONS(990), - [anon_sym_u64] = ACTIONS(990), - [anon_sym_isize] = ACTIONS(990), - [anon_sym_usize] = ACTIONS(990), - [anon_sym_f32] = ACTIONS(990), - [anon_sym_f64] = ACTIONS(990), - [anon_sym_c_char] = ACTIONS(990), - [anon_sym_c_schar] = ACTIONS(990), - [anon_sym_c_uchar] = ACTIONS(990), - [anon_sym_c_short] = ACTIONS(990), - [anon_sym_c_ushort] = ACTIONS(990), - [anon_sym_c_int] = ACTIONS(990), - [anon_sym_c_uint] = ACTIONS(990), - [anon_sym_c_long] = ACTIONS(990), - [anon_sym_c_ulong] = ACTIONS(990), - [anon_sym_c_longlong] = ACTIONS(990), - [anon_sym_c_ulonglong] = ACTIONS(990), - [anon_sym_c_float] = ACTIONS(990), - [anon_sym_c_double] = ACTIONS(990), - [anon_sym_c_longdouble] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_return] = ACTIONS(990), - [anon_sym_yield] = ACTIONS(990), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_defer] = ACTIONS(990), - [anon_sym_errdefer] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_else] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [anon_sym_expand] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_orelse] = ACTIONS(990), - [anon_sym_catch] = ACTIONS(990), - [anon_sym_or] = ACTIONS(990), - [anon_sym_and] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(988), - [anon_sym_try] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(988), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [sym_none] = ACTIONS(990), - [sym_undefined] = ACTIONS(990), - [sym_sink] = ACTIONS(990), - [sym_integer] = ACTIONS(990), - [sym_float] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(988), - [sym_multiline_string] = ACTIONS(988), - [sym_character] = ACTIONS(988), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(988), + [sym__newline] = ACTIONS(1397), }, [STATE(425)] = { - [ts_builtin_sym_end] = ACTIONS(992), - [sym_identifier] = ACTIONS(994), - [anon_sym_COLON_COLON] = ACTIONS(992), - [anon_sym_import] = ACTIONS(994), - [anon_sym_test] = ACTIONS(994), - [anon_sym_hide] = ACTIONS(994), - [anon_sym_func] = ACTIONS(994), - [anon_sym_c_func] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(992), - [anon_sym_void] = ACTIONS(994), - [anon_sym_anyopaque] = ACTIONS(994), - [anon_sym_bool] = ACTIONS(994), - [anon_sym_int] = ACTIONS(994), - [anon_sym_uint] = ACTIONS(994), - [anon_sym_float] = ACTIONS(994), - [anon_sym_range] = ACTIONS(994), - [anon_sym_i8] = ACTIONS(994), - [anon_sym_i16] = ACTIONS(994), - [anon_sym_i32] = ACTIONS(994), - [anon_sym_i64] = ACTIONS(994), - [anon_sym_u8] = ACTIONS(994), - [anon_sym_u16] = ACTIONS(994), - [anon_sym_u32] = ACTIONS(994), - [anon_sym_u64] = ACTIONS(994), - [anon_sym_isize] = ACTIONS(994), - [anon_sym_usize] = ACTIONS(994), - [anon_sym_f32] = ACTIONS(994), - [anon_sym_f64] = ACTIONS(994), - [anon_sym_c_char] = ACTIONS(994), - [anon_sym_c_schar] = ACTIONS(994), - [anon_sym_c_uchar] = ACTIONS(994), - [anon_sym_c_short] = ACTIONS(994), - [anon_sym_c_ushort] = ACTIONS(994), - [anon_sym_c_int] = ACTIONS(994), - [anon_sym_c_uint] = ACTIONS(994), - [anon_sym_c_long] = ACTIONS(994), - [anon_sym_c_ulong] = ACTIONS(994), - [anon_sym_c_longlong] = ACTIONS(994), - [anon_sym_c_ulonglong] = ACTIONS(994), - [anon_sym_c_float] = ACTIONS(994), - [anon_sym_c_double] = ACTIONS(994), - [anon_sym_c_longdouble] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_return] = ACTIONS(994), - [anon_sym_yield] = ACTIONS(994), - [anon_sym_COLON] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_defer] = ACTIONS(994), - [anon_sym_errdefer] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_else] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [anon_sym_expand] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_orelse] = ACTIONS(994), - [anon_sym_catch] = ACTIONS(994), - [anon_sym_or] = ACTIONS(994), - [anon_sym_and] = ACTIONS(994), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_SLASH] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_try] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [sym_none] = ACTIONS(994), - [sym_undefined] = ACTIONS(994), - [sym_sink] = ACTIONS(994), - [sym_integer] = ACTIONS(994), - [sym_float] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_multiline_string] = ACTIONS(992), - [sym_character] = ACTIONS(992), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(992), + [sym__newline] = ACTIONS(1399), }, [STATE(426)] = { - [sym_type] = STATE(2214), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(1401), }, [STATE(427)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(349), - [anon_sym_func] = ACTIONS(352), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(366), - [anon_sym_anyopaque] = ACTIONS(366), - [anon_sym_bool] = ACTIONS(366), - [anon_sym_int] = ACTIONS(366), - [anon_sym_uint] = ACTIONS(366), - [anon_sym_float] = ACTIONS(366), - [anon_sym_range] = ACTIONS(366), - [anon_sym_i8] = ACTIONS(366), - [anon_sym_i16] = ACTIONS(366), - [anon_sym_i32] = ACTIONS(366), - [anon_sym_i64] = ACTIONS(366), - [anon_sym_u8] = ACTIONS(366), - [anon_sym_u16] = ACTIONS(366), - [anon_sym_u32] = ACTIONS(366), - [anon_sym_u64] = ACTIONS(366), - [anon_sym_isize] = ACTIONS(366), - [anon_sym_usize] = ACTIONS(366), - [anon_sym_f32] = ACTIONS(366), - [anon_sym_f64] = ACTIONS(366), - [anon_sym_c_char] = ACTIONS(366), - [anon_sym_c_schar] = ACTIONS(366), - [anon_sym_c_uchar] = ACTIONS(366), - [anon_sym_c_short] = ACTIONS(366), - [anon_sym_c_ushort] = ACTIONS(366), - [anon_sym_c_int] = ACTIONS(366), - [anon_sym_c_uint] = ACTIONS(366), - [anon_sym_c_long] = ACTIONS(366), - [anon_sym_c_ulong] = ACTIONS(366), - [anon_sym_c_longlong] = ACTIONS(366), - [anon_sym_c_ulonglong] = ACTIONS(366), - [anon_sym_c_float] = ACTIONS(366), - [anon_sym_c_double] = ACTIONS(366), - [anon_sym_c_longdouble] = ACTIONS(366), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_defer] = ACTIONS(233), - [anon_sym_errdefer] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_expand] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_match] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_try] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_true] = ACTIONS(233), - [anon_sym_false] = ACTIONS(233), - [sym_none] = ACTIONS(233), - [sym_undefined] = ACTIONS(233), - [sym_sink] = ACTIONS(233), - [sym_integer] = ACTIONS(233), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(447), }, [STATE(428)] = { - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_identifier] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1030), - [anon_sym_import] = ACTIONS(1032), - [anon_sym_test] = ACTIONS(1032), - [anon_sym_hide] = ACTIONS(1032), - [anon_sym_func] = ACTIONS(1032), - [anon_sym_c_func] = ACTIONS(1032), - [anon_sym_BANG] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_struct] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1030), - [anon_sym_AT] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_anyopaque] = ACTIONS(1032), - [anon_sym_bool] = ACTIONS(1032), - [anon_sym_int] = ACTIONS(1032), - [anon_sym_uint] = ACTIONS(1032), - [anon_sym_float] = ACTIONS(1032), - [anon_sym_range] = ACTIONS(1032), - [anon_sym_i8] = ACTIONS(1032), - [anon_sym_i16] = ACTIONS(1032), - [anon_sym_i32] = ACTIONS(1032), - [anon_sym_i64] = ACTIONS(1032), - [anon_sym_u8] = ACTIONS(1032), - [anon_sym_u16] = ACTIONS(1032), - [anon_sym_u32] = ACTIONS(1032), - [anon_sym_u64] = ACTIONS(1032), - [anon_sym_isize] = ACTIONS(1032), - [anon_sym_usize] = ACTIONS(1032), - [anon_sym_f32] = ACTIONS(1032), - [anon_sym_f64] = ACTIONS(1032), - [anon_sym_c_char] = ACTIONS(1032), - [anon_sym_c_schar] = ACTIONS(1032), - [anon_sym_c_uchar] = ACTIONS(1032), - [anon_sym_c_short] = ACTIONS(1032), - [anon_sym_c_ushort] = ACTIONS(1032), - [anon_sym_c_int] = ACTIONS(1032), - [anon_sym_c_uint] = ACTIONS(1032), - [anon_sym_c_long] = ACTIONS(1032), - [anon_sym_c_ulong] = ACTIONS(1032), - [anon_sym_c_longlong] = ACTIONS(1032), - [anon_sym_c_ulonglong] = ACTIONS(1032), - [anon_sym_c_float] = ACTIONS(1032), - [anon_sym_c_double] = ACTIONS(1032), - [anon_sym_c_longdouble] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1032), - [anon_sym_yield] = ACTIONS(1032), - [anon_sym_COLON] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1032), - [anon_sym_continue] = ACTIONS(1032), - [anon_sym_defer] = ACTIONS(1032), - [anon_sym_errdefer] = ACTIONS(1032), - [anon_sym_if] = ACTIONS(1032), - [anon_sym_else] = ACTIONS(1032), - [anon_sym_while] = ACTIONS(1032), - [anon_sym_expand] = ACTIONS(1032), - [anon_sym_for] = ACTIONS(1032), - [anon_sym_match] = ACTIONS(1032), - [anon_sym_DOT_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_orelse] = ACTIONS(1032), - [anon_sym_catch] = ACTIONS(1032), - [anon_sym_or] = ACTIONS(1032), - [anon_sym_and] = ACTIONS(1032), - [anon_sym_EQ_EQ] = ACTIONS(1030), - [anon_sym_BANG_EQ] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1030), - [anon_sym_GT] = ACTIONS(1032), - [anon_sym_GT_EQ] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1032), - [anon_sym_SLASH] = ACTIONS(1032), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1032), - [anon_sym_DOT] = ACTIONS(1032), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1032), - [anon_sym_false] = ACTIONS(1032), - [sym_none] = ACTIONS(1032), - [sym_undefined] = ACTIONS(1032), - [sym_sink] = ACTIONS(1032), - [sym_integer] = ACTIONS(1032), - [sym_float] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym_multiline_string] = ACTIONS(1030), - [sym_character] = ACTIONS(1030), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1030), + [sym__newline] = ACTIONS(1403), }, [STATE(429)] = { - [ts_builtin_sym_end] = ACTIONS(1034), - [sym_identifier] = ACTIONS(1036), - [anon_sym_COLON_COLON] = ACTIONS(1034), - [anon_sym_import] = ACTIONS(1036), - [anon_sym_test] = ACTIONS(1036), - [anon_sym_hide] = ACTIONS(1036), - [anon_sym_func] = ACTIONS(1036), - [anon_sym_c_func] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1036), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1034), - [anon_sym_AT] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1034), - [anon_sym_RBRACK] = ACTIONS(1034), - [anon_sym_void] = ACTIONS(1036), - [anon_sym_anyopaque] = ACTIONS(1036), - [anon_sym_bool] = ACTIONS(1036), - [anon_sym_int] = ACTIONS(1036), - [anon_sym_uint] = ACTIONS(1036), - [anon_sym_float] = ACTIONS(1036), - [anon_sym_range] = ACTIONS(1036), - [anon_sym_i8] = ACTIONS(1036), - [anon_sym_i16] = ACTIONS(1036), - [anon_sym_i32] = ACTIONS(1036), - [anon_sym_i64] = ACTIONS(1036), - [anon_sym_u8] = ACTIONS(1036), - [anon_sym_u16] = ACTIONS(1036), - [anon_sym_u32] = ACTIONS(1036), - [anon_sym_u64] = ACTIONS(1036), - [anon_sym_isize] = ACTIONS(1036), - [anon_sym_usize] = ACTIONS(1036), - [anon_sym_f32] = ACTIONS(1036), - [anon_sym_f64] = ACTIONS(1036), - [anon_sym_c_char] = ACTIONS(1036), - [anon_sym_c_schar] = ACTIONS(1036), - [anon_sym_c_uchar] = ACTIONS(1036), - [anon_sym_c_short] = ACTIONS(1036), - [anon_sym_c_ushort] = ACTIONS(1036), - [anon_sym_c_int] = ACTIONS(1036), - [anon_sym_c_uint] = ACTIONS(1036), - [anon_sym_c_long] = ACTIONS(1036), - [anon_sym_c_ulong] = ACTIONS(1036), - [anon_sym_c_longlong] = ACTIONS(1036), - [anon_sym_c_ulonglong] = ACTIONS(1036), - [anon_sym_c_float] = ACTIONS(1036), - [anon_sym_c_double] = ACTIONS(1036), - [anon_sym_c_longdouble] = ACTIONS(1036), - [anon_sym_PLUS_EQ] = ACTIONS(1034), - [anon_sym_DASH_EQ] = ACTIONS(1034), - [anon_sym_STAR_EQ] = ACTIONS(1034), - [anon_sym_SLASH_EQ] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_COLON] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_defer] = ACTIONS(1036), - [anon_sym_errdefer] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1036), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_expand] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_match] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_orelse] = ACTIONS(1036), - [anon_sym_catch] = ACTIONS(1036), - [anon_sym_or] = ACTIONS(1036), - [anon_sym_and] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_GT_EQ] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [sym_none] = ACTIONS(1036), - [sym_undefined] = ACTIONS(1036), - [sym_sink] = ACTIONS(1036), - [sym_integer] = ACTIONS(1036), - [sym_float] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_multiline_string] = ACTIONS(1034), - [sym_character] = ACTIONS(1034), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(435), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1034), + [sym__newline] = ACTIONS(1405), }, [STATE(430)] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_identifier] = ACTIONS(1040), - [anon_sym_COLON_COLON] = ACTIONS(1038), - [anon_sym_import] = ACTIONS(1040), - [anon_sym_test] = ACTIONS(1040), - [anon_sym_hide] = ACTIONS(1040), - [anon_sym_func] = ACTIONS(1040), - [anon_sym_c_func] = ACTIONS(1040), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1040), - [anon_sym_struct] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1038), - [anon_sym_COMMA] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_QMARK] = ACTIONS(1038), - [anon_sym_AT] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_RBRACK] = ACTIONS(1038), - [anon_sym_void] = ACTIONS(1040), - [anon_sym_anyopaque] = ACTIONS(1040), - [anon_sym_bool] = ACTIONS(1040), - [anon_sym_int] = ACTIONS(1040), - [anon_sym_uint] = ACTIONS(1040), - [anon_sym_float] = ACTIONS(1040), - [anon_sym_range] = ACTIONS(1040), - [anon_sym_i8] = ACTIONS(1040), - [anon_sym_i16] = ACTIONS(1040), - [anon_sym_i32] = ACTIONS(1040), - [anon_sym_i64] = ACTIONS(1040), - [anon_sym_u8] = ACTIONS(1040), - [anon_sym_u16] = ACTIONS(1040), - [anon_sym_u32] = ACTIONS(1040), - [anon_sym_u64] = ACTIONS(1040), - [anon_sym_isize] = ACTIONS(1040), - [anon_sym_usize] = ACTIONS(1040), - [anon_sym_f32] = ACTIONS(1040), - [anon_sym_f64] = ACTIONS(1040), - [anon_sym_c_char] = ACTIONS(1040), - [anon_sym_c_schar] = ACTIONS(1040), - [anon_sym_c_uchar] = ACTIONS(1040), - [anon_sym_c_short] = ACTIONS(1040), - [anon_sym_c_ushort] = ACTIONS(1040), - [anon_sym_c_int] = ACTIONS(1040), - [anon_sym_c_uint] = ACTIONS(1040), - [anon_sym_c_long] = ACTIONS(1040), - [anon_sym_c_ulong] = ACTIONS(1040), - [anon_sym_c_longlong] = ACTIONS(1040), - [anon_sym_c_ulonglong] = ACTIONS(1040), - [anon_sym_c_float] = ACTIONS(1040), - [anon_sym_c_double] = ACTIONS(1040), - [anon_sym_c_longdouble] = ACTIONS(1040), - [anon_sym_PLUS_EQ] = ACTIONS(1038), - [anon_sym_DASH_EQ] = ACTIONS(1038), - [anon_sym_STAR_EQ] = ACTIONS(1038), - [anon_sym_SLASH_EQ] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1040), - [anon_sym_yield] = ACTIONS(1040), - [anon_sym_COLON] = ACTIONS(1040), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_defer] = ACTIONS(1040), - [anon_sym_errdefer] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1040), - [anon_sym_else] = ACTIONS(1040), - [anon_sym_while] = ACTIONS(1040), - [anon_sym_expand] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1040), - [anon_sym_match] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_orelse] = ACTIONS(1040), - [anon_sym_catch] = ACTIONS(1040), - [anon_sym_or] = ACTIONS(1040), - [anon_sym_and] = ACTIONS(1040), - [anon_sym_EQ_EQ] = ACTIONS(1038), - [anon_sym_BANG_EQ] = ACTIONS(1038), - [anon_sym_LT] = ACTIONS(1040), - [anon_sym_LT_EQ] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1040), - [anon_sym_GT_EQ] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1040), - [anon_sym_SLASH] = ACTIONS(1040), - [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_try] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [anon_sym_CARET] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [sym_none] = ACTIONS(1040), - [sym_undefined] = ACTIONS(1040), - [sym_sink] = ACTIONS(1040), - [sym_integer] = ACTIONS(1040), - [sym_float] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym_multiline_string] = ACTIONS(1038), - [sym_character] = ACTIONS(1038), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1038), + [sym__newline] = ACTIONS(447), }, [STATE(431)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(371), - [anon_sym_func] = ACTIONS(374), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_void] = ACTIONS(388), - [anon_sym_anyopaque] = ACTIONS(388), - [anon_sym_bool] = ACTIONS(388), - [anon_sym_int] = ACTIONS(388), - [anon_sym_uint] = ACTIONS(388), - [anon_sym_float] = ACTIONS(388), - [anon_sym_range] = ACTIONS(388), - [anon_sym_i8] = ACTIONS(388), - [anon_sym_i16] = ACTIONS(388), - [anon_sym_i32] = ACTIONS(388), - [anon_sym_i64] = ACTIONS(388), - [anon_sym_u8] = ACTIONS(388), - [anon_sym_u16] = ACTIONS(388), - [anon_sym_u32] = ACTIONS(388), - [anon_sym_u64] = ACTIONS(388), - [anon_sym_isize] = ACTIONS(388), - [anon_sym_usize] = ACTIONS(388), - [anon_sym_f32] = ACTIONS(388), - [anon_sym_f64] = ACTIONS(388), - [anon_sym_c_char] = ACTIONS(388), - [anon_sym_c_schar] = ACTIONS(388), - [anon_sym_c_uchar] = ACTIONS(388), - [anon_sym_c_short] = ACTIONS(388), - [anon_sym_c_ushort] = ACTIONS(388), - [anon_sym_c_int] = ACTIONS(388), - [anon_sym_c_uint] = ACTIONS(388), - [anon_sym_c_long] = ACTIONS(388), - [anon_sym_c_ulong] = ACTIONS(388), - [anon_sym_c_longlong] = ACTIONS(388), - [anon_sym_c_ulonglong] = ACTIONS(388), - [anon_sym_c_float] = ACTIONS(388), - [anon_sym_c_double] = ACTIONS(388), - [anon_sym_c_longdouble] = ACTIONS(388), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_return] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(247), - [anon_sym_break] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(247), - [anon_sym_defer] = ACTIONS(247), - [anon_sym_errdefer] = ACTIONS(247), - [anon_sym_if] = ACTIONS(247), - [anon_sym_else] = ACTIONS(247), - [anon_sym_while] = ACTIONS(247), - [anon_sym_expand] = ACTIONS(247), - [anon_sym_for] = ACTIONS(247), - [anon_sym_match] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_try] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [sym_none] = ACTIONS(247), - [sym_undefined] = ACTIONS(247), - [sym_sink] = ACTIONS(247), - [sym_integer] = ACTIONS(247), - [sym_float] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(243), - [sym_multiline_string] = ACTIONS(243), - [sym_character] = ACTIONS(243), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(437), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), + [sym__newline] = ACTIONS(1407), }, [STATE(432)] = { - [ts_builtin_sym_end] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1044), - [anon_sym_COLON_COLON] = ACTIONS(1042), - [anon_sym_import] = ACTIONS(1044), - [anon_sym_test] = ACTIONS(1044), - [anon_sym_hide] = ACTIONS(1044), - [anon_sym_func] = ACTIONS(1044), - [anon_sym_c_func] = ACTIONS(1044), - [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1044), - [anon_sym_struct] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_RPAREN] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1042), - [anon_sym_COMMA] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_QMARK] = ACTIONS(1042), - [anon_sym_AT] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1042), - [anon_sym_RBRACK] = ACTIONS(1042), - [anon_sym_void] = ACTIONS(1044), - [anon_sym_anyopaque] = ACTIONS(1044), - [anon_sym_bool] = ACTIONS(1044), - [anon_sym_int] = ACTIONS(1044), - [anon_sym_uint] = ACTIONS(1044), - [anon_sym_float] = ACTIONS(1044), - [anon_sym_range] = ACTIONS(1044), - [anon_sym_i8] = ACTIONS(1044), - [anon_sym_i16] = ACTIONS(1044), - [anon_sym_i32] = ACTIONS(1044), - [anon_sym_i64] = ACTIONS(1044), - [anon_sym_u8] = ACTIONS(1044), - [anon_sym_u16] = ACTIONS(1044), - [anon_sym_u32] = ACTIONS(1044), - [anon_sym_u64] = ACTIONS(1044), - [anon_sym_isize] = ACTIONS(1044), - [anon_sym_usize] = ACTIONS(1044), - [anon_sym_f32] = ACTIONS(1044), - [anon_sym_f64] = ACTIONS(1044), - [anon_sym_c_char] = ACTIONS(1044), - [anon_sym_c_schar] = ACTIONS(1044), - [anon_sym_c_uchar] = ACTIONS(1044), - [anon_sym_c_short] = ACTIONS(1044), - [anon_sym_c_ushort] = ACTIONS(1044), - [anon_sym_c_int] = ACTIONS(1044), - [anon_sym_c_uint] = ACTIONS(1044), - [anon_sym_c_long] = ACTIONS(1044), - [anon_sym_c_ulong] = ACTIONS(1044), - [anon_sym_c_longlong] = ACTIONS(1044), - [anon_sym_c_ulonglong] = ACTIONS(1044), - [anon_sym_c_float] = ACTIONS(1044), - [anon_sym_c_double] = ACTIONS(1044), - [anon_sym_c_longdouble] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1042), - [anon_sym_DASH_EQ] = ACTIONS(1042), - [anon_sym_STAR_EQ] = ACTIONS(1042), - [anon_sym_SLASH_EQ] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1044), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1044), - [anon_sym_continue] = ACTIONS(1044), - [anon_sym_defer] = ACTIONS(1044), - [anon_sym_errdefer] = ACTIONS(1044), - [anon_sym_if] = ACTIONS(1044), - [anon_sym_else] = ACTIONS(1044), - [anon_sym_while] = ACTIONS(1044), - [anon_sym_expand] = ACTIONS(1044), - [anon_sym_for] = ACTIONS(1044), - [anon_sym_match] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), - [anon_sym_orelse] = ACTIONS(1044), - [anon_sym_catch] = ACTIONS(1044), - [anon_sym_or] = ACTIONS(1044), - [anon_sym_and] = ACTIONS(1044), - [anon_sym_EQ_EQ] = ACTIONS(1042), - [anon_sym_BANG_EQ] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1044), - [anon_sym_LT_EQ] = ACTIONS(1042), - [anon_sym_GT] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1042), - [anon_sym_PLUS] = ACTIONS(1044), - [anon_sym_SLASH] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_CARET] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [sym_none] = ACTIONS(1044), - [sym_undefined] = ACTIONS(1044), - [sym_sink] = ACTIONS(1044), - [sym_integer] = ACTIONS(1044), - [sym_float] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym_multiline_string] = ACTIONS(1042), - [sym_character] = ACTIONS(1042), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(438), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1042), + [sym__newline] = ACTIONS(1409), }, [STATE(433)] = { - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1048), - [anon_sym_COLON_COLON] = ACTIONS(1046), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_test] = ACTIONS(1048), - [anon_sym_hide] = ACTIONS(1048), - [anon_sym_func] = ACTIONS(1048), - [anon_sym_c_func] = ACTIONS(1048), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1048), - [anon_sym_struct] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1046), - [anon_sym_AT] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_RBRACK] = ACTIONS(1046), - [anon_sym_void] = ACTIONS(1048), - [anon_sym_anyopaque] = ACTIONS(1048), - [anon_sym_bool] = ACTIONS(1048), - [anon_sym_int] = ACTIONS(1048), - [anon_sym_uint] = ACTIONS(1048), - [anon_sym_float] = ACTIONS(1048), - [anon_sym_range] = ACTIONS(1048), - [anon_sym_i8] = ACTIONS(1048), - [anon_sym_i16] = ACTIONS(1048), - [anon_sym_i32] = ACTIONS(1048), - [anon_sym_i64] = ACTIONS(1048), - [anon_sym_u8] = ACTIONS(1048), - [anon_sym_u16] = ACTIONS(1048), - [anon_sym_u32] = ACTIONS(1048), - [anon_sym_u64] = ACTIONS(1048), - [anon_sym_isize] = ACTIONS(1048), - [anon_sym_usize] = ACTIONS(1048), - [anon_sym_f32] = ACTIONS(1048), - [anon_sym_f64] = ACTIONS(1048), - [anon_sym_c_char] = ACTIONS(1048), - [anon_sym_c_schar] = ACTIONS(1048), - [anon_sym_c_uchar] = ACTIONS(1048), - [anon_sym_c_short] = ACTIONS(1048), - [anon_sym_c_ushort] = ACTIONS(1048), - [anon_sym_c_int] = ACTIONS(1048), - [anon_sym_c_uint] = ACTIONS(1048), - [anon_sym_c_long] = ACTIONS(1048), - [anon_sym_c_ulong] = ACTIONS(1048), - [anon_sym_c_longlong] = ACTIONS(1048), - [anon_sym_c_ulonglong] = ACTIONS(1048), - [anon_sym_c_float] = ACTIONS(1048), - [anon_sym_c_double] = ACTIONS(1048), - [anon_sym_c_longdouble] = ACTIONS(1048), - [anon_sym_PLUS_EQ] = ACTIONS(1046), - [anon_sym_DASH_EQ] = ACTIONS(1046), - [anon_sym_STAR_EQ] = ACTIONS(1046), - [anon_sym_SLASH_EQ] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_yield] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1048), - [anon_sym_break] = ACTIONS(1048), - [anon_sym_continue] = ACTIONS(1048), - [anon_sym_defer] = ACTIONS(1048), - [anon_sym_errdefer] = ACTIONS(1048), - [anon_sym_if] = ACTIONS(1048), - [anon_sym_else] = ACTIONS(1048), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_expand] = ACTIONS(1048), - [anon_sym_for] = ACTIONS(1048), - [anon_sym_match] = ACTIONS(1048), - [anon_sym_DOT_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), - [anon_sym_orelse] = ACTIONS(1048), - [anon_sym_catch] = ACTIONS(1048), - [anon_sym_or] = ACTIONS(1048), - [anon_sym_and] = ACTIONS(1048), - [anon_sym_EQ_EQ] = ACTIONS(1046), - [anon_sym_BANG_EQ] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1048), - [anon_sym_GT_EQ] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1048), - [anon_sym_SLASH] = ACTIONS(1048), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1048), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [sym_none] = ACTIONS(1048), - [sym_undefined] = ACTIONS(1048), - [sym_sink] = ACTIONS(1048), - [sym_integer] = ACTIONS(1048), - [sym_float] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym_multiline_string] = ACTIONS(1046), - [sym_character] = ACTIONS(1046), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1046), + [sym__newline] = ACTIONS(447), }, [STATE(434)] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_identifier] = ACTIONS(1052), - [anon_sym_COLON_COLON] = ACTIONS(1050), - [anon_sym_import] = ACTIONS(1052), - [anon_sym_test] = ACTIONS(1052), - [anon_sym_hide] = ACTIONS(1052), - [anon_sym_func] = ACTIONS(1052), - [anon_sym_c_func] = ACTIONS(1052), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1052), - [anon_sym_struct] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_QMARK] = ACTIONS(1050), - [anon_sym_AT] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym_RBRACK] = ACTIONS(1050), - [anon_sym_void] = ACTIONS(1052), - [anon_sym_anyopaque] = ACTIONS(1052), - [anon_sym_bool] = ACTIONS(1052), - [anon_sym_int] = ACTIONS(1052), - [anon_sym_uint] = ACTIONS(1052), - [anon_sym_float] = ACTIONS(1052), - [anon_sym_range] = ACTIONS(1052), - [anon_sym_i8] = ACTIONS(1052), - [anon_sym_i16] = ACTIONS(1052), - [anon_sym_i32] = ACTIONS(1052), - [anon_sym_i64] = ACTIONS(1052), - [anon_sym_u8] = ACTIONS(1052), - [anon_sym_u16] = ACTIONS(1052), - [anon_sym_u32] = ACTIONS(1052), - [anon_sym_u64] = ACTIONS(1052), - [anon_sym_isize] = ACTIONS(1052), - [anon_sym_usize] = ACTIONS(1052), - [anon_sym_f32] = ACTIONS(1052), - [anon_sym_f64] = ACTIONS(1052), - [anon_sym_c_char] = ACTIONS(1052), - [anon_sym_c_schar] = ACTIONS(1052), - [anon_sym_c_uchar] = ACTIONS(1052), - [anon_sym_c_short] = ACTIONS(1052), - [anon_sym_c_ushort] = ACTIONS(1052), - [anon_sym_c_int] = ACTIONS(1052), - [anon_sym_c_uint] = ACTIONS(1052), - [anon_sym_c_long] = ACTIONS(1052), - [anon_sym_c_ulong] = ACTIONS(1052), - [anon_sym_c_longlong] = ACTIONS(1052), - [anon_sym_c_ulonglong] = ACTIONS(1052), - [anon_sym_c_float] = ACTIONS(1052), - [anon_sym_c_double] = ACTIONS(1052), - [anon_sym_c_longdouble] = ACTIONS(1052), - [anon_sym_PLUS_EQ] = ACTIONS(1050), - [anon_sym_DASH_EQ] = ACTIONS(1050), - [anon_sym_STAR_EQ] = ACTIONS(1050), - [anon_sym_SLASH_EQ] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1052), - [anon_sym_yield] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1052), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_defer] = ACTIONS(1052), - [anon_sym_errdefer] = ACTIONS(1052), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(1052), - [anon_sym_while] = ACTIONS(1052), - [anon_sym_expand] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1052), - [anon_sym_match] = ACTIONS(1052), - [anon_sym_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), - [anon_sym_orelse] = ACTIONS(1052), - [anon_sym_catch] = ACTIONS(1052), - [anon_sym_or] = ACTIONS(1052), - [anon_sym_and] = ACTIONS(1052), - [anon_sym_EQ_EQ] = ACTIONS(1050), - [anon_sym_BANG_EQ] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1052), - [anon_sym_LT_EQ] = ACTIONS(1050), - [anon_sym_GT] = ACTIONS(1052), - [anon_sym_GT_EQ] = ACTIONS(1050), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_SLASH] = ACTIONS(1052), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1052), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [sym_none] = ACTIONS(1052), - [sym_undefined] = ACTIONS(1052), - [sym_sink] = ACTIONS(1052), - [sym_integer] = ACTIONS(1052), - [sym_float] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym_multiline_string] = ACTIONS(1050), - [sym_character] = ACTIONS(1050), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(440), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1050), + [sym__newline] = ACTIONS(1411), }, [STATE(435)] = { - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1054), - [anon_sym_import] = ACTIONS(1056), - [anon_sym_test] = ACTIONS(1056), - [anon_sym_hide] = ACTIONS(1056), - [anon_sym_func] = ACTIONS(1056), - [anon_sym_c_func] = ACTIONS(1056), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_struct] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1054), - [anon_sym_AT] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1054), - [anon_sym_RBRACK] = ACTIONS(1054), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_anyopaque] = ACTIONS(1056), - [anon_sym_bool] = ACTIONS(1056), - [anon_sym_int] = ACTIONS(1056), - [anon_sym_uint] = ACTIONS(1056), - [anon_sym_float] = ACTIONS(1056), - [anon_sym_range] = ACTIONS(1056), - [anon_sym_i8] = ACTIONS(1056), - [anon_sym_i16] = ACTIONS(1056), - [anon_sym_i32] = ACTIONS(1056), - [anon_sym_i64] = ACTIONS(1056), - [anon_sym_u8] = ACTIONS(1056), - [anon_sym_u16] = ACTIONS(1056), - [anon_sym_u32] = ACTIONS(1056), - [anon_sym_u64] = ACTIONS(1056), - [anon_sym_isize] = ACTIONS(1056), - [anon_sym_usize] = ACTIONS(1056), - [anon_sym_f32] = ACTIONS(1056), - [anon_sym_f64] = ACTIONS(1056), - [anon_sym_c_char] = ACTIONS(1056), - [anon_sym_c_schar] = ACTIONS(1056), - [anon_sym_c_uchar] = ACTIONS(1056), - [anon_sym_c_short] = ACTIONS(1056), - [anon_sym_c_ushort] = ACTIONS(1056), - [anon_sym_c_int] = ACTIONS(1056), - [anon_sym_c_uint] = ACTIONS(1056), - [anon_sym_c_long] = ACTIONS(1056), - [anon_sym_c_ulong] = ACTIONS(1056), - [anon_sym_c_longlong] = ACTIONS(1056), - [anon_sym_c_ulonglong] = ACTIONS(1056), - [anon_sym_c_float] = ACTIONS(1056), - [anon_sym_c_double] = ACTIONS(1056), - [anon_sym_c_longdouble] = ACTIONS(1056), - [anon_sym_PLUS_EQ] = ACTIONS(1054), - [anon_sym_DASH_EQ] = ACTIONS(1054), - [anon_sym_STAR_EQ] = ACTIONS(1054), - [anon_sym_SLASH_EQ] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1056), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_COLON] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1056), - [anon_sym_continue] = ACTIONS(1056), - [anon_sym_defer] = ACTIONS(1056), - [anon_sym_errdefer] = ACTIONS(1056), - [anon_sym_if] = ACTIONS(1056), - [anon_sym_else] = ACTIONS(1056), - [anon_sym_while] = ACTIONS(1056), - [anon_sym_expand] = ACTIONS(1056), - [anon_sym_for] = ACTIONS(1056), - [anon_sym_match] = ACTIONS(1056), - [anon_sym_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), - [anon_sym_orelse] = ACTIONS(1056), - [anon_sym_catch] = ACTIONS(1056), - [anon_sym_or] = ACTIONS(1056), - [anon_sym_and] = ACTIONS(1056), - [anon_sym_EQ_EQ] = ACTIONS(1054), - [anon_sym_BANG_EQ] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1056), - [anon_sym_LT_EQ] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1056), - [anon_sym_GT_EQ] = ACTIONS(1054), - [anon_sym_PLUS] = ACTIONS(1056), - [anon_sym_SLASH] = ACTIONS(1056), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1056), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [sym_none] = ACTIONS(1056), - [sym_undefined] = ACTIONS(1056), - [sym_sink] = ACTIONS(1056), - [sym_integer] = ACTIONS(1056), - [sym_float] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym_multiline_string] = ACTIONS(1054), - [sym_character] = ACTIONS(1054), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1054), + [sym__newline] = ACTIONS(447), }, [STATE(436)] = { - [ts_builtin_sym_end] = ACTIONS(1060), - [sym_identifier] = ACTIONS(1062), - [anon_sym_COLON_COLON] = ACTIONS(1060), - [anon_sym_import] = ACTIONS(1062), - [anon_sym_test] = ACTIONS(1062), - [anon_sym_hide] = ACTIONS(1062), - [anon_sym_func] = ACTIONS(1062), - [anon_sym_c_func] = ACTIONS(1062), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1060), - [anon_sym_STAR] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_void] = ACTIONS(1062), - [anon_sym_anyopaque] = ACTIONS(1062), - [anon_sym_bool] = ACTIONS(1062), - [anon_sym_int] = ACTIONS(1062), - [anon_sym_uint] = ACTIONS(1062), - [anon_sym_float] = ACTIONS(1062), - [anon_sym_range] = ACTIONS(1062), - [anon_sym_i8] = ACTIONS(1062), - [anon_sym_i16] = ACTIONS(1062), - [anon_sym_i32] = ACTIONS(1062), - [anon_sym_i64] = ACTIONS(1062), - [anon_sym_u8] = ACTIONS(1062), - [anon_sym_u16] = ACTIONS(1062), - [anon_sym_u32] = ACTIONS(1062), - [anon_sym_u64] = ACTIONS(1062), - [anon_sym_isize] = ACTIONS(1062), - [anon_sym_usize] = ACTIONS(1062), - [anon_sym_f32] = ACTIONS(1062), - [anon_sym_f64] = ACTIONS(1062), - [anon_sym_c_char] = ACTIONS(1062), - [anon_sym_c_schar] = ACTIONS(1062), - [anon_sym_c_uchar] = ACTIONS(1062), - [anon_sym_c_short] = ACTIONS(1062), - [anon_sym_c_ushort] = ACTIONS(1062), - [anon_sym_c_int] = ACTIONS(1062), - [anon_sym_c_uint] = ACTIONS(1062), - [anon_sym_c_long] = ACTIONS(1062), - [anon_sym_c_ulong] = ACTIONS(1062), - [anon_sym_c_longlong] = ACTIONS(1062), - [anon_sym_c_ulonglong] = ACTIONS(1062), - [anon_sym_c_float] = ACTIONS(1062), - [anon_sym_c_double] = ACTIONS(1062), - [anon_sym_c_longdouble] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1060), - [anon_sym_DASH_EQ] = ACTIONS(1060), - [anon_sym_STAR_EQ] = ACTIONS(1060), - [anon_sym_SLASH_EQ] = ACTIONS(1060), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_yield] = ACTIONS(1062), - [anon_sym_COLON] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_defer] = ACTIONS(1062), - [anon_sym_errdefer] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_expand] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_match] = ACTIONS(1062), - [anon_sym_DOT_DOT] = ACTIONS(1062), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), - [anon_sym_orelse] = ACTIONS(1062), - [anon_sym_catch] = ACTIONS(1062), - [anon_sym_or] = ACTIONS(1062), - [anon_sym_and] = ACTIONS(1062), - [anon_sym_EQ_EQ] = ACTIONS(1060), - [anon_sym_BANG_EQ] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1062), - [anon_sym_LT_EQ] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1062), - [anon_sym_GT_EQ] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_SLASH] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_DOT] = ACTIONS(1062), - [anon_sym_CARET] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1062), - [anon_sym_false] = ACTIONS(1062), - [sym_none] = ACTIONS(1062), - [sym_undefined] = ACTIONS(1062), - [sym_sink] = ACTIONS(1062), - [sym_integer] = ACTIONS(1062), - [sym_float] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym_multiline_string] = ACTIONS(1060), - [sym_character] = ACTIONS(1060), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(443), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1060), + [sym__newline] = ACTIONS(1413), }, [STATE(437)] = { - [ts_builtin_sym_end] = ACTIONS(1064), - [sym_identifier] = ACTIONS(1066), - [anon_sym_COLON_COLON] = ACTIONS(1064), - [anon_sym_import] = ACTIONS(1066), - [anon_sym_test] = ACTIONS(1066), - [anon_sym_hide] = ACTIONS(1066), - [anon_sym_func] = ACTIONS(1066), - [anon_sym_c_func] = ACTIONS(1066), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_EQ] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1064), - [anon_sym_RPAREN] = ACTIONS(1064), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_COMMA] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_PIPE] = ACTIONS(1064), - [anon_sym_QMARK] = ACTIONS(1064), - [anon_sym_AT] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_RBRACK] = ACTIONS(1064), - [anon_sym_void] = ACTIONS(1066), - [anon_sym_anyopaque] = ACTIONS(1066), - [anon_sym_bool] = ACTIONS(1066), - [anon_sym_int] = ACTIONS(1066), - [anon_sym_uint] = ACTIONS(1066), - [anon_sym_float] = ACTIONS(1066), - [anon_sym_range] = ACTIONS(1066), - [anon_sym_i8] = ACTIONS(1066), - [anon_sym_i16] = ACTIONS(1066), - [anon_sym_i32] = ACTIONS(1066), - [anon_sym_i64] = ACTIONS(1066), - [anon_sym_u8] = ACTIONS(1066), - [anon_sym_u16] = ACTIONS(1066), - [anon_sym_u32] = ACTIONS(1066), - [anon_sym_u64] = ACTIONS(1066), - [anon_sym_isize] = ACTIONS(1066), - [anon_sym_usize] = ACTIONS(1066), - [anon_sym_f32] = ACTIONS(1066), - [anon_sym_f64] = ACTIONS(1066), - [anon_sym_c_char] = ACTIONS(1066), - [anon_sym_c_schar] = ACTIONS(1066), - [anon_sym_c_uchar] = ACTIONS(1066), - [anon_sym_c_short] = ACTIONS(1066), - [anon_sym_c_ushort] = ACTIONS(1066), - [anon_sym_c_int] = ACTIONS(1066), - [anon_sym_c_uint] = ACTIONS(1066), - [anon_sym_c_long] = ACTIONS(1066), - [anon_sym_c_ulong] = ACTIONS(1066), - [anon_sym_c_longlong] = ACTIONS(1066), - [anon_sym_c_ulonglong] = ACTIONS(1066), - [anon_sym_c_float] = ACTIONS(1066), - [anon_sym_c_double] = ACTIONS(1066), - [anon_sym_c_longdouble] = ACTIONS(1066), - [anon_sym_PLUS_EQ] = ACTIONS(1064), - [anon_sym_DASH_EQ] = ACTIONS(1064), - [anon_sym_STAR_EQ] = ACTIONS(1064), - [anon_sym_SLASH_EQ] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_yield] = ACTIONS(1066), - [anon_sym_COLON] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_defer] = ACTIONS(1066), - [anon_sym_errdefer] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_else] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_expand] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_match] = ACTIONS(1066), - [anon_sym_DOT_DOT] = ACTIONS(1066), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [anon_sym_orelse] = ACTIONS(1066), - [anon_sym_catch] = ACTIONS(1066), - [anon_sym_or] = ACTIONS(1066), - [anon_sym_and] = ACTIONS(1066), - [anon_sym_EQ_EQ] = ACTIONS(1064), - [anon_sym_BANG_EQ] = ACTIONS(1064), - [anon_sym_LT] = ACTIONS(1066), - [anon_sym_LT_EQ] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1066), - [anon_sym_GT_EQ] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_SLASH] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_try] = ACTIONS(1066), - [anon_sym_DOT] = ACTIONS(1066), - [anon_sym_CARET] = ACTIONS(1064), - [anon_sym_true] = ACTIONS(1066), - [anon_sym_false] = ACTIONS(1066), - [sym_none] = ACTIONS(1066), - [sym_undefined] = ACTIONS(1066), - [sym_sink] = ACTIONS(1066), - [sym_integer] = ACTIONS(1066), - [sym_float] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1064), - [sym_multiline_string] = ACTIONS(1064), - [sym_character] = ACTIONS(1064), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1064), + [sym__newline] = ACTIONS(447), }, [STATE(438)] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_identifier] = ACTIONS(1070), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1070), - [anon_sym_test] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_func] = ACTIONS(1070), - [anon_sym_c_func] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_struct] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_AT] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_void] = ACTIONS(1070), - [anon_sym_anyopaque] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_int] = ACTIONS(1070), - [anon_sym_uint] = ACTIONS(1070), - [anon_sym_float] = ACTIONS(1070), - [anon_sym_range] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_c_char] = ACTIONS(1070), - [anon_sym_c_schar] = ACTIONS(1070), - [anon_sym_c_uchar] = ACTIONS(1070), - [anon_sym_c_short] = ACTIONS(1070), - [anon_sym_c_ushort] = ACTIONS(1070), - [anon_sym_c_int] = ACTIONS(1070), - [anon_sym_c_uint] = ACTIONS(1070), - [anon_sym_c_long] = ACTIONS(1070), - [anon_sym_c_ulong] = ACTIONS(1070), - [anon_sym_c_longlong] = ACTIONS(1070), - [anon_sym_c_ulonglong] = ACTIONS(1070), - [anon_sym_c_float] = ACTIONS(1070), - [anon_sym_c_double] = ACTIONS(1070), - [anon_sym_c_longdouble] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1068), - [anon_sym_DASH_EQ] = ACTIONS(1068), - [anon_sym_STAR_EQ] = ACTIONS(1068), - [anon_sym_SLASH_EQ] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_yield] = ACTIONS(1070), - [anon_sym_COLON] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_defer] = ACTIONS(1070), - [anon_sym_errdefer] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_expand] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), - [anon_sym_orelse] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1068), - [anon_sym_BANG_EQ] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_none] = ACTIONS(1070), - [sym_undefined] = ACTIONS(1070), - [sym_sink] = ACTIONS(1070), - [sym_integer] = ACTIONS(1070), - [sym_float] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_multiline_string] = ACTIONS(1068), - [sym_character] = ACTIONS(1068), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1068), + [sym__newline] = ACTIONS(447), }, [STATE(439)] = { - [ts_builtin_sym_end] = ACTIONS(1072), - [sym_identifier] = ACTIONS(1074), - [anon_sym_COLON_COLON] = ACTIONS(1072), - [anon_sym_import] = ACTIONS(1074), - [anon_sym_test] = ACTIONS(1074), - [anon_sym_hide] = ACTIONS(1074), - [anon_sym_func] = ACTIONS(1074), - [anon_sym_c_func] = ACTIONS(1074), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_EQ] = ACTIONS(1074), - [anon_sym_struct] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(1072), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_QMARK] = ACTIONS(1072), - [anon_sym_AT] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_RBRACK] = ACTIONS(1072), - [anon_sym_void] = ACTIONS(1074), - [anon_sym_anyopaque] = ACTIONS(1074), - [anon_sym_bool] = ACTIONS(1074), - [anon_sym_int] = ACTIONS(1074), - [anon_sym_uint] = ACTIONS(1074), - [anon_sym_float] = ACTIONS(1074), - [anon_sym_range] = ACTIONS(1074), - [anon_sym_i8] = ACTIONS(1074), - [anon_sym_i16] = ACTIONS(1074), - [anon_sym_i32] = ACTIONS(1074), - [anon_sym_i64] = ACTIONS(1074), - [anon_sym_u8] = ACTIONS(1074), - [anon_sym_u16] = ACTIONS(1074), - [anon_sym_u32] = ACTIONS(1074), - [anon_sym_u64] = ACTIONS(1074), - [anon_sym_isize] = ACTIONS(1074), - [anon_sym_usize] = ACTIONS(1074), - [anon_sym_f32] = ACTIONS(1074), - [anon_sym_f64] = ACTIONS(1074), - [anon_sym_c_char] = ACTIONS(1074), - [anon_sym_c_schar] = ACTIONS(1074), - [anon_sym_c_uchar] = ACTIONS(1074), - [anon_sym_c_short] = ACTIONS(1074), - [anon_sym_c_ushort] = ACTIONS(1074), - [anon_sym_c_int] = ACTIONS(1074), - [anon_sym_c_uint] = ACTIONS(1074), - [anon_sym_c_long] = ACTIONS(1074), - [anon_sym_c_ulong] = ACTIONS(1074), - [anon_sym_c_longlong] = ACTIONS(1074), - [anon_sym_c_ulonglong] = ACTIONS(1074), - [anon_sym_c_float] = ACTIONS(1074), - [anon_sym_c_double] = ACTIONS(1074), - [anon_sym_c_longdouble] = ACTIONS(1074), - [anon_sym_PLUS_EQ] = ACTIONS(1072), - [anon_sym_DASH_EQ] = ACTIONS(1072), - [anon_sym_STAR_EQ] = ACTIONS(1072), - [anon_sym_SLASH_EQ] = ACTIONS(1072), - [anon_sym_return] = ACTIONS(1074), - [anon_sym_yield] = ACTIONS(1074), - [anon_sym_COLON] = ACTIONS(1074), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_defer] = ACTIONS(1074), - [anon_sym_errdefer] = ACTIONS(1074), - [anon_sym_if] = ACTIONS(1074), - [anon_sym_else] = ACTIONS(1074), - [anon_sym_while] = ACTIONS(1074), - [anon_sym_expand] = ACTIONS(1074), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_match] = ACTIONS(1074), - [anon_sym_DOT_DOT] = ACTIONS(1074), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), - [anon_sym_orelse] = ACTIONS(1074), - [anon_sym_catch] = ACTIONS(1074), - [anon_sym_or] = ACTIONS(1074), - [anon_sym_and] = ACTIONS(1074), - [anon_sym_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1072), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1074), - [anon_sym_SLASH] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1072), - [anon_sym_try] = ACTIONS(1074), - [anon_sym_DOT] = ACTIONS(1074), - [anon_sym_CARET] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1074), - [anon_sym_false] = ACTIONS(1074), - [sym_none] = ACTIONS(1074), - [sym_undefined] = ACTIONS(1074), - [sym_sink] = ACTIONS(1074), - [sym_integer] = ACTIONS(1074), - [sym_float] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym_multiline_string] = ACTIONS(1072), - [sym_character] = ACTIONS(1072), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1072), + [sym__newline] = ACTIONS(1415), }, [STATE(440)] = { - [ts_builtin_sym_end] = ACTIONS(1076), - [sym_identifier] = ACTIONS(1078), - [anon_sym_COLON_COLON] = ACTIONS(1076), - [anon_sym_import] = ACTIONS(1078), - [anon_sym_test] = ACTIONS(1078), - [anon_sym_hide] = ACTIONS(1078), - [anon_sym_func] = ACTIONS(1078), - [anon_sym_c_func] = ACTIONS(1078), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_EQ] = ACTIONS(1078), - [anon_sym_struct] = ACTIONS(1078), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_RPAREN] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_COMMA] = ACTIONS(1076), - [anon_sym_RBRACE] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_DOLLAR] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_QMARK] = ACTIONS(1076), - [anon_sym_AT] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1076), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_RBRACK] = ACTIONS(1076), - [anon_sym_void] = ACTIONS(1078), - [anon_sym_anyopaque] = ACTIONS(1078), - [anon_sym_bool] = ACTIONS(1078), - [anon_sym_int] = ACTIONS(1078), - [anon_sym_uint] = ACTIONS(1078), - [anon_sym_float] = ACTIONS(1078), - [anon_sym_range] = ACTIONS(1078), - [anon_sym_i8] = ACTIONS(1078), - [anon_sym_i16] = ACTIONS(1078), - [anon_sym_i32] = ACTIONS(1078), - [anon_sym_i64] = ACTIONS(1078), - [anon_sym_u8] = ACTIONS(1078), - [anon_sym_u16] = ACTIONS(1078), - [anon_sym_u32] = ACTIONS(1078), - [anon_sym_u64] = ACTIONS(1078), - [anon_sym_isize] = ACTIONS(1078), - [anon_sym_usize] = ACTIONS(1078), - [anon_sym_f32] = ACTIONS(1078), - [anon_sym_f64] = ACTIONS(1078), - [anon_sym_c_char] = ACTIONS(1078), - [anon_sym_c_schar] = ACTIONS(1078), - [anon_sym_c_uchar] = ACTIONS(1078), - [anon_sym_c_short] = ACTIONS(1078), - [anon_sym_c_ushort] = ACTIONS(1078), - [anon_sym_c_int] = ACTIONS(1078), - [anon_sym_c_uint] = ACTIONS(1078), - [anon_sym_c_long] = ACTIONS(1078), - [anon_sym_c_ulong] = ACTIONS(1078), - [anon_sym_c_longlong] = ACTIONS(1078), - [anon_sym_c_ulonglong] = ACTIONS(1078), - [anon_sym_c_float] = ACTIONS(1078), - [anon_sym_c_double] = ACTIONS(1078), - [anon_sym_c_longdouble] = ACTIONS(1078), - [anon_sym_PLUS_EQ] = ACTIONS(1076), - [anon_sym_DASH_EQ] = ACTIONS(1076), - [anon_sym_STAR_EQ] = ACTIONS(1076), - [anon_sym_SLASH_EQ] = ACTIONS(1076), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_yield] = ACTIONS(1078), - [anon_sym_COLON] = ACTIONS(1078), - [anon_sym_break] = ACTIONS(1078), - [anon_sym_continue] = ACTIONS(1078), - [anon_sym_defer] = ACTIONS(1078), - [anon_sym_errdefer] = ACTIONS(1078), - [anon_sym_if] = ACTIONS(1078), - [anon_sym_else] = ACTIONS(1078), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_expand] = ACTIONS(1078), - [anon_sym_for] = ACTIONS(1078), - [anon_sym_match] = ACTIONS(1078), - [anon_sym_DOT_DOT] = ACTIONS(1078), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), - [anon_sym_orelse] = ACTIONS(1078), - [anon_sym_catch] = ACTIONS(1078), - [anon_sym_or] = ACTIONS(1078), - [anon_sym_and] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1076), - [anon_sym_BANG_EQ] = ACTIONS(1076), - [anon_sym_LT] = ACTIONS(1078), - [anon_sym_LT_EQ] = ACTIONS(1076), - [anon_sym_GT] = ACTIONS(1078), - [anon_sym_GT_EQ] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1078), - [anon_sym_DOT] = ACTIONS(1078), - [anon_sym_CARET] = ACTIONS(1076), - [anon_sym_true] = ACTIONS(1078), - [anon_sym_false] = ACTIONS(1078), - [sym_none] = ACTIONS(1078), - [sym_undefined] = ACTIONS(1078), - [sym_sink] = ACTIONS(1078), - [sym_integer] = ACTIONS(1078), - [sym_float] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1076), - [sym_multiline_string] = ACTIONS(1076), - [sym_character] = ACTIONS(1076), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1076), + [sym__newline] = ACTIONS(447), }, [STATE(441)] = { - [sym_type] = STATE(2234), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1080), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(445), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(1417), }, [STATE(442)] = { - [ts_builtin_sym_end] = ACTIONS(1082), - [sym_identifier] = ACTIONS(1084), - [anon_sym_COLON_COLON] = ACTIONS(1082), - [anon_sym_import] = ACTIONS(1084), - [anon_sym_test] = ACTIONS(1084), - [anon_sym_hide] = ACTIONS(1084), - [anon_sym_func] = ACTIONS(1084), - [anon_sym_c_func] = ACTIONS(1084), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_EQ] = ACTIONS(1084), - [anon_sym_struct] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1082), - [anon_sym_LBRACE] = ACTIONS(1082), - [anon_sym_COMMA] = ACTIONS(1082), - [anon_sym_RBRACE] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1082), - [anon_sym_PIPE] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1082), - [anon_sym_AT] = ACTIONS(1082), - [anon_sym_STAR] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1082), - [anon_sym_SEMI] = ACTIONS(1082), - [anon_sym_RBRACK] = ACTIONS(1082), - [anon_sym_void] = ACTIONS(1084), - [anon_sym_anyopaque] = ACTIONS(1084), - [anon_sym_bool] = ACTIONS(1084), - [anon_sym_int] = ACTIONS(1084), - [anon_sym_uint] = ACTIONS(1084), - [anon_sym_float] = ACTIONS(1084), - [anon_sym_range] = ACTIONS(1084), - [anon_sym_i8] = ACTIONS(1084), - [anon_sym_i16] = ACTIONS(1084), - [anon_sym_i32] = ACTIONS(1084), - [anon_sym_i64] = ACTIONS(1084), - [anon_sym_u8] = ACTIONS(1084), - [anon_sym_u16] = ACTIONS(1084), - [anon_sym_u32] = ACTIONS(1084), - [anon_sym_u64] = ACTIONS(1084), - [anon_sym_isize] = ACTIONS(1084), - [anon_sym_usize] = ACTIONS(1084), - [anon_sym_f32] = ACTIONS(1084), - [anon_sym_f64] = ACTIONS(1084), - [anon_sym_c_char] = ACTIONS(1084), - [anon_sym_c_schar] = ACTIONS(1084), - [anon_sym_c_uchar] = ACTIONS(1084), - [anon_sym_c_short] = ACTIONS(1084), - [anon_sym_c_ushort] = ACTIONS(1084), - [anon_sym_c_int] = ACTIONS(1084), - [anon_sym_c_uint] = ACTIONS(1084), - [anon_sym_c_long] = ACTIONS(1084), - [anon_sym_c_ulong] = ACTIONS(1084), - [anon_sym_c_longlong] = ACTIONS(1084), - [anon_sym_c_ulonglong] = ACTIONS(1084), - [anon_sym_c_float] = ACTIONS(1084), - [anon_sym_c_double] = ACTIONS(1084), - [anon_sym_c_longdouble] = ACTIONS(1084), - [anon_sym_PLUS_EQ] = ACTIONS(1082), - [anon_sym_DASH_EQ] = ACTIONS(1082), - [anon_sym_STAR_EQ] = ACTIONS(1082), - [anon_sym_SLASH_EQ] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_COLON] = ACTIONS(1084), - [anon_sym_break] = ACTIONS(1084), - [anon_sym_continue] = ACTIONS(1084), - [anon_sym_defer] = ACTIONS(1084), - [anon_sym_errdefer] = ACTIONS(1084), - [anon_sym_if] = ACTIONS(1084), - [anon_sym_else] = ACTIONS(1084), - [anon_sym_while] = ACTIONS(1084), - [anon_sym_expand] = ACTIONS(1084), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_match] = ACTIONS(1084), - [anon_sym_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1082), - [anon_sym_orelse] = ACTIONS(1084), - [anon_sym_catch] = ACTIONS(1084), - [anon_sym_or] = ACTIONS(1084), - [anon_sym_and] = ACTIONS(1084), - [anon_sym_EQ_EQ] = ACTIONS(1082), - [anon_sym_BANG_EQ] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_LT_EQ] = ACTIONS(1082), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_EQ] = ACTIONS(1082), - [anon_sym_PLUS] = ACTIONS(1084), - [anon_sym_SLASH] = ACTIONS(1084), - [anon_sym_AMP] = ACTIONS(1082), - [anon_sym_try] = ACTIONS(1084), - [anon_sym_DOT] = ACTIONS(1084), - [anon_sym_CARET] = ACTIONS(1082), - [anon_sym_true] = ACTIONS(1084), - [anon_sym_false] = ACTIONS(1084), - [sym_none] = ACTIONS(1084), - [sym_undefined] = ACTIONS(1084), - [sym_sink] = ACTIONS(1084), - [sym_integer] = ACTIONS(1084), - [sym_float] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1082), - [sym_multiline_string] = ACTIONS(1082), - [sym_character] = ACTIONS(1082), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(446), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1082), + [sym__newline] = ACTIONS(1419), }, [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_identifier] = ACTIONS(1088), - [anon_sym_COLON_COLON] = ACTIONS(1086), - [anon_sym_import] = ACTIONS(1088), - [anon_sym_test] = ACTIONS(1088), - [anon_sym_hide] = ACTIONS(1088), - [anon_sym_func] = ACTIONS(1088), - [anon_sym_c_func] = ACTIONS(1088), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_EQ] = ACTIONS(1088), - [anon_sym_struct] = ACTIONS(1088), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1086), - [anon_sym_LBRACE] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1086), - [anon_sym_RBRACE] = ACTIONS(1086), - [anon_sym_DASH] = ACTIONS(1088), - [anon_sym_DOLLAR] = ACTIONS(1086), - [anon_sym_PIPE] = ACTIONS(1086), - [anon_sym_QMARK] = ACTIONS(1086), - [anon_sym_AT] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1086), - [anon_sym_SEMI] = ACTIONS(1086), - [anon_sym_RBRACK] = ACTIONS(1086), - [anon_sym_void] = ACTIONS(1088), - [anon_sym_anyopaque] = ACTIONS(1088), - [anon_sym_bool] = ACTIONS(1088), - [anon_sym_int] = ACTIONS(1088), - [anon_sym_uint] = ACTIONS(1088), - [anon_sym_float] = ACTIONS(1088), - [anon_sym_range] = ACTIONS(1088), - [anon_sym_i8] = ACTIONS(1088), - [anon_sym_i16] = ACTIONS(1088), - [anon_sym_i32] = ACTIONS(1088), - [anon_sym_i64] = ACTIONS(1088), - [anon_sym_u8] = ACTIONS(1088), - [anon_sym_u16] = ACTIONS(1088), - [anon_sym_u32] = ACTIONS(1088), - [anon_sym_u64] = ACTIONS(1088), - [anon_sym_isize] = ACTIONS(1088), - [anon_sym_usize] = ACTIONS(1088), - [anon_sym_f32] = ACTIONS(1088), - [anon_sym_f64] = ACTIONS(1088), - [anon_sym_c_char] = ACTIONS(1088), - [anon_sym_c_schar] = ACTIONS(1088), - [anon_sym_c_uchar] = ACTIONS(1088), - [anon_sym_c_short] = ACTIONS(1088), - [anon_sym_c_ushort] = ACTIONS(1088), - [anon_sym_c_int] = ACTIONS(1088), - [anon_sym_c_uint] = ACTIONS(1088), - [anon_sym_c_long] = ACTIONS(1088), - [anon_sym_c_ulong] = ACTIONS(1088), - [anon_sym_c_longlong] = ACTIONS(1088), - [anon_sym_c_ulonglong] = ACTIONS(1088), - [anon_sym_c_float] = ACTIONS(1088), - [anon_sym_c_double] = ACTIONS(1088), - [anon_sym_c_longdouble] = ACTIONS(1088), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_return] = ACTIONS(1088), - [anon_sym_yield] = ACTIONS(1088), - [anon_sym_COLON] = ACTIONS(1088), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_defer] = ACTIONS(1088), - [anon_sym_errdefer] = ACTIONS(1088), - [anon_sym_if] = ACTIONS(1088), - [anon_sym_else] = ACTIONS(1088), - [anon_sym_while] = ACTIONS(1088), - [anon_sym_expand] = ACTIONS(1088), - [anon_sym_for] = ACTIONS(1088), - [anon_sym_match] = ACTIONS(1088), - [anon_sym_DOT_DOT] = ACTIONS(1088), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_orelse] = ACTIONS(1088), - [anon_sym_catch] = ACTIONS(1088), - [anon_sym_or] = ACTIONS(1088), - [anon_sym_and] = ACTIONS(1088), - [anon_sym_EQ_EQ] = ACTIONS(1086), - [anon_sym_BANG_EQ] = ACTIONS(1086), - [anon_sym_LT] = ACTIONS(1088), - [anon_sym_LT_EQ] = ACTIONS(1086), - [anon_sym_GT] = ACTIONS(1088), - [anon_sym_GT_EQ] = ACTIONS(1086), - [anon_sym_PLUS] = ACTIONS(1088), - [anon_sym_SLASH] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(1086), - [anon_sym_try] = ACTIONS(1088), - [anon_sym_DOT] = ACTIONS(1088), - [anon_sym_CARET] = ACTIONS(1086), - [anon_sym_true] = ACTIONS(1088), - [anon_sym_false] = ACTIONS(1088), - [sym_none] = ACTIONS(1088), - [sym_undefined] = ACTIONS(1088), - [sym_sink] = ACTIONS(1088), - [sym_integer] = ACTIONS(1088), - [sym_float] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(1086), - [sym_multiline_string] = ACTIONS(1086), - [sym_character] = ACTIONS(1086), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1086), + [sym__newline] = ACTIONS(447), }, [STATE(444)] = { - [ts_builtin_sym_end] = ACTIONS(1090), - [sym_identifier] = ACTIONS(1092), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_import] = ACTIONS(1092), - [anon_sym_test] = ACTIONS(1092), - [anon_sym_hide] = ACTIONS(1092), - [anon_sym_func] = ACTIONS(1092), - [anon_sym_c_func] = ACTIONS(1092), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_EQ] = ACTIONS(1092), - [anon_sym_struct] = ACTIONS(1092), - [anon_sym_LPAREN] = ACTIONS(1090), - [anon_sym_RPAREN] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_COMMA] = ACTIONS(1090), - [anon_sym_RBRACE] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_PIPE] = ACTIONS(1090), - [anon_sym_QMARK] = ACTIONS(1090), - [anon_sym_AT] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1092), - [anon_sym_LBRACK] = ACTIONS(1090), - [anon_sym_SEMI] = ACTIONS(1090), - [anon_sym_RBRACK] = ACTIONS(1090), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_anyopaque] = ACTIONS(1092), - [anon_sym_bool] = ACTIONS(1092), - [anon_sym_int] = ACTIONS(1092), - [anon_sym_uint] = ACTIONS(1092), - [anon_sym_float] = ACTIONS(1092), - [anon_sym_range] = ACTIONS(1092), - [anon_sym_i8] = ACTIONS(1092), - [anon_sym_i16] = ACTIONS(1092), - [anon_sym_i32] = ACTIONS(1092), - [anon_sym_i64] = ACTIONS(1092), - [anon_sym_u8] = ACTIONS(1092), - [anon_sym_u16] = ACTIONS(1092), - [anon_sym_u32] = ACTIONS(1092), - [anon_sym_u64] = ACTIONS(1092), - [anon_sym_isize] = ACTIONS(1092), - [anon_sym_usize] = ACTIONS(1092), - [anon_sym_f32] = ACTIONS(1092), - [anon_sym_f64] = ACTIONS(1092), - [anon_sym_c_char] = ACTIONS(1092), - [anon_sym_c_schar] = ACTIONS(1092), - [anon_sym_c_uchar] = ACTIONS(1092), - [anon_sym_c_short] = ACTIONS(1092), - [anon_sym_c_ushort] = ACTIONS(1092), - [anon_sym_c_int] = ACTIONS(1092), - [anon_sym_c_uint] = ACTIONS(1092), - [anon_sym_c_long] = ACTIONS(1092), - [anon_sym_c_ulong] = ACTIONS(1092), - [anon_sym_c_longlong] = ACTIONS(1092), - [anon_sym_c_ulonglong] = ACTIONS(1092), - [anon_sym_c_float] = ACTIONS(1092), - [anon_sym_c_double] = ACTIONS(1092), - [anon_sym_c_longdouble] = ACTIONS(1092), - [anon_sym_PLUS_EQ] = ACTIONS(1090), - [anon_sym_DASH_EQ] = ACTIONS(1090), - [anon_sym_STAR_EQ] = ACTIONS(1090), - [anon_sym_SLASH_EQ] = ACTIONS(1090), - [anon_sym_return] = ACTIONS(1092), - [anon_sym_yield] = ACTIONS(1092), - [anon_sym_COLON] = ACTIONS(1092), - [anon_sym_break] = ACTIONS(1092), - [anon_sym_continue] = ACTIONS(1092), - [anon_sym_defer] = ACTIONS(1092), - [anon_sym_errdefer] = ACTIONS(1092), - [anon_sym_if] = ACTIONS(1092), - [anon_sym_else] = ACTIONS(1092), - [anon_sym_while] = ACTIONS(1092), - [anon_sym_expand] = ACTIONS(1092), - [anon_sym_for] = ACTIONS(1092), - [anon_sym_match] = ACTIONS(1092), - [anon_sym_DOT_DOT] = ACTIONS(1092), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), - [anon_sym_orelse] = ACTIONS(1092), - [anon_sym_catch] = ACTIONS(1092), - [anon_sym_or] = ACTIONS(1092), - [anon_sym_and] = ACTIONS(1092), - [anon_sym_EQ_EQ] = ACTIONS(1090), - [anon_sym_BANG_EQ] = ACTIONS(1090), - [anon_sym_LT] = ACTIONS(1092), - [anon_sym_LT_EQ] = ACTIONS(1090), - [anon_sym_GT] = ACTIONS(1092), - [anon_sym_GT_EQ] = ACTIONS(1090), - [anon_sym_PLUS] = ACTIONS(1092), - [anon_sym_SLASH] = ACTIONS(1092), - [anon_sym_AMP] = ACTIONS(1090), - [anon_sym_try] = ACTIONS(1092), - [anon_sym_DOT] = ACTIONS(1092), - [anon_sym_CARET] = ACTIONS(1090), - [anon_sym_true] = ACTIONS(1092), - [anon_sym_false] = ACTIONS(1092), - [sym_none] = ACTIONS(1092), - [sym_undefined] = ACTIONS(1092), - [sym_sink] = ACTIONS(1092), - [sym_integer] = ACTIONS(1092), - [sym_float] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_multiline_string] = ACTIONS(1090), - [sym_character] = ACTIONS(1090), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1090), + [sym__newline] = ACTIONS(447), }, [STATE(445)] = { - [sym_struct_type] = STATE(1511), - [sym_c_struct_type] = STATE(1674), - [sym_distinct_type] = STATE(1674), - [sym_alias_type] = STATE(1674), - [sym_union_type] = STATE(1674), - [sym_enum_type] = STATE(1674), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1628), - [sym_labeled_block] = STATE(1628), - [sym_if_statement] = STATE(1628), - [sym_while_statement] = STATE(1628), - [sym_for_statement] = STATE(1628), - [sym_match_statement] = STATE(1628), - [sym__value] = STATE(1628), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(1096), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_c_struct] = ACTIONS(1098), - [sym_opaque_type] = ACTIONS(1100), - [anon_sym_distinct] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -59335,508 +62964,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_identifier] = ACTIONS(1112), - [anon_sym_COLON_COLON] = ACTIONS(1110), - [anon_sym_import] = ACTIONS(1112), - [anon_sym_test] = ACTIONS(1112), - [anon_sym_hide] = ACTIONS(1112), - [anon_sym_func] = ACTIONS(1112), - [anon_sym_c_func] = ACTIONS(1112), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_EQ] = ACTIONS(1112), - [anon_sym_struct] = ACTIONS(1112), - [anon_sym_LPAREN] = ACTIONS(1110), - [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_COMMA] = ACTIONS(1110), - [anon_sym_RBRACE] = ACTIONS(1110), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(1110), - [anon_sym_PIPE] = ACTIONS(1110), - [anon_sym_QMARK] = ACTIONS(1110), - [anon_sym_AT] = ACTIONS(1110), - [anon_sym_STAR] = ACTIONS(1112), - [anon_sym_LBRACK] = ACTIONS(1110), - [anon_sym_SEMI] = ACTIONS(1110), - [anon_sym_RBRACK] = ACTIONS(1110), - [anon_sym_void] = ACTIONS(1112), - [anon_sym_anyopaque] = ACTIONS(1112), - [anon_sym_bool] = ACTIONS(1112), - [anon_sym_int] = ACTIONS(1112), - [anon_sym_uint] = ACTIONS(1112), - [anon_sym_float] = ACTIONS(1112), - [anon_sym_range] = ACTIONS(1112), - [anon_sym_i8] = ACTIONS(1112), - [anon_sym_i16] = ACTIONS(1112), - [anon_sym_i32] = ACTIONS(1112), - [anon_sym_i64] = ACTIONS(1112), - [anon_sym_u8] = ACTIONS(1112), - [anon_sym_u16] = ACTIONS(1112), - [anon_sym_u32] = ACTIONS(1112), - [anon_sym_u64] = ACTIONS(1112), - [anon_sym_isize] = ACTIONS(1112), - [anon_sym_usize] = ACTIONS(1112), - [anon_sym_f32] = ACTIONS(1112), - [anon_sym_f64] = ACTIONS(1112), - [anon_sym_c_char] = ACTIONS(1112), - [anon_sym_c_schar] = ACTIONS(1112), - [anon_sym_c_uchar] = ACTIONS(1112), - [anon_sym_c_short] = ACTIONS(1112), - [anon_sym_c_ushort] = ACTIONS(1112), - [anon_sym_c_int] = ACTIONS(1112), - [anon_sym_c_uint] = ACTIONS(1112), - [anon_sym_c_long] = ACTIONS(1112), - [anon_sym_c_ulong] = ACTIONS(1112), - [anon_sym_c_longlong] = ACTIONS(1112), - [anon_sym_c_ulonglong] = ACTIONS(1112), - [anon_sym_c_float] = ACTIONS(1112), - [anon_sym_c_double] = ACTIONS(1112), - [anon_sym_c_longdouble] = ACTIONS(1112), - [anon_sym_PLUS_EQ] = ACTIONS(1110), - [anon_sym_DASH_EQ] = ACTIONS(1110), - [anon_sym_STAR_EQ] = ACTIONS(1110), - [anon_sym_SLASH_EQ] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_yield] = ACTIONS(1112), - [anon_sym_COLON] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1112), - [anon_sym_continue] = ACTIONS(1112), - [anon_sym_defer] = ACTIONS(1112), - [anon_sym_errdefer] = ACTIONS(1112), - [anon_sym_if] = ACTIONS(1112), - [anon_sym_else] = ACTIONS(1112), - [anon_sym_while] = ACTIONS(1112), - [anon_sym_expand] = ACTIONS(1112), - [anon_sym_for] = ACTIONS(1112), - [anon_sym_match] = ACTIONS(1112), - [anon_sym_DOT_DOT] = ACTIONS(1112), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1110), - [anon_sym_orelse] = ACTIONS(1112), - [anon_sym_catch] = ACTIONS(1112), - [anon_sym_or] = ACTIONS(1112), - [anon_sym_and] = ACTIONS(1112), - [anon_sym_EQ_EQ] = ACTIONS(1110), - [anon_sym_BANG_EQ] = ACTIONS(1110), - [anon_sym_LT] = ACTIONS(1112), - [anon_sym_LT_EQ] = ACTIONS(1110), - [anon_sym_GT] = ACTIONS(1112), - [anon_sym_GT_EQ] = ACTIONS(1110), - [anon_sym_PLUS] = ACTIONS(1112), - [anon_sym_SLASH] = ACTIONS(1112), - [anon_sym_AMP] = ACTIONS(1110), - [anon_sym_try] = ACTIONS(1112), - [anon_sym_DOT] = ACTIONS(1112), - [anon_sym_CARET] = ACTIONS(1110), - [anon_sym_true] = ACTIONS(1112), - [anon_sym_false] = ACTIONS(1112), - [sym_none] = ACTIONS(1112), - [sym_undefined] = ACTIONS(1112), - [sym_sink] = ACTIONS(1112), - [sym_integer] = ACTIONS(1112), - [sym_float] = ACTIONS(1110), - [anon_sym_DQUOTE] = ACTIONS(1110), - [sym_multiline_string] = ACTIONS(1110), - [sym_character] = ACTIONS(1110), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1110), + [sym__newline] = ACTIONS(447), }, [STATE(447)] = { - [ts_builtin_sym_end] = ACTIONS(1114), - [sym_identifier] = ACTIONS(1116), - [anon_sym_COLON_COLON] = ACTIONS(1114), - [anon_sym_import] = ACTIONS(1116), - [anon_sym_test] = ACTIONS(1116), - [anon_sym_hide] = ACTIONS(1116), - [anon_sym_func] = ACTIONS(1116), - [anon_sym_c_func] = ACTIONS(1116), - [anon_sym_BANG] = ACTIONS(1116), - [anon_sym_EQ] = ACTIONS(1116), - [anon_sym_struct] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_DOLLAR] = ACTIONS(1114), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_QMARK] = ACTIONS(1114), - [anon_sym_AT] = ACTIONS(1114), - [anon_sym_STAR] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_RBRACK] = ACTIONS(1114), - [anon_sym_void] = ACTIONS(1116), - [anon_sym_anyopaque] = ACTIONS(1116), - [anon_sym_bool] = ACTIONS(1116), - [anon_sym_int] = ACTIONS(1116), - [anon_sym_uint] = ACTIONS(1116), - [anon_sym_float] = ACTIONS(1116), - [anon_sym_range] = ACTIONS(1116), - [anon_sym_i8] = ACTIONS(1116), - [anon_sym_i16] = ACTIONS(1116), - [anon_sym_i32] = ACTIONS(1116), - [anon_sym_i64] = ACTIONS(1116), - [anon_sym_u8] = ACTIONS(1116), - [anon_sym_u16] = ACTIONS(1116), - [anon_sym_u32] = ACTIONS(1116), - [anon_sym_u64] = ACTIONS(1116), - [anon_sym_isize] = ACTIONS(1116), - [anon_sym_usize] = ACTIONS(1116), - [anon_sym_f32] = ACTIONS(1116), - [anon_sym_f64] = ACTIONS(1116), - [anon_sym_c_char] = ACTIONS(1116), - [anon_sym_c_schar] = ACTIONS(1116), - [anon_sym_c_uchar] = ACTIONS(1116), - [anon_sym_c_short] = ACTIONS(1116), - [anon_sym_c_ushort] = ACTIONS(1116), - [anon_sym_c_int] = ACTIONS(1116), - [anon_sym_c_uint] = ACTIONS(1116), - [anon_sym_c_long] = ACTIONS(1116), - [anon_sym_c_ulong] = ACTIONS(1116), - [anon_sym_c_longlong] = ACTIONS(1116), - [anon_sym_c_ulonglong] = ACTIONS(1116), - [anon_sym_c_float] = ACTIONS(1116), - [anon_sym_c_double] = ACTIONS(1116), - [anon_sym_c_longdouble] = ACTIONS(1116), - [anon_sym_PLUS_EQ] = ACTIONS(1114), - [anon_sym_DASH_EQ] = ACTIONS(1114), - [anon_sym_STAR_EQ] = ACTIONS(1114), - [anon_sym_SLASH_EQ] = ACTIONS(1114), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_yield] = ACTIONS(1116), - [anon_sym_COLON] = ACTIONS(1116), - [anon_sym_break] = ACTIONS(1116), - [anon_sym_continue] = ACTIONS(1116), - [anon_sym_defer] = ACTIONS(1116), - [anon_sym_errdefer] = ACTIONS(1116), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_else] = ACTIONS(1116), - [anon_sym_while] = ACTIONS(1116), - [anon_sym_expand] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1116), - [anon_sym_match] = ACTIONS(1116), - [anon_sym_DOT_DOT] = ACTIONS(1116), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1114), - [anon_sym_orelse] = ACTIONS(1116), - [anon_sym_catch] = ACTIONS(1116), - [anon_sym_or] = ACTIONS(1116), - [anon_sym_and] = ACTIONS(1116), - [anon_sym_EQ_EQ] = ACTIONS(1114), - [anon_sym_BANG_EQ] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1116), - [anon_sym_LT_EQ] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1116), - [anon_sym_GT_EQ] = ACTIONS(1114), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_SLASH] = ACTIONS(1116), - [anon_sym_AMP] = ACTIONS(1114), - [anon_sym_try] = ACTIONS(1116), - [anon_sym_DOT] = ACTIONS(1116), - [anon_sym_CARET] = ACTIONS(1114), - [anon_sym_true] = ACTIONS(1116), - [anon_sym_false] = ACTIONS(1116), - [sym_none] = ACTIONS(1116), - [sym_undefined] = ACTIONS(1116), - [sym_sink] = ACTIONS(1116), - [sym_integer] = ACTIONS(1116), - [sym_float] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1114), - [sym_multiline_string] = ACTIONS(1114), - [sym_character] = ACTIONS(1114), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1114), + [sym__newline] = ACTIONS(1421), }, [STATE(448)] = { - [ts_builtin_sym_end] = ACTIONS(1118), - [sym_identifier] = ACTIONS(1120), - [anon_sym_COLON_COLON] = ACTIONS(1118), - [anon_sym_import] = ACTIONS(1120), - [anon_sym_test] = ACTIONS(1120), - [anon_sym_hide] = ACTIONS(1120), - [anon_sym_func] = ACTIONS(1120), - [anon_sym_c_func] = ACTIONS(1120), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_EQ] = ACTIONS(1120), - [anon_sym_struct] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_RBRACE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1120), - [anon_sym_DOLLAR] = ACTIONS(1118), - [anon_sym_PIPE] = ACTIONS(1118), - [anon_sym_QMARK] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(1118), - [anon_sym_STAR] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1118), - [anon_sym_SEMI] = ACTIONS(1118), - [anon_sym_RBRACK] = ACTIONS(1118), - [anon_sym_void] = ACTIONS(1120), - [anon_sym_anyopaque] = ACTIONS(1120), - [anon_sym_bool] = ACTIONS(1120), - [anon_sym_int] = ACTIONS(1120), - [anon_sym_uint] = ACTIONS(1120), - [anon_sym_float] = ACTIONS(1120), - [anon_sym_range] = ACTIONS(1120), - [anon_sym_i8] = ACTIONS(1120), - [anon_sym_i16] = ACTIONS(1120), - [anon_sym_i32] = ACTIONS(1120), - [anon_sym_i64] = ACTIONS(1120), - [anon_sym_u8] = ACTIONS(1120), - [anon_sym_u16] = ACTIONS(1120), - [anon_sym_u32] = ACTIONS(1120), - [anon_sym_u64] = ACTIONS(1120), - [anon_sym_isize] = ACTIONS(1120), - [anon_sym_usize] = ACTIONS(1120), - [anon_sym_f32] = ACTIONS(1120), - [anon_sym_f64] = ACTIONS(1120), - [anon_sym_c_char] = ACTIONS(1120), - [anon_sym_c_schar] = ACTIONS(1120), - [anon_sym_c_uchar] = ACTIONS(1120), - [anon_sym_c_short] = ACTIONS(1120), - [anon_sym_c_ushort] = ACTIONS(1120), - [anon_sym_c_int] = ACTIONS(1120), - [anon_sym_c_uint] = ACTIONS(1120), - [anon_sym_c_long] = ACTIONS(1120), - [anon_sym_c_ulong] = ACTIONS(1120), - [anon_sym_c_longlong] = ACTIONS(1120), - [anon_sym_c_ulonglong] = ACTIONS(1120), - [anon_sym_c_float] = ACTIONS(1120), - [anon_sym_c_double] = ACTIONS(1120), - [anon_sym_c_longdouble] = ACTIONS(1120), - [anon_sym_PLUS_EQ] = ACTIONS(1118), - [anon_sym_DASH_EQ] = ACTIONS(1118), - [anon_sym_STAR_EQ] = ACTIONS(1118), - [anon_sym_SLASH_EQ] = ACTIONS(1118), - [anon_sym_return] = ACTIONS(1120), - [anon_sym_yield] = ACTIONS(1120), - [anon_sym_COLON] = ACTIONS(1120), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_defer] = ACTIONS(1120), - [anon_sym_errdefer] = ACTIONS(1120), - [anon_sym_if] = ACTIONS(1120), - [anon_sym_else] = ACTIONS(1120), - [anon_sym_while] = ACTIONS(1120), - [anon_sym_expand] = ACTIONS(1120), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_match] = ACTIONS(1120), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1118), - [anon_sym_orelse] = ACTIONS(1120), - [anon_sym_catch] = ACTIONS(1120), - [anon_sym_or] = ACTIONS(1120), - [anon_sym_and] = ACTIONS(1120), - [anon_sym_EQ_EQ] = ACTIONS(1118), - [anon_sym_BANG_EQ] = ACTIONS(1118), - [anon_sym_LT] = ACTIONS(1120), - [anon_sym_LT_EQ] = ACTIONS(1118), - [anon_sym_GT] = ACTIONS(1120), - [anon_sym_GT_EQ] = ACTIONS(1118), - [anon_sym_PLUS] = ACTIONS(1120), - [anon_sym_SLASH] = ACTIONS(1120), - [anon_sym_AMP] = ACTIONS(1118), - [anon_sym_try] = ACTIONS(1120), - [anon_sym_DOT] = ACTIONS(1122), - [anon_sym_CARET] = ACTIONS(1118), - [anon_sym_true] = ACTIONS(1120), - [anon_sym_false] = ACTIONS(1120), - [sym_none] = ACTIONS(1120), - [sym_undefined] = ACTIONS(1120), - [sym_sink] = ACTIONS(1120), - [sym_integer] = ACTIONS(1120), - [sym_float] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1118), - [sym_multiline_string] = ACTIONS(1118), - [sym_character] = ACTIONS(1118), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1118), + [sym__newline] = ACTIONS(447), }, [STATE(449)] = { - [ts_builtin_sym_end] = ACTIONS(1124), - [sym_identifier] = ACTIONS(1126), - [anon_sym_COLON_COLON] = ACTIONS(1124), - [anon_sym_import] = ACTIONS(1126), - [anon_sym_test] = ACTIONS(1126), - [anon_sym_hide] = ACTIONS(1126), - [anon_sym_func] = ACTIONS(1126), - [anon_sym_c_func] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_EQ] = ACTIONS(1126), - [anon_sym_struct] = ACTIONS(1126), - [anon_sym_LPAREN] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_LBRACE] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(1124), - [anon_sym_RBRACE] = ACTIONS(1124), - [anon_sym_DASH] = ACTIONS(1126), - [anon_sym_DOLLAR] = ACTIONS(1124), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_QMARK] = ACTIONS(1124), - [anon_sym_AT] = ACTIONS(1124), - [anon_sym_STAR] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_RBRACK] = ACTIONS(1124), - [anon_sym_void] = ACTIONS(1126), - [anon_sym_anyopaque] = ACTIONS(1126), - [anon_sym_bool] = ACTIONS(1126), - [anon_sym_int] = ACTIONS(1126), - [anon_sym_uint] = ACTIONS(1126), - [anon_sym_float] = ACTIONS(1126), - [anon_sym_range] = ACTIONS(1126), - [anon_sym_i8] = ACTIONS(1126), - [anon_sym_i16] = ACTIONS(1126), - [anon_sym_i32] = ACTIONS(1126), - [anon_sym_i64] = ACTIONS(1126), - [anon_sym_u8] = ACTIONS(1126), - [anon_sym_u16] = ACTIONS(1126), - [anon_sym_u32] = ACTIONS(1126), - [anon_sym_u64] = ACTIONS(1126), - [anon_sym_isize] = ACTIONS(1126), - [anon_sym_usize] = ACTIONS(1126), - [anon_sym_f32] = ACTIONS(1126), - [anon_sym_f64] = ACTIONS(1126), - [anon_sym_c_char] = ACTIONS(1126), - [anon_sym_c_schar] = ACTIONS(1126), - [anon_sym_c_uchar] = ACTIONS(1126), - [anon_sym_c_short] = ACTIONS(1126), - [anon_sym_c_ushort] = ACTIONS(1126), - [anon_sym_c_int] = ACTIONS(1126), - [anon_sym_c_uint] = ACTIONS(1126), - [anon_sym_c_long] = ACTIONS(1126), - [anon_sym_c_ulong] = ACTIONS(1126), - [anon_sym_c_longlong] = ACTIONS(1126), - [anon_sym_c_ulonglong] = ACTIONS(1126), - [anon_sym_c_float] = ACTIONS(1126), - [anon_sym_c_double] = ACTIONS(1126), - [anon_sym_c_longdouble] = ACTIONS(1126), - [anon_sym_PLUS_EQ] = ACTIONS(1124), - [anon_sym_DASH_EQ] = ACTIONS(1124), - [anon_sym_STAR_EQ] = ACTIONS(1124), - [anon_sym_SLASH_EQ] = ACTIONS(1124), - [anon_sym_return] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(1126), - [anon_sym_COLON] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_defer] = ACTIONS(1126), - [anon_sym_errdefer] = ACTIONS(1126), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_else] = ACTIONS(1126), - [anon_sym_while] = ACTIONS(1126), - [anon_sym_expand] = ACTIONS(1126), - [anon_sym_for] = ACTIONS(1126), - [anon_sym_match] = ACTIONS(1126), - [anon_sym_DOT_DOT] = ACTIONS(1126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1124), - [anon_sym_orelse] = ACTIONS(1126), - [anon_sym_catch] = ACTIONS(1126), - [anon_sym_or] = ACTIONS(1126), - [anon_sym_and] = ACTIONS(1126), - [anon_sym_EQ_EQ] = ACTIONS(1124), - [anon_sym_BANG_EQ] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1126), - [anon_sym_LT_EQ] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1126), - [anon_sym_GT_EQ] = ACTIONS(1124), - [anon_sym_PLUS] = ACTIONS(1126), - [anon_sym_SLASH] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_DOT] = ACTIONS(1126), - [anon_sym_CARET] = ACTIONS(1124), - [anon_sym_true] = ACTIONS(1126), - [anon_sym_false] = ACTIONS(1126), - [sym_none] = ACTIONS(1126), - [sym_undefined] = ACTIONS(1126), - [sym_sink] = ACTIONS(1126), - [sym_integer] = ACTIONS(1126), - [sym_float] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_multiline_string] = ACTIONS(1124), - [sym_character] = ACTIONS(1124), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1124), + [sym__newline] = ACTIONS(447), }, [STATE(450)] = { - [sym_struct_type] = STATE(1509), - [sym_c_struct_type] = STATE(1668), - [sym_distinct_type] = STATE(1668), - [sym_alias_type] = STATE(1668), - [sym_union_type] = STATE(1668), - [sym_enum_type] = STATE(1668), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1655), - [sym_labeled_block] = STATE(1655), - [sym_if_statement] = STATE(1655), - [sym_while_statement] = STATE(1655), - [sym_for_statement] = STATE(1655), - [sym_match_statement] = STATE(1655), - [sym__value] = STATE(1655), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(445), - [sym_identifier] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(1128), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1729), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1729), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_c_struct] = ACTIONS(1098), - [sym_opaque_type] = ACTIONS(1130), - [anon_sym_distinct] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -59870,828 +63524,869 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1132), + [sym__newline] = ACTIONS(1423), }, [STATE(451)] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_identifier] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1134), - [anon_sym_import] = ACTIONS(1136), - [anon_sym_test] = ACTIONS(1136), - [anon_sym_hide] = ACTIONS(1136), - [anon_sym_func] = ACTIONS(1136), - [anon_sym_c_func] = ACTIONS(1136), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1136), - [anon_sym_struct] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1134), - [anon_sym_RPAREN] = ACTIONS(1134), - [anon_sym_LBRACE] = ACTIONS(1134), - [anon_sym_COMMA] = ACTIONS(1134), - [anon_sym_RBRACE] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_DOLLAR] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_AT] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1134), - [anon_sym_RBRACK] = ACTIONS(1134), - [anon_sym_void] = ACTIONS(1136), - [anon_sym_anyopaque] = ACTIONS(1136), - [anon_sym_bool] = ACTIONS(1136), - [anon_sym_int] = ACTIONS(1136), - [anon_sym_uint] = ACTIONS(1136), - [anon_sym_float] = ACTIONS(1136), - [anon_sym_range] = ACTIONS(1136), - [anon_sym_i8] = ACTIONS(1136), - [anon_sym_i16] = ACTIONS(1136), - [anon_sym_i32] = ACTIONS(1136), - [anon_sym_i64] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1136), - [anon_sym_u16] = ACTIONS(1136), - [anon_sym_u32] = ACTIONS(1136), - [anon_sym_u64] = ACTIONS(1136), - [anon_sym_isize] = ACTIONS(1136), - [anon_sym_usize] = ACTIONS(1136), - [anon_sym_f32] = ACTIONS(1136), - [anon_sym_f64] = ACTIONS(1136), - [anon_sym_c_char] = ACTIONS(1136), - [anon_sym_c_schar] = ACTIONS(1136), - [anon_sym_c_uchar] = ACTIONS(1136), - [anon_sym_c_short] = ACTIONS(1136), - [anon_sym_c_ushort] = ACTIONS(1136), - [anon_sym_c_int] = ACTIONS(1136), - [anon_sym_c_uint] = ACTIONS(1136), - [anon_sym_c_long] = ACTIONS(1136), - [anon_sym_c_ulong] = ACTIONS(1136), - [anon_sym_c_longlong] = ACTIONS(1136), - [anon_sym_c_ulonglong] = ACTIONS(1136), - [anon_sym_c_float] = ACTIONS(1136), - [anon_sym_c_double] = ACTIONS(1136), - [anon_sym_c_longdouble] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1134), - [anon_sym_DASH_EQ] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1134), - [anon_sym_SLASH_EQ] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_yield] = ACTIONS(1136), - [anon_sym_COLON] = ACTIONS(1136), - [anon_sym_break] = ACTIONS(1136), - [anon_sym_continue] = ACTIONS(1136), - [anon_sym_defer] = ACTIONS(1136), - [anon_sym_errdefer] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1136), - [anon_sym_else] = ACTIONS(1136), - [anon_sym_while] = ACTIONS(1136), - [anon_sym_expand] = ACTIONS(1136), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_match] = ACTIONS(1136), - [anon_sym_DOT_DOT] = ACTIONS(1136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1134), - [anon_sym_orelse] = ACTIONS(1136), - [anon_sym_catch] = ACTIONS(1136), - [anon_sym_or] = ACTIONS(1136), - [anon_sym_and] = ACTIONS(1136), - [anon_sym_EQ_EQ] = ACTIONS(1134), - [anon_sym_BANG_EQ] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1134), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_EQ] = ACTIONS(1134), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_SLASH] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1136), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_true] = ACTIONS(1136), - [anon_sym_false] = ACTIONS(1136), - [sym_none] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1136), - [sym_sink] = ACTIONS(1136), - [sym_integer] = ACTIONS(1136), - [sym_float] = ACTIONS(1134), - [anon_sym_DQUOTE] = ACTIONS(1134), - [sym_multiline_string] = ACTIONS(1134), - [sym_character] = ACTIONS(1134), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1729), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1729), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1134), + [sym__newline] = ACTIONS(447), }, [STATE(452)] = { - [ts_builtin_sym_end] = ACTIONS(1138), - [sym_identifier] = ACTIONS(1140), - [anon_sym_COLON_COLON] = ACTIONS(1138), - [anon_sym_import] = ACTIONS(1140), - [anon_sym_test] = ACTIONS(1140), - [anon_sym_hide] = ACTIONS(1140), - [anon_sym_func] = ACTIONS(1140), - [anon_sym_c_func] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1140), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1138), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_QMARK] = ACTIONS(1138), - [anon_sym_AT] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(1138), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_anyopaque] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_int] = ACTIONS(1140), - [anon_sym_uint] = ACTIONS(1140), - [anon_sym_float] = ACTIONS(1140), - [anon_sym_range] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_c_char] = ACTIONS(1140), - [anon_sym_c_schar] = ACTIONS(1140), - [anon_sym_c_uchar] = ACTIONS(1140), - [anon_sym_c_short] = ACTIONS(1140), - [anon_sym_c_ushort] = ACTIONS(1140), - [anon_sym_c_int] = ACTIONS(1140), - [anon_sym_c_uint] = ACTIONS(1140), - [anon_sym_c_long] = ACTIONS(1140), - [anon_sym_c_ulong] = ACTIONS(1140), - [anon_sym_c_longlong] = ACTIONS(1140), - [anon_sym_c_ulonglong] = ACTIONS(1140), - [anon_sym_c_float] = ACTIONS(1140), - [anon_sym_c_double] = ACTIONS(1140), - [anon_sym_c_longdouble] = ACTIONS(1140), - [anon_sym_PLUS_EQ] = ACTIONS(1138), - [anon_sym_DASH_EQ] = ACTIONS(1138), - [anon_sym_STAR_EQ] = ACTIONS(1138), - [anon_sym_SLASH_EQ] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_COLON] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_defer] = ACTIONS(1140), - [anon_sym_errdefer] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1140), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_expand] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1138), - [anon_sym_orelse] = ACTIONS(1140), - [anon_sym_catch] = ACTIONS(1140), - [anon_sym_or] = ACTIONS(1140), - [anon_sym_and] = ACTIONS(1140), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_DOT] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [sym_none] = ACTIONS(1140), - [sym_undefined] = ACTIONS(1140), - [sym_sink] = ACTIONS(1140), - [sym_integer] = ACTIONS(1140), - [sym_float] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_multiline_string] = ACTIONS(1138), - [sym_character] = ACTIONS(1138), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1730), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1730), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1138), + [sym__newline] = ACTIONS(447), }, [STATE(453)] = { - [ts_builtin_sym_end] = ACTIONS(1142), - [sym_identifier] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(1142), - [anon_sym_import] = ACTIONS(1144), - [anon_sym_test] = ACTIONS(1144), - [anon_sym_hide] = ACTIONS(1144), - [anon_sym_func] = ACTIONS(1144), - [anon_sym_c_func] = ACTIONS(1144), - [anon_sym_BANG] = ACTIONS(1144), - [anon_sym_EQ] = ACTIONS(1144), - [anon_sym_struct] = ACTIONS(1144), - [anon_sym_LPAREN] = ACTIONS(1142), - [anon_sym_RPAREN] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1142), - [anon_sym_COMMA] = ACTIONS(1142), - [anon_sym_RBRACE] = ACTIONS(1142), - [anon_sym_DASH] = ACTIONS(1144), - [anon_sym_DOLLAR] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1142), - [anon_sym_QMARK] = ACTIONS(1142), - [anon_sym_AT] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1142), - [anon_sym_SEMI] = ACTIONS(1142), - [anon_sym_RBRACK] = ACTIONS(1142), - [anon_sym_void] = ACTIONS(1144), - [anon_sym_anyopaque] = ACTIONS(1144), - [anon_sym_bool] = ACTIONS(1144), - [anon_sym_int] = ACTIONS(1144), - [anon_sym_uint] = ACTIONS(1144), - [anon_sym_float] = ACTIONS(1144), - [anon_sym_range] = ACTIONS(1144), - [anon_sym_i8] = ACTIONS(1144), - [anon_sym_i16] = ACTIONS(1144), - [anon_sym_i32] = ACTIONS(1144), - [anon_sym_i64] = ACTIONS(1144), - [anon_sym_u8] = ACTIONS(1144), - [anon_sym_u16] = ACTIONS(1144), - [anon_sym_u32] = ACTIONS(1144), - [anon_sym_u64] = ACTIONS(1144), - [anon_sym_isize] = ACTIONS(1144), - [anon_sym_usize] = ACTIONS(1144), - [anon_sym_f32] = ACTIONS(1144), - [anon_sym_f64] = ACTIONS(1144), - [anon_sym_c_char] = ACTIONS(1144), - [anon_sym_c_schar] = ACTIONS(1144), - [anon_sym_c_uchar] = ACTIONS(1144), - [anon_sym_c_short] = ACTIONS(1144), - [anon_sym_c_ushort] = ACTIONS(1144), - [anon_sym_c_int] = ACTIONS(1144), - [anon_sym_c_uint] = ACTIONS(1144), - [anon_sym_c_long] = ACTIONS(1144), - [anon_sym_c_ulong] = ACTIONS(1144), - [anon_sym_c_longlong] = ACTIONS(1144), - [anon_sym_c_ulonglong] = ACTIONS(1144), - [anon_sym_c_float] = ACTIONS(1144), - [anon_sym_c_double] = ACTIONS(1144), - [anon_sym_c_longdouble] = ACTIONS(1144), - [anon_sym_PLUS_EQ] = ACTIONS(1142), - [anon_sym_DASH_EQ] = ACTIONS(1142), - [anon_sym_STAR_EQ] = ACTIONS(1142), - [anon_sym_SLASH_EQ] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(1144), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_COLON] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1144), - [anon_sym_defer] = ACTIONS(1144), - [anon_sym_errdefer] = ACTIONS(1144), - [anon_sym_if] = ACTIONS(1144), - [anon_sym_else] = ACTIONS(1144), - [anon_sym_while] = ACTIONS(1144), - [anon_sym_expand] = ACTIONS(1144), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_match] = ACTIONS(1144), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1142), - [anon_sym_orelse] = ACTIONS(1144), - [anon_sym_catch] = ACTIONS(1144), - [anon_sym_or] = ACTIONS(1144), - [anon_sym_and] = ACTIONS(1144), - [anon_sym_EQ_EQ] = ACTIONS(1142), - [anon_sym_BANG_EQ] = ACTIONS(1142), - [anon_sym_LT] = ACTIONS(1144), - [anon_sym_LT_EQ] = ACTIONS(1142), - [anon_sym_GT] = ACTIONS(1144), - [anon_sym_GT_EQ] = ACTIONS(1142), - [anon_sym_PLUS] = ACTIONS(1144), - [anon_sym_SLASH] = ACTIONS(1144), - [anon_sym_AMP] = ACTIONS(1142), - [anon_sym_try] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1142), - [anon_sym_true] = ACTIONS(1144), - [anon_sym_false] = ACTIONS(1144), - [sym_none] = ACTIONS(1144), - [sym_undefined] = ACTIONS(1144), - [sym_sink] = ACTIONS(1144), - [sym_integer] = ACTIONS(1144), - [sym_float] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1142), - [sym_multiline_string] = ACTIONS(1142), - [sym_character] = ACTIONS(1142), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1731), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1731), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(455), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1142), + [sym__newline] = ACTIONS(1425), }, [STATE(454)] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_identifier] = ACTIONS(1148), - [anon_sym_COLON_COLON] = ACTIONS(1146), - [anon_sym_import] = ACTIONS(1148), - [anon_sym_test] = ACTIONS(1148), - [anon_sym_hide] = ACTIONS(1148), - [anon_sym_func] = ACTIONS(1148), - [anon_sym_c_func] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1148), - [anon_sym_EQ] = ACTIONS(1148), - [anon_sym_struct] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_LBRACE] = ACTIONS(1146), - [anon_sym_COMMA] = ACTIONS(1146), - [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_DASH] = ACTIONS(1148), - [anon_sym_DOLLAR] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_QMARK] = ACTIONS(1146), - [anon_sym_AT] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(1148), - [anon_sym_LBRACK] = ACTIONS(1146), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_RBRACK] = ACTIONS(1146), - [anon_sym_void] = ACTIONS(1148), - [anon_sym_anyopaque] = ACTIONS(1148), - [anon_sym_bool] = ACTIONS(1148), - [anon_sym_int] = ACTIONS(1148), - [anon_sym_uint] = ACTIONS(1148), - [anon_sym_float] = ACTIONS(1148), - [anon_sym_range] = ACTIONS(1148), - [anon_sym_i8] = ACTIONS(1148), - [anon_sym_i16] = ACTIONS(1148), - [anon_sym_i32] = ACTIONS(1148), - [anon_sym_i64] = ACTIONS(1148), - [anon_sym_u8] = ACTIONS(1148), - [anon_sym_u16] = ACTIONS(1148), - [anon_sym_u32] = ACTIONS(1148), - [anon_sym_u64] = ACTIONS(1148), - [anon_sym_isize] = ACTIONS(1148), - [anon_sym_usize] = ACTIONS(1148), - [anon_sym_f32] = ACTIONS(1148), - [anon_sym_f64] = ACTIONS(1148), - [anon_sym_c_char] = ACTIONS(1148), - [anon_sym_c_schar] = ACTIONS(1148), - [anon_sym_c_uchar] = ACTIONS(1148), - [anon_sym_c_short] = ACTIONS(1148), - [anon_sym_c_ushort] = ACTIONS(1148), - [anon_sym_c_int] = ACTIONS(1148), - [anon_sym_c_uint] = ACTIONS(1148), - [anon_sym_c_long] = ACTIONS(1148), - [anon_sym_c_ulong] = ACTIONS(1148), - [anon_sym_c_longlong] = ACTIONS(1148), - [anon_sym_c_ulonglong] = ACTIONS(1148), - [anon_sym_c_float] = ACTIONS(1148), - [anon_sym_c_double] = ACTIONS(1148), - [anon_sym_c_longdouble] = ACTIONS(1148), - [anon_sym_PLUS_EQ] = ACTIONS(1146), - [anon_sym_DASH_EQ] = ACTIONS(1146), - [anon_sym_STAR_EQ] = ACTIONS(1146), - [anon_sym_SLASH_EQ] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1148), - [anon_sym_COLON] = ACTIONS(1148), - [anon_sym_break] = ACTIONS(1148), - [anon_sym_continue] = ACTIONS(1148), - [anon_sym_defer] = ACTIONS(1148), - [anon_sym_errdefer] = ACTIONS(1148), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_else] = ACTIONS(1148), - [anon_sym_while] = ACTIONS(1148), - [anon_sym_expand] = ACTIONS(1148), - [anon_sym_for] = ACTIONS(1148), - [anon_sym_match] = ACTIONS(1148), - [anon_sym_DOT_DOT] = ACTIONS(1148), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1146), - [anon_sym_orelse] = ACTIONS(1148), - [anon_sym_catch] = ACTIONS(1148), - [anon_sym_or] = ACTIONS(1148), - [anon_sym_and] = ACTIONS(1148), - [anon_sym_EQ_EQ] = ACTIONS(1146), - [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_LT_EQ] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_EQ] = ACTIONS(1146), - [anon_sym_PLUS] = ACTIONS(1148), - [anon_sym_SLASH] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1146), - [anon_sym_try] = ACTIONS(1148), - [anon_sym_DOT] = ACTIONS(1148), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_true] = ACTIONS(1148), - [anon_sym_false] = ACTIONS(1148), - [sym_none] = ACTIONS(1148), - [sym_undefined] = ACTIONS(1148), - [sym_sink] = ACTIONS(1148), - [sym_integer] = ACTIONS(1148), - [sym_float] = ACTIONS(1146), - [anon_sym_DQUOTE] = ACTIONS(1146), - [sym_multiline_string] = ACTIONS(1146), - [sym_character] = ACTIONS(1146), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1731), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1731), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1146), + [sym__newline] = ACTIONS(447), }, [STATE(455)] = { - [ts_builtin_sym_end] = ACTIONS(1150), - [sym_identifier] = ACTIONS(1152), - [anon_sym_COLON_COLON] = ACTIONS(1150), - [anon_sym_import] = ACTIONS(1152), - [anon_sym_test] = ACTIONS(1152), - [anon_sym_hide] = ACTIONS(1152), - [anon_sym_func] = ACTIONS(1152), - [anon_sym_c_func] = ACTIONS(1152), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_EQ] = ACTIONS(1152), - [anon_sym_struct] = ACTIONS(1152), - [anon_sym_LPAREN] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1150), - [anon_sym_COMMA] = ACTIONS(1150), - [anon_sym_RBRACE] = ACTIONS(1150), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(1150), - [anon_sym_AT] = ACTIONS(1150), - [anon_sym_STAR] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(1150), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_RBRACK] = ACTIONS(1150), - [anon_sym_void] = ACTIONS(1152), - [anon_sym_anyopaque] = ACTIONS(1152), - [anon_sym_bool] = ACTIONS(1152), - [anon_sym_int] = ACTIONS(1152), - [anon_sym_uint] = ACTIONS(1152), - [anon_sym_float] = ACTIONS(1152), - [anon_sym_range] = ACTIONS(1152), - [anon_sym_i8] = ACTIONS(1152), - [anon_sym_i16] = ACTIONS(1152), - [anon_sym_i32] = ACTIONS(1152), - [anon_sym_i64] = ACTIONS(1152), - [anon_sym_u8] = ACTIONS(1152), - [anon_sym_u16] = ACTIONS(1152), - [anon_sym_u32] = ACTIONS(1152), - [anon_sym_u64] = ACTIONS(1152), - [anon_sym_isize] = ACTIONS(1152), - [anon_sym_usize] = ACTIONS(1152), - [anon_sym_f32] = ACTIONS(1152), - [anon_sym_f64] = ACTIONS(1152), - [anon_sym_c_char] = ACTIONS(1152), - [anon_sym_c_schar] = ACTIONS(1152), - [anon_sym_c_uchar] = ACTIONS(1152), - [anon_sym_c_short] = ACTIONS(1152), - [anon_sym_c_ushort] = ACTIONS(1152), - [anon_sym_c_int] = ACTIONS(1152), - [anon_sym_c_uint] = ACTIONS(1152), - [anon_sym_c_long] = ACTIONS(1152), - [anon_sym_c_ulong] = ACTIONS(1152), - [anon_sym_c_longlong] = ACTIONS(1152), - [anon_sym_c_ulonglong] = ACTIONS(1152), - [anon_sym_c_float] = ACTIONS(1152), - [anon_sym_c_double] = ACTIONS(1152), - [anon_sym_c_longdouble] = ACTIONS(1152), - [anon_sym_PLUS_EQ] = ACTIONS(1150), - [anon_sym_DASH_EQ] = ACTIONS(1150), - [anon_sym_STAR_EQ] = ACTIONS(1150), - [anon_sym_SLASH_EQ] = ACTIONS(1150), - [anon_sym_return] = ACTIONS(1152), - [anon_sym_yield] = ACTIONS(1152), - [anon_sym_COLON] = ACTIONS(1152), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_defer] = ACTIONS(1152), - [anon_sym_errdefer] = ACTIONS(1152), - [anon_sym_if] = ACTIONS(1152), - [anon_sym_else] = ACTIONS(1152), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_expand] = ACTIONS(1152), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_match] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1152), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1150), - [anon_sym_orelse] = ACTIONS(1152), - [anon_sym_catch] = ACTIONS(1152), - [anon_sym_or] = ACTIONS(1152), - [anon_sym_and] = ACTIONS(1152), - [anon_sym_EQ_EQ] = ACTIONS(1150), - [anon_sym_BANG_EQ] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1152), - [anon_sym_LT_EQ] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_SLASH] = ACTIONS(1152), - [anon_sym_AMP] = ACTIONS(1150), - [anon_sym_try] = ACTIONS(1152), - [anon_sym_DOT] = ACTIONS(1152), - [anon_sym_CARET] = ACTIONS(1150), - [anon_sym_true] = ACTIONS(1152), - [anon_sym_false] = ACTIONS(1152), - [sym_none] = ACTIONS(1152), - [sym_undefined] = ACTIONS(1152), - [sym_sink] = ACTIONS(1152), - [sym_integer] = ACTIONS(1152), - [sym_float] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(1150), - [sym_multiline_string] = ACTIONS(1150), - [sym_character] = ACTIONS(1150), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1734), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1734), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1150), + [sym__newline] = ACTIONS(447), }, [STATE(456)] = { - [ts_builtin_sym_end] = ACTIONS(1154), - [sym_identifier] = ACTIONS(1156), - [anon_sym_COLON_COLON] = ACTIONS(1154), - [anon_sym_import] = ACTIONS(1156), - [anon_sym_test] = ACTIONS(1156), - [anon_sym_hide] = ACTIONS(1156), - [anon_sym_func] = ACTIONS(1156), - [anon_sym_c_func] = ACTIONS(1156), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_EQ] = ACTIONS(1156), - [anon_sym_struct] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_LBRACE] = ACTIONS(1154), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_RBRACE] = ACTIONS(1154), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_DOLLAR] = ACTIONS(1154), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_QMARK] = ACTIONS(1154), - [anon_sym_AT] = ACTIONS(1154), - [anon_sym_STAR] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1154), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_RBRACK] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_anyopaque] = ACTIONS(1156), - [anon_sym_bool] = ACTIONS(1156), - [anon_sym_int] = ACTIONS(1156), - [anon_sym_uint] = ACTIONS(1156), - [anon_sym_float] = ACTIONS(1156), - [anon_sym_range] = ACTIONS(1156), - [anon_sym_i8] = ACTIONS(1156), - [anon_sym_i16] = ACTIONS(1156), - [anon_sym_i32] = ACTIONS(1156), - [anon_sym_i64] = ACTIONS(1156), - [anon_sym_u8] = ACTIONS(1156), - [anon_sym_u16] = ACTIONS(1156), - [anon_sym_u32] = ACTIONS(1156), - [anon_sym_u64] = ACTIONS(1156), - [anon_sym_isize] = ACTIONS(1156), - [anon_sym_usize] = ACTIONS(1156), - [anon_sym_f32] = ACTIONS(1156), - [anon_sym_f64] = ACTIONS(1156), - [anon_sym_c_char] = ACTIONS(1156), - [anon_sym_c_schar] = ACTIONS(1156), - [anon_sym_c_uchar] = ACTIONS(1156), - [anon_sym_c_short] = ACTIONS(1156), - [anon_sym_c_ushort] = ACTIONS(1156), - [anon_sym_c_int] = ACTIONS(1156), - [anon_sym_c_uint] = ACTIONS(1156), - [anon_sym_c_long] = ACTIONS(1156), - [anon_sym_c_ulong] = ACTIONS(1156), - [anon_sym_c_longlong] = ACTIONS(1156), - [anon_sym_c_ulonglong] = ACTIONS(1156), - [anon_sym_c_float] = ACTIONS(1156), - [anon_sym_c_double] = ACTIONS(1156), - [anon_sym_c_longdouble] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1154), - [anon_sym_DASH_EQ] = ACTIONS(1154), - [anon_sym_STAR_EQ] = ACTIONS(1154), - [anon_sym_SLASH_EQ] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1156), - [anon_sym_COLON] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_continue] = ACTIONS(1156), - [anon_sym_defer] = ACTIONS(1156), - [anon_sym_errdefer] = ACTIONS(1156), - [anon_sym_if] = ACTIONS(1156), - [anon_sym_else] = ACTIONS(1156), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_expand] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1156), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1156), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1154), - [anon_sym_orelse] = ACTIONS(1156), - [anon_sym_catch] = ACTIONS(1156), - [anon_sym_or] = ACTIONS(1156), - [anon_sym_and] = ACTIONS(1156), - [anon_sym_EQ_EQ] = ACTIONS(1154), - [anon_sym_BANG_EQ] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1156), - [anon_sym_LT_EQ] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1156), - [anon_sym_GT_EQ] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1156), - [anon_sym_AMP] = ACTIONS(1154), - [anon_sym_try] = ACTIONS(1156), - [anon_sym_DOT] = ACTIONS(1156), - [anon_sym_CARET] = ACTIONS(1154), - [anon_sym_true] = ACTIONS(1156), - [anon_sym_false] = ACTIONS(1156), - [sym_none] = ACTIONS(1156), - [sym_undefined] = ACTIONS(1156), - [sym_sink] = ACTIONS(1156), - [sym_integer] = ACTIONS(1156), - [sym_float] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1154), - [sym_multiline_string] = ACTIONS(1154), - [sym_character] = ACTIONS(1154), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(484), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1154), + [sym__newline] = ACTIONS(1427), }, [STATE(457)] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_identifier] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(1158), - [anon_sym_import] = ACTIONS(1160), - [anon_sym_test] = ACTIONS(1160), - [anon_sym_hide] = ACTIONS(1160), - [anon_sym_func] = ACTIONS(1160), - [anon_sym_c_func] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_EQ] = ACTIONS(1160), - [anon_sym_struct] = ACTIONS(1160), - [anon_sym_LPAREN] = ACTIONS(1158), - [anon_sym_RPAREN] = ACTIONS(1158), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(1158), - [anon_sym_DASH] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1158), - [anon_sym_PIPE] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1158), - [anon_sym_AT] = ACTIONS(1158), - [anon_sym_STAR] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1158), - [anon_sym_SEMI] = ACTIONS(1158), - [anon_sym_RBRACK] = ACTIONS(1158), - [anon_sym_void] = ACTIONS(1160), - [anon_sym_anyopaque] = ACTIONS(1160), - [anon_sym_bool] = ACTIONS(1160), - [anon_sym_int] = ACTIONS(1160), - [anon_sym_uint] = ACTIONS(1160), - [anon_sym_float] = ACTIONS(1160), - [anon_sym_range] = ACTIONS(1160), - [anon_sym_i8] = ACTIONS(1160), - [anon_sym_i16] = ACTIONS(1160), - [anon_sym_i32] = ACTIONS(1160), - [anon_sym_i64] = ACTIONS(1160), - [anon_sym_u8] = ACTIONS(1160), - [anon_sym_u16] = ACTIONS(1160), - [anon_sym_u32] = ACTIONS(1160), - [anon_sym_u64] = ACTIONS(1160), - [anon_sym_isize] = ACTIONS(1160), - [anon_sym_usize] = ACTIONS(1160), - [anon_sym_f32] = ACTIONS(1160), - [anon_sym_f64] = ACTIONS(1160), - [anon_sym_c_char] = ACTIONS(1160), - [anon_sym_c_schar] = ACTIONS(1160), - [anon_sym_c_uchar] = ACTIONS(1160), - [anon_sym_c_short] = ACTIONS(1160), - [anon_sym_c_ushort] = ACTIONS(1160), - [anon_sym_c_int] = ACTIONS(1160), - [anon_sym_c_uint] = ACTIONS(1160), - [anon_sym_c_long] = ACTIONS(1160), - [anon_sym_c_ulong] = ACTIONS(1160), - [anon_sym_c_longlong] = ACTIONS(1160), - [anon_sym_c_ulonglong] = ACTIONS(1160), - [anon_sym_c_float] = ACTIONS(1160), - [anon_sym_c_double] = ACTIONS(1160), - [anon_sym_c_longdouble] = ACTIONS(1160), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_COLON] = ACTIONS(1160), - [anon_sym_break] = ACTIONS(1160), - [anon_sym_continue] = ACTIONS(1160), - [anon_sym_defer] = ACTIONS(1160), - [anon_sym_errdefer] = ACTIONS(1160), - [anon_sym_if] = ACTIONS(1160), - [anon_sym_else] = ACTIONS(1160), - [anon_sym_while] = ACTIONS(1160), - [anon_sym_expand] = ACTIONS(1160), - [anon_sym_for] = ACTIONS(1160), - [anon_sym_match] = ACTIONS(1160), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [anon_sym_orelse] = ACTIONS(1160), - [anon_sym_catch] = ACTIONS(1160), - [anon_sym_or] = ACTIONS(1160), - [anon_sym_and] = ACTIONS(1160), - [anon_sym_EQ_EQ] = ACTIONS(1158), - [anon_sym_BANG_EQ] = ACTIONS(1158), - [anon_sym_LT] = ACTIONS(1160), - [anon_sym_LT_EQ] = ACTIONS(1158), - [anon_sym_GT] = ACTIONS(1160), - [anon_sym_GT_EQ] = ACTIONS(1158), - [anon_sym_PLUS] = ACTIONS(1160), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_AMP] = ACTIONS(1158), - [anon_sym_try] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1160), - [anon_sym_CARET] = ACTIONS(1158), - [anon_sym_true] = ACTIONS(1160), - [anon_sym_false] = ACTIONS(1160), - [sym_none] = ACTIONS(1160), - [sym_undefined] = ACTIONS(1160), - [sym_sink] = ACTIONS(1160), - [sym_integer] = ACTIONS(1160), - [sym_float] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(1158), - [sym_multiline_string] = ACTIONS(1158), - [sym_character] = ACTIONS(1158), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1158), + [sym__newline] = ACTIONS(1429), }, [STATE(458)] = { - [sym_struct_type] = STATE(1513), - [sym_c_struct_type] = STATE(1640), - [sym_distinct_type] = STATE(1640), - [sym_alias_type] = STATE(1640), - [sym_union_type] = STATE(1640), - [sym_enum_type] = STATE(1640), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1642), - [sym_labeled_block] = STATE(1642), - [sym_if_statement] = STATE(1642), - [sym_while_statement] = STATE(1642), - [sym_for_statement] = STATE(1642), - [sym_match_statement] = STATE(1642), - [sym__value] = STATE(1642), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(461), - [sym_identifier] = ACTIONS(1094), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(460), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_c_struct] = ACTIONS(1098), - [sym_opaque_type] = ACTIONS(1162), - [anon_sym_distinct] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -60725,291 +64420,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1164), + [sym__newline] = ACTIONS(1431), }, [STATE(459)] = { - [sym_type] = STATE(2214), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(463), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(1433), }, [STATE(460)] = { - [ts_builtin_sym_end] = ACTIONS(1166), - [sym_identifier] = ACTIONS(1168), - [anon_sym_import] = ACTIONS(1168), - [anon_sym_test] = ACTIONS(1168), - [anon_sym_hide] = ACTIONS(1168), - [anon_sym_func] = ACTIONS(1168), - [anon_sym_c_func] = ACTIONS(1168), - [anon_sym_BANG] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_struct] = ACTIONS(1168), - [anon_sym_LPAREN] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_LBRACE] = ACTIONS(1166), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_RBRACE] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_DOLLAR] = ACTIONS(1166), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_QMARK] = ACTIONS(1166), - [anon_sym_AT] = ACTIONS(1166), - [anon_sym_STAR] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_RBRACK] = ACTIONS(1166), - [anon_sym_void] = ACTIONS(1168), - [anon_sym_anyopaque] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_int] = ACTIONS(1168), - [anon_sym_uint] = ACTIONS(1168), - [anon_sym_float] = ACTIONS(1168), - [anon_sym_range] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_c_char] = ACTIONS(1168), - [anon_sym_c_schar] = ACTIONS(1168), - [anon_sym_c_uchar] = ACTIONS(1168), - [anon_sym_c_short] = ACTIONS(1168), - [anon_sym_c_ushort] = ACTIONS(1168), - [anon_sym_c_int] = ACTIONS(1168), - [anon_sym_c_uint] = ACTIONS(1168), - [anon_sym_c_long] = ACTIONS(1168), - [anon_sym_c_ulong] = ACTIONS(1168), - [anon_sym_c_longlong] = ACTIONS(1168), - [anon_sym_c_ulonglong] = ACTIONS(1168), - [anon_sym_c_float] = ACTIONS(1168), - [anon_sym_c_double] = ACTIONS(1168), - [anon_sym_c_longdouble] = ACTIONS(1168), - [anon_sym_PLUS_EQ] = ACTIONS(1166), - [anon_sym_DASH_EQ] = ACTIONS(1166), - [anon_sym_STAR_EQ] = ACTIONS(1166), - [anon_sym_SLASH_EQ] = ACTIONS(1166), - [anon_sym_return] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1168), - [anon_sym_COLON] = ACTIONS(1166), - [anon_sym_break] = ACTIONS(1168), - [anon_sym_continue] = ACTIONS(1168), - [anon_sym_defer] = ACTIONS(1168), - [anon_sym_errdefer] = ACTIONS(1168), - [anon_sym_if] = ACTIONS(1168), - [anon_sym_else] = ACTIONS(1168), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_expand] = ACTIONS(1168), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_match] = ACTIONS(1168), - [anon_sym_DOT_DOT] = ACTIONS(1168), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1166), - [anon_sym_orelse] = ACTIONS(1168), - [anon_sym_catch] = ACTIONS(1168), - [anon_sym_or] = ACTIONS(1168), - [anon_sym_and] = ACTIONS(1168), - [anon_sym_EQ_EQ] = ACTIONS(1166), - [anon_sym_BANG_EQ] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1168), - [anon_sym_LT_EQ] = ACTIONS(1166), - [anon_sym_GT] = ACTIONS(1168), - [anon_sym_GT_EQ] = ACTIONS(1166), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_SLASH] = ACTIONS(1168), - [anon_sym_AMP] = ACTIONS(1166), - [anon_sym_try] = ACTIONS(1168), - [anon_sym_DOT] = ACTIONS(1168), - [anon_sym_CARET] = ACTIONS(1166), - [anon_sym_true] = ACTIONS(1168), - [anon_sym_false] = ACTIONS(1168), - [sym_none] = ACTIONS(1168), - [sym_undefined] = ACTIONS(1168), - [sym_sink] = ACTIONS(1168), - [sym_integer] = ACTIONS(1168), - [sym_float] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1166), - [sym_multiline_string] = ACTIONS(1166), - [sym_character] = ACTIONS(1166), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1166), + [sym__newline] = ACTIONS(447), }, [STATE(461)] = { - [sym_struct_type] = STATE(1506), - [sym_c_struct_type] = STATE(1643), - [sym_distinct_type] = STATE(1643), - [sym_alias_type] = STATE(1643), - [sym_union_type] = STATE(1643), - [sym_enum_type] = STATE(1643), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1679), - [sym_labeled_block] = STATE(1679), - [sym_if_statement] = STATE(1679), - [sym_while_statement] = STATE(1679), - [sym_for_statement] = STATE(1679), - [sym_match_statement] = STATE(1679), - [sym__value] = STATE(1679), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(466), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_c_struct] = ACTIONS(1098), - [sym_opaque_type] = ACTIONS(1170), - [anon_sym_distinct] = ACTIONS(1102), - [anon_sym_alias] = ACTIONS(1104), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(1108), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -61043,8603 +64756,8790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(1435), }, [STATE(462)] = { - [ts_builtin_sym_end] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1174), - [anon_sym_import] = ACTIONS(1174), - [anon_sym_test] = ACTIONS(1174), - [anon_sym_hide] = ACTIONS(1174), - [anon_sym_func] = ACTIONS(1174), - [anon_sym_c_func] = ACTIONS(1174), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_EQ] = ACTIONS(1174), - [anon_sym_struct] = ACTIONS(1174), - [anon_sym_LPAREN] = ACTIONS(1172), - [anon_sym_RPAREN] = ACTIONS(1172), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_COMMA] = ACTIONS(1172), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_DASH] = ACTIONS(1174), - [anon_sym_DOLLAR] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1172), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_AT] = ACTIONS(1172), - [anon_sym_STAR] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_SEMI] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_void] = ACTIONS(1174), - [anon_sym_anyopaque] = ACTIONS(1174), - [anon_sym_bool] = ACTIONS(1174), - [anon_sym_int] = ACTIONS(1174), - [anon_sym_uint] = ACTIONS(1174), - [anon_sym_float] = ACTIONS(1174), - [anon_sym_range] = ACTIONS(1174), - [anon_sym_i8] = ACTIONS(1174), - [anon_sym_i16] = ACTIONS(1174), - [anon_sym_i32] = ACTIONS(1174), - [anon_sym_i64] = ACTIONS(1174), - [anon_sym_u8] = ACTIONS(1174), - [anon_sym_u16] = ACTIONS(1174), - [anon_sym_u32] = ACTIONS(1174), - [anon_sym_u64] = ACTIONS(1174), - [anon_sym_isize] = ACTIONS(1174), - [anon_sym_usize] = ACTIONS(1174), - [anon_sym_f32] = ACTIONS(1174), - [anon_sym_f64] = ACTIONS(1174), - [anon_sym_c_char] = ACTIONS(1174), - [anon_sym_c_schar] = ACTIONS(1174), - [anon_sym_c_uchar] = ACTIONS(1174), - [anon_sym_c_short] = ACTIONS(1174), - [anon_sym_c_ushort] = ACTIONS(1174), - [anon_sym_c_int] = ACTIONS(1174), - [anon_sym_c_uint] = ACTIONS(1174), - [anon_sym_c_long] = ACTIONS(1174), - [anon_sym_c_ulong] = ACTIONS(1174), - [anon_sym_c_longlong] = ACTIONS(1174), - [anon_sym_c_ulonglong] = ACTIONS(1174), - [anon_sym_c_float] = ACTIONS(1174), - [anon_sym_c_double] = ACTIONS(1174), - [anon_sym_c_longdouble] = ACTIONS(1174), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_return] = ACTIONS(1174), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_COLON] = ACTIONS(1172), - [anon_sym_break] = ACTIONS(1174), - [anon_sym_continue] = ACTIONS(1174), - [anon_sym_defer] = ACTIONS(1174), - [anon_sym_errdefer] = ACTIONS(1174), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_else] = ACTIONS(1174), - [anon_sym_while] = ACTIONS(1174), - [anon_sym_expand] = ACTIONS(1174), - [anon_sym_for] = ACTIONS(1174), - [anon_sym_match] = ACTIONS(1174), - [anon_sym_DOT_DOT] = ACTIONS(1174), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1172), - [anon_sym_orelse] = ACTIONS(1174), - [anon_sym_catch] = ACTIONS(1174), - [anon_sym_or] = ACTIONS(1174), - [anon_sym_and] = ACTIONS(1174), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1174), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1174), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_PLUS] = ACTIONS(1174), - [anon_sym_SLASH] = ACTIONS(1174), - [anon_sym_AMP] = ACTIONS(1172), - [anon_sym_try] = ACTIONS(1174), - [anon_sym_DOT] = ACTIONS(1174), - [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [sym_none] = ACTIONS(1174), - [sym_undefined] = ACTIONS(1174), - [sym_sink] = ACTIONS(1174), - [sym_integer] = ACTIONS(1174), - [sym_float] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1172), - [sym_multiline_string] = ACTIONS(1172), - [sym_character] = ACTIONS(1172), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(468), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1172), + [sym__newline] = ACTIONS(1437), }, [STATE(463)] = { - [sym_type] = STATE(2234), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1080), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(447), }, [STATE(464)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(1178), - [anon_sym_test] = ACTIONS(1178), - [anon_sym_hide] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_COLON] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1178), - [anon_sym_and] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_BANG_EQ] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), + [sym__newline] = ACTIONS(1439), }, [STATE(465)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1186), - [anon_sym_import] = ACTIONS(1186), - [anon_sym_test] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_func] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_COMMA] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_RBRACK] = ACTIONS(1184), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_anyopaque] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_range] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_c_char] = ACTIONS(1186), - [anon_sym_c_schar] = ACTIONS(1186), - [anon_sym_c_uchar] = ACTIONS(1186), - [anon_sym_c_short] = ACTIONS(1186), - [anon_sym_c_ushort] = ACTIONS(1186), - [anon_sym_c_int] = ACTIONS(1186), - [anon_sym_c_uint] = ACTIONS(1186), - [anon_sym_c_long] = ACTIONS(1186), - [anon_sym_c_ulong] = ACTIONS(1186), - [anon_sym_c_longlong] = ACTIONS(1186), - [anon_sym_c_ulonglong] = ACTIONS(1186), - [anon_sym_c_float] = ACTIONS(1186), - [anon_sym_c_double] = ACTIONS(1186), - [anon_sym_c_longdouble] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1186), - [anon_sym_COLON] = ACTIONS(1184), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_errdefer] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_expand] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_none] = ACTIONS(1186), - [sym_undefined] = ACTIONS(1186), - [sym_sink] = ACTIONS(1186), - [sym_integer] = ACTIONS(1186), - [sym_float] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_multiline_string] = ACTIONS(1184), - [sym_character] = ACTIONS(1184), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), + [sym__newline] = ACTIONS(1441), }, [STATE(466)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(1190), - [anon_sym_test] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1188), - [anon_sym_RBRACK] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), + [sym__newline] = ACTIONS(447), }, [STATE(467)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_import] = ACTIONS(1194), - [anon_sym_test] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_func] = ACTIONS(1194), - [anon_sym_BANG] = ACTIONS(1194), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_COMMA] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1192), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_RBRACK] = ACTIONS(1192), - [anon_sym_void] = 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_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(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_expand] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_none] = ACTIONS(1194), - [sym_undefined] = ACTIONS(1194), - [sym_sink] = ACTIONS(1194), - [sym_integer] = ACTIONS(1194), - [sym_float] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_multiline_string] = ACTIONS(1192), - [sym_character] = ACTIONS(1192), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(473), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), + [sym__newline] = ACTIONS(1443), }, [STATE(468)] = { - [ts_builtin_sym_end] = ACTIONS(243), - [sym_identifier] = ACTIONS(247), - [anon_sym_import] = ACTIONS(247), - [anon_sym_test] = ACTIONS(247), - [anon_sym_hide] = ACTIONS(247), - [anon_sym_func] = ACTIONS(247), - [anon_sym_BANG] = ACTIONS(247), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_struct] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(243), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(247), - [anon_sym_LBRACK] = ACTIONS(243), - [anon_sym_SEMI] = ACTIONS(243), - [anon_sym_RBRACK] = ACTIONS(243), - [anon_sym_void] = ACTIONS(247), - [anon_sym_anyopaque] = ACTIONS(247), - [anon_sym_bool] = ACTIONS(247), - [anon_sym_int] = ACTIONS(247), - [anon_sym_uint] = ACTIONS(247), - [anon_sym_float] = ACTIONS(247), - [anon_sym_range] = ACTIONS(247), - [anon_sym_i8] = ACTIONS(247), - [anon_sym_i16] = ACTIONS(247), - [anon_sym_i32] = ACTIONS(247), - [anon_sym_i64] = ACTIONS(247), - [anon_sym_u8] = ACTIONS(247), - [anon_sym_u16] = ACTIONS(247), - [anon_sym_u32] = ACTIONS(247), - [anon_sym_u64] = ACTIONS(247), - [anon_sym_isize] = ACTIONS(247), - [anon_sym_usize] = ACTIONS(247), - [anon_sym_f32] = ACTIONS(247), - [anon_sym_f64] = ACTIONS(247), - [anon_sym_c_char] = ACTIONS(247), - [anon_sym_c_schar] = ACTIONS(247), - [anon_sym_c_uchar] = ACTIONS(247), - [anon_sym_c_short] = ACTIONS(247), - [anon_sym_c_ushort] = ACTIONS(247), - [anon_sym_c_int] = ACTIONS(247), - [anon_sym_c_uint] = ACTIONS(247), - [anon_sym_c_long] = ACTIONS(247), - [anon_sym_c_ulong] = ACTIONS(247), - [anon_sym_c_longlong] = ACTIONS(247), - [anon_sym_c_ulonglong] = ACTIONS(247), - [anon_sym_c_float] = ACTIONS(247), - [anon_sym_c_double] = ACTIONS(247), - [anon_sym_c_longdouble] = ACTIONS(247), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_return] = ACTIONS(247), - [anon_sym_yield] = ACTIONS(247), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_break] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(247), - [anon_sym_defer] = ACTIONS(247), - [anon_sym_errdefer] = ACTIONS(247), - [anon_sym_if] = ACTIONS(247), - [anon_sym_else] = ACTIONS(247), - [anon_sym_while] = ACTIONS(247), - [anon_sym_expand] = ACTIONS(247), - [anon_sym_for] = ACTIONS(247), - [anon_sym_match] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_try] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_true] = ACTIONS(247), - [anon_sym_false] = ACTIONS(247), - [sym_none] = ACTIONS(247), - [sym_undefined] = ACTIONS(247), - [sym_sink] = ACTIONS(247), - [sym_integer] = ACTIONS(247), - [sym_float] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(243), - [sym_multiline_string] = ACTIONS(243), - [sym_character] = ACTIONS(243), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), + [sym__newline] = ACTIONS(447), }, [STATE(469)] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_import] = ACTIONS(1198), - [anon_sym_test] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_func] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_void] = ACTIONS(1198), - [anon_sym_anyopaque] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_int] = ACTIONS(1198), - [anon_sym_uint] = ACTIONS(1198), - [anon_sym_float] = ACTIONS(1198), - [anon_sym_range] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_c_char] = ACTIONS(1198), - [anon_sym_c_schar] = ACTIONS(1198), - [anon_sym_c_uchar] = ACTIONS(1198), - [anon_sym_c_short] = ACTIONS(1198), - [anon_sym_c_ushort] = ACTIONS(1198), - [anon_sym_c_int] = ACTIONS(1198), - [anon_sym_c_uint] = ACTIONS(1198), - [anon_sym_c_long] = ACTIONS(1198), - [anon_sym_c_ulong] = ACTIONS(1198), - [anon_sym_c_longlong] = ACTIONS(1198), - [anon_sym_c_ulonglong] = ACTIONS(1198), - [anon_sym_c_float] = ACTIONS(1198), - [anon_sym_c_double] = ACTIONS(1198), - [anon_sym_c_longdouble] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_COLON] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_defer] = ACTIONS(1198), - [anon_sym_errdefer] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_expand] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_orelse] = ACTIONS(1198), - [anon_sym_catch] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [sym_none] = ACTIONS(1198), - [sym_undefined] = ACTIONS(1198), - [sym_sink] = ACTIONS(1198), - [sym_integer] = ACTIONS(1198), - [sym_float] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_multiline_string] = ACTIONS(1196), - [sym_character] = ACTIONS(1196), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(476), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1196), + [sym__newline] = ACTIONS(1445), }, [STATE(470)] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_identifier] = ACTIONS(1202), - [anon_sym_import] = ACTIONS(1202), - [anon_sym_test] = ACTIONS(1202), - [anon_sym_hide] = ACTIONS(1202), - [anon_sym_func] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_EQ] = ACTIONS(1202), - [anon_sym_struct] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1200), - [anon_sym_COMMA] = ACTIONS(1200), - [anon_sym_RBRACE] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1202), - [anon_sym_DOLLAR] = ACTIONS(1200), - [anon_sym_PIPE] = ACTIONS(1200), - [anon_sym_QMARK] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_LBRACK] = ACTIONS(1200), - [anon_sym_SEMI] = ACTIONS(1200), - [anon_sym_RBRACK] = ACTIONS(1200), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_anyopaque] = ACTIONS(1202), - [anon_sym_bool] = ACTIONS(1202), - [anon_sym_int] = ACTIONS(1202), - [anon_sym_uint] = ACTIONS(1202), - [anon_sym_float] = ACTIONS(1202), - [anon_sym_range] = ACTIONS(1202), - [anon_sym_i8] = ACTIONS(1202), - [anon_sym_i16] = ACTIONS(1202), - [anon_sym_i32] = ACTIONS(1202), - [anon_sym_i64] = ACTIONS(1202), - [anon_sym_u8] = ACTIONS(1202), - [anon_sym_u16] = ACTIONS(1202), - [anon_sym_u32] = ACTIONS(1202), - [anon_sym_u64] = ACTIONS(1202), - [anon_sym_isize] = ACTIONS(1202), - [anon_sym_usize] = ACTIONS(1202), - [anon_sym_f32] = ACTIONS(1202), - [anon_sym_f64] = ACTIONS(1202), - [anon_sym_c_char] = ACTIONS(1202), - [anon_sym_c_schar] = ACTIONS(1202), - [anon_sym_c_uchar] = ACTIONS(1202), - [anon_sym_c_short] = ACTIONS(1202), - [anon_sym_c_ushort] = ACTIONS(1202), - [anon_sym_c_int] = ACTIONS(1202), - [anon_sym_c_uint] = ACTIONS(1202), - [anon_sym_c_long] = ACTIONS(1202), - [anon_sym_c_ulong] = ACTIONS(1202), - [anon_sym_c_longlong] = ACTIONS(1202), - [anon_sym_c_ulonglong] = ACTIONS(1202), - [anon_sym_c_float] = ACTIONS(1202), - [anon_sym_c_double] = ACTIONS(1202), - [anon_sym_c_longdouble] = ACTIONS(1202), - [anon_sym_PLUS_EQ] = ACTIONS(1200), - [anon_sym_DASH_EQ] = ACTIONS(1200), - [anon_sym_STAR_EQ] = ACTIONS(1200), - [anon_sym_SLASH_EQ] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_yield] = ACTIONS(1202), - [anon_sym_COLON] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_continue] = ACTIONS(1202), - [anon_sym_defer] = ACTIONS(1202), - [anon_sym_errdefer] = ACTIONS(1202), - [anon_sym_if] = ACTIONS(1202), - [anon_sym_else] = ACTIONS(1202), - [anon_sym_while] = ACTIONS(1202), - [anon_sym_expand] = ACTIONS(1202), - [anon_sym_for] = ACTIONS(1202), - [anon_sym_match] = ACTIONS(1202), - [anon_sym_DOT_DOT] = ACTIONS(1202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1200), - [anon_sym_orelse] = ACTIONS(1202), - [anon_sym_catch] = ACTIONS(1202), - [anon_sym_or] = ACTIONS(1202), - [anon_sym_and] = ACTIONS(1202), - [anon_sym_EQ_EQ] = ACTIONS(1200), - [anon_sym_BANG_EQ] = ACTIONS(1200), - [anon_sym_LT] = ACTIONS(1202), - [anon_sym_LT_EQ] = ACTIONS(1200), - [anon_sym_GT] = ACTIONS(1202), - [anon_sym_GT_EQ] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1202), - [anon_sym_SLASH] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1200), - [anon_sym_try] = ACTIONS(1202), - [anon_sym_DOT] = ACTIONS(1202), - [anon_sym_CARET] = ACTIONS(1200), - [anon_sym_true] = ACTIONS(1202), - [anon_sym_false] = ACTIONS(1202), - [sym_none] = ACTIONS(1202), - [sym_undefined] = ACTIONS(1202), - [sym_sink] = ACTIONS(1202), - [sym_integer] = ACTIONS(1202), - [sym_float] = ACTIONS(1200), - [anon_sym_DQUOTE] = ACTIONS(1200), - [sym_multiline_string] = ACTIONS(1200), - [sym_character] = ACTIONS(1200), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1200), + [sym__newline] = ACTIONS(447), }, [STATE(471)] = { - [ts_builtin_sym_end] = ACTIONS(1204), - [sym_identifier] = ACTIONS(1206), - [anon_sym_import] = ACTIONS(1206), - [anon_sym_test] = ACTIONS(1206), - [anon_sym_hide] = ACTIONS(1206), - [anon_sym_func] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1206), - [anon_sym_struct] = ACTIONS(1206), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1204), - [anon_sym_COMMA] = ACTIONS(1204), - [anon_sym_RBRACE] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1204), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_QMARK] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1204), - [anon_sym_void] = ACTIONS(1206), - [anon_sym_anyopaque] = ACTIONS(1206), - [anon_sym_bool] = ACTIONS(1206), - [anon_sym_int] = ACTIONS(1206), - [anon_sym_uint] = ACTIONS(1206), - [anon_sym_float] = ACTIONS(1206), - [anon_sym_range] = ACTIONS(1206), - [anon_sym_i8] = ACTIONS(1206), - [anon_sym_i16] = ACTIONS(1206), - [anon_sym_i32] = ACTIONS(1206), - [anon_sym_i64] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1206), - [anon_sym_u16] = ACTIONS(1206), - [anon_sym_u32] = ACTIONS(1206), - [anon_sym_u64] = ACTIONS(1206), - [anon_sym_isize] = ACTIONS(1206), - [anon_sym_usize] = ACTIONS(1206), - [anon_sym_f32] = ACTIONS(1206), - [anon_sym_f64] = ACTIONS(1206), - [anon_sym_c_char] = ACTIONS(1206), - [anon_sym_c_schar] = ACTIONS(1206), - [anon_sym_c_uchar] = ACTIONS(1206), - [anon_sym_c_short] = ACTIONS(1206), - [anon_sym_c_ushort] = ACTIONS(1206), - [anon_sym_c_int] = ACTIONS(1206), - [anon_sym_c_uint] = ACTIONS(1206), - [anon_sym_c_long] = ACTIONS(1206), - [anon_sym_c_ulong] = ACTIONS(1206), - [anon_sym_c_longlong] = ACTIONS(1206), - [anon_sym_c_ulonglong] = ACTIONS(1206), - [anon_sym_c_float] = ACTIONS(1206), - [anon_sym_c_double] = ACTIONS(1206), - [anon_sym_c_longdouble] = ACTIONS(1206), - [anon_sym_PLUS_EQ] = ACTIONS(1204), - [anon_sym_DASH_EQ] = ACTIONS(1204), - [anon_sym_STAR_EQ] = ACTIONS(1204), - [anon_sym_SLASH_EQ] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1206), - [anon_sym_yield] = ACTIONS(1206), - [anon_sym_COLON] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_defer] = ACTIONS(1206), - [anon_sym_errdefer] = ACTIONS(1206), - [anon_sym_if] = ACTIONS(1206), - [anon_sym_else] = ACTIONS(1206), - [anon_sym_while] = ACTIONS(1206), - [anon_sym_expand] = ACTIONS(1206), - [anon_sym_for] = ACTIONS(1206), - [anon_sym_match] = ACTIONS(1206), - [anon_sym_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1204), - [anon_sym_orelse] = ACTIONS(1206), - [anon_sym_catch] = ACTIONS(1206), - [anon_sym_or] = ACTIONS(1206), - [anon_sym_and] = ACTIONS(1206), - [anon_sym_EQ_EQ] = ACTIONS(1204), - [anon_sym_BANG_EQ] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1204), - [anon_sym_GT] = ACTIONS(1206), - [anon_sym_GT_EQ] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1206), - [anon_sym_SLASH] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1204), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_DOT] = ACTIONS(1206), - [anon_sym_CARET] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1206), - [anon_sym_false] = ACTIONS(1206), - [sym_none] = ACTIONS(1206), - [sym_undefined] = ACTIONS(1206), - [sym_sink] = ACTIONS(1206), - [sym_integer] = ACTIONS(1206), - [sym_float] = ACTIONS(1204), - [anon_sym_DQUOTE] = ACTIONS(1204), - [sym_multiline_string] = ACTIONS(1204), - [sym_character] = ACTIONS(1204), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1204), + [sym__newline] = ACTIONS(447), }, [STATE(472)] = { - [ts_builtin_sym_end] = ACTIONS(1208), - [sym_identifier] = ACTIONS(1210), - [anon_sym_import] = ACTIONS(1210), - [anon_sym_test] = ACTIONS(1210), - [anon_sym_hide] = ACTIONS(1210), - [anon_sym_func] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_EQ] = ACTIONS(1210), - [anon_sym_struct] = ACTIONS(1210), - [anon_sym_LPAREN] = ACTIONS(1208), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_DOLLAR] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_RBRACK] = ACTIONS(1208), - [anon_sym_void] = ACTIONS(1210), - [anon_sym_anyopaque] = ACTIONS(1210), - [anon_sym_bool] = ACTIONS(1210), - [anon_sym_int] = ACTIONS(1210), - [anon_sym_uint] = ACTIONS(1210), - [anon_sym_float] = ACTIONS(1210), - [anon_sym_range] = ACTIONS(1210), - [anon_sym_i8] = ACTIONS(1210), - [anon_sym_i16] = ACTIONS(1210), - [anon_sym_i32] = ACTIONS(1210), - [anon_sym_i64] = ACTIONS(1210), - [anon_sym_u8] = ACTIONS(1210), - [anon_sym_u16] = ACTIONS(1210), - [anon_sym_u32] = ACTIONS(1210), - [anon_sym_u64] = ACTIONS(1210), - [anon_sym_isize] = ACTIONS(1210), - [anon_sym_usize] = ACTIONS(1210), - [anon_sym_f32] = ACTIONS(1210), - [anon_sym_f64] = ACTIONS(1210), - [anon_sym_c_char] = ACTIONS(1210), - [anon_sym_c_schar] = ACTIONS(1210), - [anon_sym_c_uchar] = ACTIONS(1210), - [anon_sym_c_short] = ACTIONS(1210), - [anon_sym_c_ushort] = ACTIONS(1210), - [anon_sym_c_int] = ACTIONS(1210), - [anon_sym_c_uint] = ACTIONS(1210), - [anon_sym_c_long] = ACTIONS(1210), - [anon_sym_c_ulong] = ACTIONS(1210), - [anon_sym_c_longlong] = ACTIONS(1210), - [anon_sym_c_ulonglong] = ACTIONS(1210), - [anon_sym_c_float] = ACTIONS(1210), - [anon_sym_c_double] = ACTIONS(1210), - [anon_sym_c_longdouble] = ACTIONS(1210), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1210), - [anon_sym_yield] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1210), - [anon_sym_continue] = ACTIONS(1210), - [anon_sym_defer] = ACTIONS(1210), - [anon_sym_errdefer] = ACTIONS(1210), - [anon_sym_if] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1210), - [anon_sym_while] = ACTIONS(1210), - [anon_sym_expand] = ACTIONS(1210), - [anon_sym_for] = ACTIONS(1210), - [anon_sym_match] = ACTIONS(1210), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1208), - [anon_sym_orelse] = ACTIONS(1210), - [anon_sym_catch] = ACTIONS(1210), - [anon_sym_or] = ACTIONS(1210), - [anon_sym_and] = ACTIONS(1210), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1210), - [anon_sym_DOT] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_true] = ACTIONS(1210), - [anon_sym_false] = ACTIONS(1210), - [sym_none] = ACTIONS(1210), - [sym_undefined] = ACTIONS(1210), - [sym_sink] = ACTIONS(1210), - [sym_integer] = ACTIONS(1210), - [sym_float] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1208), - [sym_multiline_string] = ACTIONS(1208), - [sym_character] = ACTIONS(1208), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(477), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1208), + [sym__newline] = ACTIONS(1447), }, [STATE(473)] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_identifier] = ACTIONS(1214), - [anon_sym_import] = ACTIONS(1214), - [anon_sym_test] = ACTIONS(1214), - [anon_sym_hide] = ACTIONS(1214), - [anon_sym_func] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_EQ] = ACTIONS(1214), - [anon_sym_struct] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1212), - [anon_sym_RPAREN] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1212), - [anon_sym_COMMA] = ACTIONS(1212), - [anon_sym_RBRACE] = ACTIONS(1212), - [anon_sym_DASH] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1212), - [anon_sym_PIPE] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1212), - [anon_sym_SEMI] = ACTIONS(1212), - [anon_sym_RBRACK] = ACTIONS(1212), - [anon_sym_void] = ACTIONS(1214), - [anon_sym_anyopaque] = ACTIONS(1214), - [anon_sym_bool] = ACTIONS(1214), - [anon_sym_int] = ACTIONS(1214), - [anon_sym_uint] = ACTIONS(1214), - [anon_sym_float] = ACTIONS(1214), - [anon_sym_range] = ACTIONS(1214), - [anon_sym_i8] = ACTIONS(1214), - [anon_sym_i16] = ACTIONS(1214), - [anon_sym_i32] = ACTIONS(1214), - [anon_sym_i64] = ACTIONS(1214), - [anon_sym_u8] = ACTIONS(1214), - [anon_sym_u16] = ACTIONS(1214), - [anon_sym_u32] = ACTIONS(1214), - [anon_sym_u64] = ACTIONS(1214), - [anon_sym_isize] = ACTIONS(1214), - [anon_sym_usize] = ACTIONS(1214), - [anon_sym_f32] = ACTIONS(1214), - [anon_sym_f64] = ACTIONS(1214), - [anon_sym_c_char] = ACTIONS(1214), - [anon_sym_c_schar] = ACTIONS(1214), - [anon_sym_c_uchar] = ACTIONS(1214), - [anon_sym_c_short] = ACTIONS(1214), - [anon_sym_c_ushort] = ACTIONS(1214), - [anon_sym_c_int] = ACTIONS(1214), - [anon_sym_c_uint] = ACTIONS(1214), - [anon_sym_c_long] = ACTIONS(1214), - [anon_sym_c_ulong] = ACTIONS(1214), - [anon_sym_c_longlong] = ACTIONS(1214), - [anon_sym_c_ulonglong] = ACTIONS(1214), - [anon_sym_c_float] = ACTIONS(1214), - [anon_sym_c_double] = ACTIONS(1214), - [anon_sym_c_longdouble] = ACTIONS(1214), - [anon_sym_PLUS_EQ] = ACTIONS(1212), - [anon_sym_DASH_EQ] = ACTIONS(1212), - [anon_sym_STAR_EQ] = ACTIONS(1212), - [anon_sym_SLASH_EQ] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_yield] = ACTIONS(1214), - [anon_sym_COLON] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1214), - [anon_sym_continue] = ACTIONS(1214), - [anon_sym_defer] = ACTIONS(1214), - [anon_sym_errdefer] = ACTIONS(1214), - [anon_sym_if] = ACTIONS(1214), - [anon_sym_else] = ACTIONS(1214), - [anon_sym_while] = ACTIONS(1214), - [anon_sym_expand] = ACTIONS(1214), - [anon_sym_for] = ACTIONS(1214), - [anon_sym_match] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1212), - [anon_sym_orelse] = ACTIONS(1214), - [anon_sym_catch] = ACTIONS(1214), - [anon_sym_or] = ACTIONS(1214), - [anon_sym_and] = ACTIONS(1214), - [anon_sym_EQ_EQ] = ACTIONS(1212), - [anon_sym_BANG_EQ] = ACTIONS(1212), - [anon_sym_LT] = ACTIONS(1214), - [anon_sym_LT_EQ] = ACTIONS(1212), - [anon_sym_GT] = ACTIONS(1214), - [anon_sym_GT_EQ] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1214), - [anon_sym_SLASH] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1212), - [anon_sym_try] = ACTIONS(1214), - [anon_sym_DOT] = ACTIONS(1214), - [anon_sym_CARET] = ACTIONS(1212), - [anon_sym_true] = ACTIONS(1214), - [anon_sym_false] = ACTIONS(1214), - [sym_none] = ACTIONS(1214), - [sym_undefined] = ACTIONS(1214), - [sym_sink] = ACTIONS(1214), - [sym_integer] = ACTIONS(1214), - [sym_float] = ACTIONS(1212), - [anon_sym_DQUOTE] = ACTIONS(1212), - [sym_multiline_string] = ACTIONS(1212), - [sym_character] = ACTIONS(1212), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1212), + [sym__newline] = ACTIONS(447), }, [STATE(474)] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_import] = ACTIONS(1218), - [anon_sym_test] = ACTIONS(1218), - [anon_sym_hide] = ACTIONS(1218), - [anon_sym_func] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_RPAREN] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_COMMA] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1218), - [anon_sym_DOLLAR] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_QMARK] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_RBRACK] = ACTIONS(1216), - [anon_sym_void] = ACTIONS(1218), - [anon_sym_anyopaque] = ACTIONS(1218), - [anon_sym_bool] = ACTIONS(1218), - [anon_sym_int] = ACTIONS(1218), - [anon_sym_uint] = ACTIONS(1218), - [anon_sym_float] = ACTIONS(1218), - [anon_sym_range] = ACTIONS(1218), - [anon_sym_i8] = ACTIONS(1218), - [anon_sym_i16] = ACTIONS(1218), - [anon_sym_i32] = ACTIONS(1218), - [anon_sym_i64] = ACTIONS(1218), - [anon_sym_u8] = ACTIONS(1218), - [anon_sym_u16] = ACTIONS(1218), - [anon_sym_u32] = ACTIONS(1218), - [anon_sym_u64] = ACTIONS(1218), - [anon_sym_isize] = ACTIONS(1218), - [anon_sym_usize] = ACTIONS(1218), - [anon_sym_f32] = ACTIONS(1218), - [anon_sym_f64] = ACTIONS(1218), - [anon_sym_c_char] = ACTIONS(1218), - [anon_sym_c_schar] = ACTIONS(1218), - [anon_sym_c_uchar] = ACTIONS(1218), - [anon_sym_c_short] = ACTIONS(1218), - [anon_sym_c_ushort] = ACTIONS(1218), - [anon_sym_c_int] = ACTIONS(1218), - [anon_sym_c_uint] = ACTIONS(1218), - [anon_sym_c_long] = ACTIONS(1218), - [anon_sym_c_ulong] = ACTIONS(1218), - [anon_sym_c_longlong] = ACTIONS(1218), - [anon_sym_c_ulonglong] = ACTIONS(1218), - [anon_sym_c_float] = ACTIONS(1218), - [anon_sym_c_double] = ACTIONS(1218), - [anon_sym_c_longdouble] = ACTIONS(1218), - [anon_sym_PLUS_EQ] = ACTIONS(1216), - [anon_sym_DASH_EQ] = ACTIONS(1216), - [anon_sym_STAR_EQ] = ACTIONS(1216), - [anon_sym_SLASH_EQ] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_COLON] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_defer] = ACTIONS(1218), - [anon_sym_errdefer] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_else] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_expand] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1216), - [anon_sym_orelse] = ACTIONS(1218), - [anon_sym_catch] = ACTIONS(1218), - [anon_sym_or] = ACTIONS(1218), - [anon_sym_and] = ACTIONS(1218), - [anon_sym_EQ_EQ] = ACTIONS(1216), - [anon_sym_BANG_EQ] = ACTIONS(1216), - [anon_sym_LT] = ACTIONS(1218), - [anon_sym_LT_EQ] = ACTIONS(1216), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_GT_EQ] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_try] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [sym_none] = ACTIONS(1218), - [sym_undefined] = ACTIONS(1218), - [sym_sink] = ACTIONS(1218), - [sym_integer] = ACTIONS(1218), - [sym_float] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(1216), - [sym_multiline_string] = ACTIONS(1216), - [sym_character] = ACTIONS(1216), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(478), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1216), + [sym__newline] = ACTIONS(1449), }, [STATE(475)] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_import] = ACTIONS(1222), - [anon_sym_test] = ACTIONS(1222), - [anon_sym_hide] = ACTIONS(1222), - [anon_sym_func] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_RPAREN] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1220), - [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_QMARK] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_RBRACK] = ACTIONS(1220), - [anon_sym_void] = ACTIONS(1222), - [anon_sym_anyopaque] = ACTIONS(1222), - [anon_sym_bool] = ACTIONS(1222), - [anon_sym_int] = ACTIONS(1222), - [anon_sym_uint] = ACTIONS(1222), - [anon_sym_float] = ACTIONS(1222), - [anon_sym_range] = ACTIONS(1222), - [anon_sym_i8] = ACTIONS(1222), - [anon_sym_i16] = ACTIONS(1222), - [anon_sym_i32] = ACTIONS(1222), - [anon_sym_i64] = ACTIONS(1222), - [anon_sym_u8] = ACTIONS(1222), - [anon_sym_u16] = ACTIONS(1222), - [anon_sym_u32] = ACTIONS(1222), - [anon_sym_u64] = ACTIONS(1222), - [anon_sym_isize] = ACTIONS(1222), - [anon_sym_usize] = ACTIONS(1222), - [anon_sym_f32] = ACTIONS(1222), - [anon_sym_f64] = ACTIONS(1222), - [anon_sym_c_char] = ACTIONS(1222), - [anon_sym_c_schar] = ACTIONS(1222), - [anon_sym_c_uchar] = ACTIONS(1222), - [anon_sym_c_short] = ACTIONS(1222), - [anon_sym_c_ushort] = ACTIONS(1222), - [anon_sym_c_int] = ACTIONS(1222), - [anon_sym_c_uint] = ACTIONS(1222), - [anon_sym_c_long] = ACTIONS(1222), - [anon_sym_c_ulong] = ACTIONS(1222), - [anon_sym_c_longlong] = ACTIONS(1222), - [anon_sym_c_ulonglong] = ACTIONS(1222), - [anon_sym_c_float] = ACTIONS(1222), - [anon_sym_c_double] = ACTIONS(1222), - [anon_sym_c_longdouble] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1220), - [anon_sym_DASH_EQ] = ACTIONS(1220), - [anon_sym_STAR_EQ] = ACTIONS(1220), - [anon_sym_SLASH_EQ] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_COLON] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_defer] = ACTIONS(1222), - [anon_sym_errdefer] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_expand] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1220), - [anon_sym_orelse] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1222), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1220), - [anon_sym_BANG_EQ] = ACTIONS(1220), - [anon_sym_LT] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1220), - [anon_sym_GT] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_try] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1222), - [anon_sym_CARET] = ACTIONS(1220), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [sym_none] = ACTIONS(1222), - [sym_undefined] = ACTIONS(1222), - [sym_sink] = ACTIONS(1222), - [sym_integer] = ACTIONS(1222), - [sym_float] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1220), - [sym_multiline_string] = ACTIONS(1220), - [sym_character] = ACTIONS(1220), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(479), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1220), + [sym__newline] = ACTIONS(1451), }, [STATE(476)] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_import] = ACTIONS(1226), - [anon_sym_test] = ACTIONS(1226), - [anon_sym_hide] = ACTIONS(1226), - [anon_sym_func] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_QMARK] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_RBRACK] = ACTIONS(1224), - [anon_sym_void] = ACTIONS(1226), - [anon_sym_anyopaque] = ACTIONS(1226), - [anon_sym_bool] = ACTIONS(1226), - [anon_sym_int] = ACTIONS(1226), - [anon_sym_uint] = ACTIONS(1226), - [anon_sym_float] = ACTIONS(1226), - [anon_sym_range] = ACTIONS(1226), - [anon_sym_i8] = ACTIONS(1226), - [anon_sym_i16] = ACTIONS(1226), - [anon_sym_i32] = ACTIONS(1226), - [anon_sym_i64] = ACTIONS(1226), - [anon_sym_u8] = ACTIONS(1226), - [anon_sym_u16] = ACTIONS(1226), - [anon_sym_u32] = ACTIONS(1226), - [anon_sym_u64] = ACTIONS(1226), - [anon_sym_isize] = ACTIONS(1226), - [anon_sym_usize] = ACTIONS(1226), - [anon_sym_f32] = ACTIONS(1226), - [anon_sym_f64] = ACTIONS(1226), - [anon_sym_c_char] = ACTIONS(1226), - [anon_sym_c_schar] = ACTIONS(1226), - [anon_sym_c_uchar] = ACTIONS(1226), - [anon_sym_c_short] = ACTIONS(1226), - [anon_sym_c_ushort] = ACTIONS(1226), - [anon_sym_c_int] = ACTIONS(1226), - [anon_sym_c_uint] = ACTIONS(1226), - [anon_sym_c_long] = ACTIONS(1226), - [anon_sym_c_ulong] = ACTIONS(1226), - [anon_sym_c_longlong] = ACTIONS(1226), - [anon_sym_c_ulonglong] = ACTIONS(1226), - [anon_sym_c_float] = ACTIONS(1226), - [anon_sym_c_double] = ACTIONS(1226), - [anon_sym_c_longdouble] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1224), - [anon_sym_DASH_EQ] = ACTIONS(1224), - [anon_sym_STAR_EQ] = ACTIONS(1224), - [anon_sym_SLASH_EQ] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_COLON] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_defer] = ACTIONS(1226), - [anon_sym_errdefer] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_expand] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_match] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1224), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_catch] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1226), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1224), - [anon_sym_BANG_EQ] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1226), - [anon_sym_LT_EQ] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_try] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1226), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [sym_none] = ACTIONS(1226), - [sym_undefined] = ACTIONS(1226), - [sym_sink] = ACTIONS(1226), - [sym_integer] = ACTIONS(1226), - [sym_float] = ACTIONS(1224), - [anon_sym_DQUOTE] = ACTIONS(1224), - [sym_multiline_string] = ACTIONS(1224), - [sym_character] = ACTIONS(1224), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1224), + [sym__newline] = ACTIONS(447), }, [STATE(477)] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_import] = ACTIONS(1230), - [anon_sym_test] = ACTIONS(1230), - [anon_sym_hide] = ACTIONS(1230), - [anon_sym_func] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_COMMA] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1230), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_RBRACK] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1230), - [anon_sym_anyopaque] = ACTIONS(1230), - [anon_sym_bool] = ACTIONS(1230), - [anon_sym_int] = ACTIONS(1230), - [anon_sym_uint] = ACTIONS(1230), - [anon_sym_float] = ACTIONS(1230), - [anon_sym_range] = ACTIONS(1230), - [anon_sym_i8] = ACTIONS(1230), - [anon_sym_i16] = ACTIONS(1230), - [anon_sym_i32] = ACTIONS(1230), - [anon_sym_i64] = ACTIONS(1230), - [anon_sym_u8] = ACTIONS(1230), - [anon_sym_u16] = ACTIONS(1230), - [anon_sym_u32] = ACTIONS(1230), - [anon_sym_u64] = ACTIONS(1230), - [anon_sym_isize] = ACTIONS(1230), - [anon_sym_usize] = ACTIONS(1230), - [anon_sym_f32] = ACTIONS(1230), - [anon_sym_f64] = ACTIONS(1230), - [anon_sym_c_char] = ACTIONS(1230), - [anon_sym_c_schar] = ACTIONS(1230), - [anon_sym_c_uchar] = ACTIONS(1230), - [anon_sym_c_short] = ACTIONS(1230), - [anon_sym_c_ushort] = ACTIONS(1230), - [anon_sym_c_int] = ACTIONS(1230), - [anon_sym_c_uint] = ACTIONS(1230), - [anon_sym_c_long] = ACTIONS(1230), - [anon_sym_c_ulong] = ACTIONS(1230), - [anon_sym_c_longlong] = ACTIONS(1230), - [anon_sym_c_ulonglong] = ACTIONS(1230), - [anon_sym_c_float] = ACTIONS(1230), - [anon_sym_c_double] = ACTIONS(1230), - [anon_sym_c_longdouble] = ACTIONS(1230), - [anon_sym_PLUS_EQ] = ACTIONS(1228), - [anon_sym_DASH_EQ] = ACTIONS(1228), - [anon_sym_STAR_EQ] = ACTIONS(1228), - [anon_sym_SLASH_EQ] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_defer] = ACTIONS(1230), - [anon_sym_errdefer] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_expand] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_match] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1228), - [anon_sym_orelse] = ACTIONS(1230), - [anon_sym_catch] = ACTIONS(1230), - [anon_sym_or] = ACTIONS(1230), - [anon_sym_and] = ACTIONS(1230), - [anon_sym_EQ_EQ] = ACTIONS(1228), - [anon_sym_BANG_EQ] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1230), - [anon_sym_LT_EQ] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_try] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1230), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [sym_none] = ACTIONS(1230), - [sym_undefined] = ACTIONS(1230), - [sym_sink] = ACTIONS(1230), - [sym_integer] = ACTIONS(1230), - [sym_float] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_multiline_string] = ACTIONS(1228), - [sym_character] = ACTIONS(1228), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1228), + [sym__newline] = ACTIONS(447), }, [STATE(478)] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_import] = ACTIONS(1234), - [anon_sym_test] = ACTIONS(1234), - [anon_sym_hide] = ACTIONS(1234), - [anon_sym_func] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_RPAREN] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_RBRACK] = ACTIONS(1232), - [anon_sym_void] = ACTIONS(1234), - [anon_sym_anyopaque] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_int] = ACTIONS(1234), - [anon_sym_uint] = ACTIONS(1234), - [anon_sym_float] = ACTIONS(1234), - [anon_sym_range] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_c_char] = ACTIONS(1234), - [anon_sym_c_schar] = ACTIONS(1234), - [anon_sym_c_uchar] = ACTIONS(1234), - [anon_sym_c_short] = ACTIONS(1234), - [anon_sym_c_ushort] = ACTIONS(1234), - [anon_sym_c_int] = ACTIONS(1234), - [anon_sym_c_uint] = ACTIONS(1234), - [anon_sym_c_long] = ACTIONS(1234), - [anon_sym_c_ulong] = ACTIONS(1234), - [anon_sym_c_longlong] = ACTIONS(1234), - [anon_sym_c_ulonglong] = ACTIONS(1234), - [anon_sym_c_float] = ACTIONS(1234), - [anon_sym_c_double] = ACTIONS(1234), - [anon_sym_c_longdouble] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_COLON] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_defer] = ACTIONS(1234), - [anon_sym_errdefer] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_expand] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_orelse] = ACTIONS(1234), - [anon_sym_catch] = ACTIONS(1234), - [anon_sym_or] = ACTIONS(1234), - [anon_sym_and] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_try] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [sym_none] = ACTIONS(1234), - [sym_undefined] = ACTIONS(1234), - [sym_sink] = ACTIONS(1234), - [sym_integer] = ACTIONS(1234), - [sym_float] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1232), - [sym_multiline_string] = ACTIONS(1232), - [sym_character] = ACTIONS(1232), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1232), + [sym__newline] = ACTIONS(447), }, [STATE(479)] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_import] = ACTIONS(1238), - [anon_sym_test] = ACTIONS(1238), - [anon_sym_hide] = ACTIONS(1238), - [anon_sym_func] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_RPAREN] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_DOLLAR] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_RBRACK] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1238), - [anon_sym_anyopaque] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_int] = ACTIONS(1238), - [anon_sym_uint] = ACTIONS(1238), - [anon_sym_float] = ACTIONS(1238), - [anon_sym_range] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_c_char] = ACTIONS(1238), - [anon_sym_c_schar] = ACTIONS(1238), - [anon_sym_c_uchar] = ACTIONS(1238), - [anon_sym_c_short] = ACTIONS(1238), - [anon_sym_c_ushort] = ACTIONS(1238), - [anon_sym_c_int] = ACTIONS(1238), - [anon_sym_c_uint] = ACTIONS(1238), - [anon_sym_c_long] = ACTIONS(1238), - [anon_sym_c_ulong] = ACTIONS(1238), - [anon_sym_c_longlong] = ACTIONS(1238), - [anon_sym_c_ulonglong] = ACTIONS(1238), - [anon_sym_c_float] = ACTIONS(1238), - [anon_sym_c_double] = ACTIONS(1238), - [anon_sym_c_longdouble] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_defer] = ACTIONS(1238), - [anon_sym_errdefer] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_expand] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_orelse] = ACTIONS(1238), - [anon_sym_catch] = ACTIONS(1238), - [anon_sym_or] = ACTIONS(1238), - [anon_sym_and] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_try] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [sym_none] = ACTIONS(1238), - [sym_undefined] = ACTIONS(1238), - [sym_sink] = ACTIONS(1238), - [sym_integer] = ACTIONS(1238), - [sym_float] = ACTIONS(1236), - [anon_sym_DQUOTE] = ACTIONS(1236), - [sym_multiline_string] = ACTIONS(1236), - [sym_character] = ACTIONS(1236), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1236), + [sym__newline] = ACTIONS(447), }, [STATE(480)] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(1242), - [anon_sym_test] = ACTIONS(1242), - [anon_sym_hide] = ACTIONS(1242), - [anon_sym_func] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_COMMA] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_RBRACK] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_anyopaque] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_int] = ACTIONS(1242), - [anon_sym_uint] = ACTIONS(1242), - [anon_sym_float] = ACTIONS(1242), - [anon_sym_range] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_c_char] = ACTIONS(1242), - [anon_sym_c_schar] = ACTIONS(1242), - [anon_sym_c_uchar] = ACTIONS(1242), - [anon_sym_c_short] = ACTIONS(1242), - [anon_sym_c_ushort] = ACTIONS(1242), - [anon_sym_c_int] = ACTIONS(1242), - [anon_sym_c_uint] = ACTIONS(1242), - [anon_sym_c_long] = ACTIONS(1242), - [anon_sym_c_ulong] = ACTIONS(1242), - [anon_sym_c_longlong] = ACTIONS(1242), - [anon_sym_c_ulonglong] = ACTIONS(1242), - [anon_sym_c_float] = ACTIONS(1242), - [anon_sym_c_double] = ACTIONS(1242), - [anon_sym_c_longdouble] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_COLON] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_defer] = ACTIONS(1242), - [anon_sym_errdefer] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_expand] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_orelse] = ACTIONS(1242), - [anon_sym_catch] = ACTIONS(1242), - [anon_sym_or] = ACTIONS(1242), - [anon_sym_and] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_try] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_none] = ACTIONS(1242), - [sym_undefined] = ACTIONS(1242), - [sym_sink] = ACTIONS(1242), - [sym_integer] = ACTIONS(1242), - [sym_float] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_multiline_string] = ACTIONS(1240), - [sym_character] = ACTIONS(1240), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1240), + [sym__newline] = ACTIONS(1453), }, [STATE(481)] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_import] = ACTIONS(1246), - [anon_sym_test] = ACTIONS(1246), - [anon_sym_hide] = ACTIONS(1246), - [anon_sym_func] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_COMMA] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_DOLLAR] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_RBRACK] = ACTIONS(1244), - [anon_sym_void] = ACTIONS(1246), - [anon_sym_anyopaque] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_int] = ACTIONS(1246), - [anon_sym_uint] = ACTIONS(1246), - [anon_sym_float] = ACTIONS(1246), - [anon_sym_range] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_c_char] = ACTIONS(1246), - [anon_sym_c_schar] = ACTIONS(1246), - [anon_sym_c_uchar] = ACTIONS(1246), - [anon_sym_c_short] = ACTIONS(1246), - [anon_sym_c_ushort] = ACTIONS(1246), - [anon_sym_c_int] = ACTIONS(1246), - [anon_sym_c_uint] = ACTIONS(1246), - [anon_sym_c_long] = ACTIONS(1246), - [anon_sym_c_ulong] = ACTIONS(1246), - [anon_sym_c_longlong] = ACTIONS(1246), - [anon_sym_c_ulonglong] = ACTIONS(1246), - [anon_sym_c_float] = ACTIONS(1246), - [anon_sym_c_double] = ACTIONS(1246), - [anon_sym_c_longdouble] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_COLON] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_defer] = ACTIONS(1246), - [anon_sym_errdefer] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_expand] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_orelse] = ACTIONS(1246), - [anon_sym_catch] = ACTIONS(1246), - [anon_sym_or] = ACTIONS(1246), - [anon_sym_and] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_try] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [sym_none] = ACTIONS(1246), - [sym_undefined] = ACTIONS(1246), - [sym_sink] = ACTIONS(1246), - [sym_integer] = ACTIONS(1246), - [sym_float] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym_multiline_string] = ACTIONS(1244), - [sym_character] = ACTIONS(1244), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1516), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1516), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1244), + [sym__newline] = ACTIONS(447), }, [STATE(482)] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(1250), - [anon_sym_test] = ACTIONS(1250), - [anon_sym_hide] = ACTIONS(1250), - [anon_sym_func] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_RPAREN] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_DOLLAR] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1248), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_anyopaque] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_int] = ACTIONS(1250), - [anon_sym_uint] = ACTIONS(1250), - [anon_sym_float] = ACTIONS(1250), - [anon_sym_range] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_c_char] = ACTIONS(1250), - [anon_sym_c_schar] = ACTIONS(1250), - [anon_sym_c_uchar] = ACTIONS(1250), - [anon_sym_c_short] = ACTIONS(1250), - [anon_sym_c_ushort] = ACTIONS(1250), - [anon_sym_c_int] = ACTIONS(1250), - [anon_sym_c_uint] = ACTIONS(1250), - [anon_sym_c_long] = ACTIONS(1250), - [anon_sym_c_ulong] = ACTIONS(1250), - [anon_sym_c_longlong] = ACTIONS(1250), - [anon_sym_c_ulonglong] = ACTIONS(1250), - [anon_sym_c_float] = ACTIONS(1250), - [anon_sym_c_double] = ACTIONS(1250), - [anon_sym_c_longdouble] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_defer] = ACTIONS(1250), - [anon_sym_errdefer] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_expand] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), - [anon_sym_orelse] = ACTIONS(1250), - [anon_sym_catch] = ACTIONS(1250), - [anon_sym_or] = ACTIONS(1250), - [anon_sym_and] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_try] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [sym_none] = ACTIONS(1250), - [sym_undefined] = ACTIONS(1250), - [sym_sink] = ACTIONS(1250), - [sym_integer] = ACTIONS(1250), - [sym_float] = ACTIONS(1248), - [anon_sym_DQUOTE] = ACTIONS(1248), - [sym_multiline_string] = ACTIONS(1248), - [sym_character] = ACTIONS(1248), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1248), + [sym__newline] = ACTIONS(447), }, [STATE(483)] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [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(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(1254), - [anon_sym_DOLLAR] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_QMARK] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_RBRACK] = ACTIONS(1252), - [anon_sym_void] = 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_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(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(1252), - [anon_sym_orelse] = ACTIONS(1254), - [anon_sym_catch] = ACTIONS(1254), - [anon_sym_or] = ACTIONS(1254), - [anon_sym_and] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1252), - [anon_sym_BANG_EQ] = ACTIONS(1252), - [anon_sym_LT] = ACTIONS(1254), - [anon_sym_LT_EQ] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_try] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1254), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [sym_none] = ACTIONS(1254), - [sym_undefined] = ACTIONS(1254), - [sym_sink] = ACTIONS(1254), - [sym_integer] = ACTIONS(1254), - [sym_float] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(1252), - [sym_multiline_string] = ACTIONS(1252), - [sym_character] = ACTIONS(1252), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1252), + [sym__newline] = ACTIONS(447), }, [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_import] = ACTIONS(1258), - [anon_sym_test] = ACTIONS(1258), - [anon_sym_hide] = ACTIONS(1258), - [anon_sym_func] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_COMMA] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_QMARK] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_RBRACK] = ACTIONS(1256), - [anon_sym_void] = ACTIONS(1258), - [anon_sym_anyopaque] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_int] = ACTIONS(1258), - [anon_sym_uint] = ACTIONS(1258), - [anon_sym_float] = ACTIONS(1258), - [anon_sym_range] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_c_char] = ACTIONS(1258), - [anon_sym_c_schar] = ACTIONS(1258), - [anon_sym_c_uchar] = ACTIONS(1258), - [anon_sym_c_short] = ACTIONS(1258), - [anon_sym_c_ushort] = ACTIONS(1258), - [anon_sym_c_int] = ACTIONS(1258), - [anon_sym_c_uint] = ACTIONS(1258), - [anon_sym_c_long] = ACTIONS(1258), - [anon_sym_c_ulong] = ACTIONS(1258), - [anon_sym_c_longlong] = ACTIONS(1258), - [anon_sym_c_ulonglong] = ACTIONS(1258), - [anon_sym_c_float] = ACTIONS(1258), - [anon_sym_c_double] = ACTIONS(1258), - [anon_sym_c_longdouble] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1256), - [anon_sym_DASH_EQ] = ACTIONS(1256), - [anon_sym_STAR_EQ] = ACTIONS(1256), - [anon_sym_SLASH_EQ] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_COLON] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_defer] = ACTIONS(1258), - [anon_sym_errdefer] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_expand] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1256), - [anon_sym_orelse] = ACTIONS(1258), - [anon_sym_catch] = ACTIONS(1258), - [anon_sym_or] = ACTIONS(1258), - [anon_sym_and] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1256), - [anon_sym_BANG_EQ] = ACTIONS(1256), - [anon_sym_LT] = ACTIONS(1258), - [anon_sym_LT_EQ] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_try] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1258), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [sym_none] = ACTIONS(1258), - [sym_undefined] = ACTIONS(1258), - [sym_sink] = ACTIONS(1258), - [sym_integer] = ACTIONS(1258), - [sym_float] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1256), - [sym_multiline_string] = ACTIONS(1256), - [sym_character] = ACTIONS(1256), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1256), + [sym__newline] = ACTIONS(447), }, [STATE(485)] = { - [ts_builtin_sym_end] = ACTIONS(399), - [sym_identifier] = ACTIONS(397), - [anon_sym_import] = ACTIONS(397), - [anon_sym_test] = ACTIONS(397), - [anon_sym_hide] = ACTIONS(397), - [anon_sym_func] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_COMMA] = ACTIONS(399), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_DOLLAR] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_QMARK] = ACTIONS(399), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(399), - [anon_sym_void] = ACTIONS(397), - [anon_sym_anyopaque] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_int] = ACTIONS(397), - [anon_sym_uint] = ACTIONS(397), - [anon_sym_float] = ACTIONS(397), - [anon_sym_range] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_c_char] = ACTIONS(397), - [anon_sym_c_schar] = ACTIONS(397), - [anon_sym_c_uchar] = ACTIONS(397), - [anon_sym_c_short] = ACTIONS(397), - [anon_sym_c_ushort] = ACTIONS(397), - [anon_sym_c_int] = ACTIONS(397), - [anon_sym_c_uint] = ACTIONS(397), - [anon_sym_c_long] = ACTIONS(397), - [anon_sym_c_ulong] = ACTIONS(397), - [anon_sym_c_longlong] = ACTIONS(397), - [anon_sym_c_ulonglong] = ACTIONS(397), - [anon_sym_c_float] = ACTIONS(397), - [anon_sym_c_double] = ACTIONS(397), - [anon_sym_c_longdouble] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(399), - [anon_sym_DASH_EQ] = ACTIONS(399), - [anon_sym_STAR_EQ] = ACTIONS(399), - [anon_sym_SLASH_EQ] = ACTIONS(399), - [anon_sym_return] = ACTIONS(397), - [anon_sym_yield] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_break] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_defer] = ACTIONS(397), - [anon_sym_errdefer] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_else] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_expand] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(399), - [anon_sym_orelse] = ACTIONS(397), - [anon_sym_catch] = ACTIONS(397), - [anon_sym_or] = ACTIONS(397), - [anon_sym_and] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(399), - [anon_sym_BANG_EQ] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_LT_EQ] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_AMP] = ACTIONS(399), - [anon_sym_try] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(399), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_none] = ACTIONS(397), - [sym_undefined] = ACTIONS(397), - [sym_sink] = ACTIONS(397), - [sym_integer] = ACTIONS(397), - [sym_float] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [sym_multiline_string] = ACTIONS(399), - [sym_character] = ACTIONS(399), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(399), + [sym__newline] = ACTIONS(447), }, [STATE(486)] = { - [ts_builtin_sym_end] = ACTIONS(237), - [sym_identifier] = ACTIONS(231), - [anon_sym_import] = ACTIONS(231), - [anon_sym_test] = ACTIONS(231), - [anon_sym_hide] = ACTIONS(231), - [anon_sym_func] = ACTIONS(231), - [anon_sym_BANG] = ACTIONS(231), - [anon_sym_EQ] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(231), - [anon_sym_LPAREN] = ACTIONS(237), - [anon_sym_RPAREN] = ACTIONS(237), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_COMMA] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(237), - [anon_sym_DASH] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(237), - [anon_sym_PIPE] = ACTIONS(237), - [anon_sym_QMARK] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_LBRACK] = ACTIONS(237), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_RBRACK] = ACTIONS(237), - [anon_sym_void] = ACTIONS(231), - [anon_sym_anyopaque] = ACTIONS(231), - [anon_sym_bool] = ACTIONS(231), - [anon_sym_int] = ACTIONS(231), - [anon_sym_uint] = ACTIONS(231), - [anon_sym_float] = ACTIONS(231), - [anon_sym_range] = ACTIONS(231), - [anon_sym_i8] = ACTIONS(231), - [anon_sym_i16] = ACTIONS(231), - [anon_sym_i32] = ACTIONS(231), - [anon_sym_i64] = ACTIONS(231), - [anon_sym_u8] = ACTIONS(231), - [anon_sym_u16] = ACTIONS(231), - [anon_sym_u32] = ACTIONS(231), - [anon_sym_u64] = ACTIONS(231), - [anon_sym_isize] = ACTIONS(231), - [anon_sym_usize] = ACTIONS(231), - [anon_sym_f32] = ACTIONS(231), - [anon_sym_f64] = ACTIONS(231), - [anon_sym_c_char] = ACTIONS(231), - [anon_sym_c_schar] = ACTIONS(231), - [anon_sym_c_uchar] = ACTIONS(231), - [anon_sym_c_short] = ACTIONS(231), - [anon_sym_c_ushort] = ACTIONS(231), - [anon_sym_c_int] = ACTIONS(231), - [anon_sym_c_uint] = ACTIONS(231), - [anon_sym_c_long] = ACTIONS(231), - [anon_sym_c_ulong] = ACTIONS(231), - [anon_sym_c_longlong] = ACTIONS(231), - [anon_sym_c_ulonglong] = ACTIONS(231), - [anon_sym_c_float] = ACTIONS(231), - [anon_sym_c_double] = ACTIONS(231), - [anon_sym_c_longdouble] = ACTIONS(231), - [anon_sym_PLUS_EQ] = ACTIONS(237), - [anon_sym_DASH_EQ] = ACTIONS(237), - [anon_sym_STAR_EQ] = ACTIONS(237), - [anon_sym_SLASH_EQ] = ACTIONS(237), - [anon_sym_return] = ACTIONS(231), - [anon_sym_yield] = ACTIONS(231), - [anon_sym_COLON] = ACTIONS(237), - [anon_sym_break] = ACTIONS(231), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_defer] = ACTIONS(231), - [anon_sym_errdefer] = ACTIONS(231), - [anon_sym_if] = ACTIONS(231), - [anon_sym_else] = ACTIONS(231), - [anon_sym_while] = ACTIONS(231), - [anon_sym_expand] = ACTIONS(231), - [anon_sym_for] = ACTIONS(231), - [anon_sym_match] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(237), - [anon_sym_orelse] = ACTIONS(231), - [anon_sym_catch] = ACTIONS(231), - [anon_sym_or] = ACTIONS(231), - [anon_sym_and] = ACTIONS(231), - [anon_sym_EQ_EQ] = ACTIONS(237), - [anon_sym_BANG_EQ] = ACTIONS(237), - [anon_sym_LT] = ACTIONS(231), - [anon_sym_LT_EQ] = ACTIONS(237), - [anon_sym_GT] = ACTIONS(231), - [anon_sym_GT_EQ] = ACTIONS(237), - [anon_sym_PLUS] = ACTIONS(231), - [anon_sym_SLASH] = ACTIONS(231), - [anon_sym_AMP] = ACTIONS(237), - [anon_sym_try] = ACTIONS(231), - [anon_sym_DOT] = ACTIONS(231), - [anon_sym_CARET] = ACTIONS(237), - [anon_sym_true] = ACTIONS(231), - [anon_sym_false] = ACTIONS(231), - [sym_none] = ACTIONS(231), - [sym_undefined] = ACTIONS(231), - [sym_sink] = ACTIONS(231), - [sym_integer] = ACTIONS(231), - [sym_float] = ACTIONS(237), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym_multiline_string] = ACTIONS(237), - [sym_character] = ACTIONS(237), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1461), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1461), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(237), + [sym__newline] = ACTIONS(1455), }, [STATE(487)] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_test] = ACTIONS(1262), - [anon_sym_hide] = ACTIONS(1262), - [anon_sym_func] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_RPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_COMMA] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_DOLLAR] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_RBRACK] = ACTIONS(1260), - [anon_sym_void] = ACTIONS(1262), - [anon_sym_anyopaque] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_int] = ACTIONS(1262), - [anon_sym_uint] = ACTIONS(1262), - [anon_sym_float] = ACTIONS(1262), - [anon_sym_range] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_c_char] = ACTIONS(1262), - [anon_sym_c_schar] = ACTIONS(1262), - [anon_sym_c_uchar] = ACTIONS(1262), - [anon_sym_c_short] = ACTIONS(1262), - [anon_sym_c_ushort] = ACTIONS(1262), - [anon_sym_c_int] = ACTIONS(1262), - [anon_sym_c_uint] = ACTIONS(1262), - [anon_sym_c_long] = ACTIONS(1262), - [anon_sym_c_ulong] = ACTIONS(1262), - [anon_sym_c_longlong] = ACTIONS(1262), - [anon_sym_c_ulonglong] = ACTIONS(1262), - [anon_sym_c_float] = ACTIONS(1262), - [anon_sym_c_double] = ACTIONS(1262), - [anon_sym_c_longdouble] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1260), - [anon_sym_DASH_EQ] = ACTIONS(1260), - [anon_sym_STAR_EQ] = ACTIONS(1260), - [anon_sym_SLASH_EQ] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_defer] = ACTIONS(1262), - [anon_sym_errdefer] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_expand] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1260), - [anon_sym_orelse] = ACTIONS(1262), - [anon_sym_catch] = ACTIONS(1262), - [anon_sym_or] = ACTIONS(1262), - [anon_sym_and] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1260), - [anon_sym_BANG_EQ] = ACTIONS(1260), - [anon_sym_LT] = ACTIONS(1262), - [anon_sym_LT_EQ] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_try] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [sym_none] = ACTIONS(1262), - [sym_undefined] = ACTIONS(1262), - [sym_sink] = ACTIONS(1262), - [sym_integer] = ACTIONS(1262), - [sym_float] = ACTIONS(1260), - [anon_sym_DQUOTE] = ACTIONS(1260), - [sym_multiline_string] = ACTIONS(1260), - [sym_character] = ACTIONS(1260), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1680), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1680), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(491), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1260), + [sym__newline] = ACTIONS(1457), }, [STATE(488)] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_import] = ACTIONS(1266), - [anon_sym_test] = ACTIONS(1266), - [anon_sym_hide] = ACTIONS(1266), - [anon_sym_func] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_EQ] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_COMMA] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1266), - [anon_sym_anyopaque] = ACTIONS(1266), - [anon_sym_bool] = ACTIONS(1266), - [anon_sym_int] = ACTIONS(1266), - [anon_sym_uint] = ACTIONS(1266), - [anon_sym_float] = ACTIONS(1266), - [anon_sym_range] = ACTIONS(1266), - [anon_sym_i8] = ACTIONS(1266), - [anon_sym_i16] = ACTIONS(1266), - [anon_sym_i32] = ACTIONS(1266), - [anon_sym_i64] = ACTIONS(1266), - [anon_sym_u8] = ACTIONS(1266), - [anon_sym_u16] = ACTIONS(1266), - [anon_sym_u32] = ACTIONS(1266), - [anon_sym_u64] = ACTIONS(1266), - [anon_sym_isize] = ACTIONS(1266), - [anon_sym_usize] = ACTIONS(1266), - [anon_sym_f32] = ACTIONS(1266), - [anon_sym_f64] = ACTIONS(1266), - [anon_sym_c_char] = ACTIONS(1266), - [anon_sym_c_schar] = ACTIONS(1266), - [anon_sym_c_uchar] = ACTIONS(1266), - [anon_sym_c_short] = ACTIONS(1266), - [anon_sym_c_ushort] = ACTIONS(1266), - [anon_sym_c_int] = ACTIONS(1266), - [anon_sym_c_uint] = ACTIONS(1266), - [anon_sym_c_long] = ACTIONS(1266), - [anon_sym_c_ulong] = ACTIONS(1266), - [anon_sym_c_longlong] = ACTIONS(1266), - [anon_sym_c_ulonglong] = ACTIONS(1266), - [anon_sym_c_float] = ACTIONS(1266), - [anon_sym_c_double] = ACTIONS(1266), - [anon_sym_c_longdouble] = ACTIONS(1266), - [anon_sym_PLUS_EQ] = ACTIONS(1264), - [anon_sym_DASH_EQ] = ACTIONS(1264), - [anon_sym_STAR_EQ] = ACTIONS(1264), - [anon_sym_SLASH_EQ] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_COLON] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_defer] = ACTIONS(1266), - [anon_sym_errdefer] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_else] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_expand] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_DOT_DOT] = ACTIONS(1266), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1264), - [anon_sym_orelse] = ACTIONS(1266), - [anon_sym_catch] = ACTIONS(1266), - [anon_sym_or] = ACTIONS(1266), - [anon_sym_and] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_GT_EQ] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_try] = ACTIONS(1266), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [sym_none] = ACTIONS(1266), - [sym_undefined] = ACTIONS(1266), - [sym_sink] = ACTIONS(1266), - [sym_integer] = ACTIONS(1266), - [sym_float] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_multiline_string] = ACTIONS(1264), - [sym_character] = ACTIONS(1264), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1264), + [sym__newline] = ACTIONS(447), }, [STATE(489)] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_import] = ACTIONS(1270), - [anon_sym_test] = ACTIONS(1270), - [anon_sym_hide] = ACTIONS(1270), - [anon_sym_func] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_EQ] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_DOLLAR] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_void] = ACTIONS(1270), - [anon_sym_anyopaque] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_int] = ACTIONS(1270), - [anon_sym_uint] = ACTIONS(1270), - [anon_sym_float] = ACTIONS(1270), - [anon_sym_range] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_c_char] = ACTIONS(1270), - [anon_sym_c_schar] = ACTIONS(1270), - [anon_sym_c_uchar] = ACTIONS(1270), - [anon_sym_c_short] = ACTIONS(1270), - [anon_sym_c_ushort] = ACTIONS(1270), - [anon_sym_c_int] = ACTIONS(1270), - [anon_sym_c_uint] = ACTIONS(1270), - [anon_sym_c_long] = ACTIONS(1270), - [anon_sym_c_ulong] = ACTIONS(1270), - [anon_sym_c_longlong] = ACTIONS(1270), - [anon_sym_c_ulonglong] = ACTIONS(1270), - [anon_sym_c_float] = ACTIONS(1270), - [anon_sym_c_double] = ACTIONS(1270), - [anon_sym_c_longdouble] = ACTIONS(1270), - [anon_sym_PLUS_EQ] = ACTIONS(1268), - [anon_sym_DASH_EQ] = ACTIONS(1268), - [anon_sym_STAR_EQ] = ACTIONS(1268), - [anon_sym_SLASH_EQ] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_defer] = ACTIONS(1270), - [anon_sym_errdefer] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_else] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_expand] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1268), - [anon_sym_orelse] = ACTIONS(1270), - [anon_sym_catch] = ACTIONS(1270), - [anon_sym_or] = ACTIONS(1270), - [anon_sym_and] = ACTIONS(1270), - [anon_sym_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1270), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT] = ACTIONS(1270), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_SLASH] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1270), - [anon_sym_DOT] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [sym_none] = ACTIONS(1270), - [sym_undefined] = ACTIONS(1270), - [sym_sink] = ACTIONS(1270), - [sym_integer] = ACTIONS(1270), - [sym_float] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_multiline_string] = ACTIONS(1268), - [sym_character] = ACTIONS(1268), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1462), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1462), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1268), + [sym__newline] = ACTIONS(1459), }, [STATE(490)] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_import] = ACTIONS(1274), - [anon_sym_test] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_func] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_COMMA] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_RBRACK] = ACTIONS(1272), - [anon_sym_void] = ACTIONS(1274), - [anon_sym_anyopaque] = ACTIONS(1274), - [anon_sym_bool] = ACTIONS(1274), - [anon_sym_int] = ACTIONS(1274), - [anon_sym_uint] = ACTIONS(1274), - [anon_sym_float] = ACTIONS(1274), - [anon_sym_range] = ACTIONS(1274), - [anon_sym_i8] = ACTIONS(1274), - [anon_sym_i16] = ACTIONS(1274), - [anon_sym_i32] = ACTIONS(1274), - [anon_sym_i64] = ACTIONS(1274), - [anon_sym_u8] = ACTIONS(1274), - [anon_sym_u16] = ACTIONS(1274), - [anon_sym_u32] = ACTIONS(1274), - [anon_sym_u64] = ACTIONS(1274), - [anon_sym_isize] = ACTIONS(1274), - [anon_sym_usize] = ACTIONS(1274), - [anon_sym_f32] = ACTIONS(1274), - [anon_sym_f64] = ACTIONS(1274), - [anon_sym_c_char] = ACTIONS(1274), - [anon_sym_c_schar] = ACTIONS(1274), - [anon_sym_c_uchar] = ACTIONS(1274), - [anon_sym_c_short] = ACTIONS(1274), - [anon_sym_c_ushort] = ACTIONS(1274), - [anon_sym_c_int] = ACTIONS(1274), - [anon_sym_c_uint] = ACTIONS(1274), - [anon_sym_c_long] = ACTIONS(1274), - [anon_sym_c_ulong] = ACTIONS(1274), - [anon_sym_c_longlong] = ACTIONS(1274), - [anon_sym_c_ulonglong] = ACTIONS(1274), - [anon_sym_c_float] = ACTIONS(1274), - [anon_sym_c_double] = ACTIONS(1274), - [anon_sym_c_longdouble] = ACTIONS(1274), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_COLON] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_defer] = ACTIONS(1274), - [anon_sym_errdefer] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_expand] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), - [anon_sym_orelse] = ACTIONS(1274), - [anon_sym_catch] = ACTIONS(1274), - [anon_sym_or] = ACTIONS(1274), - [anon_sym_and] = ACTIONS(1274), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_DOT] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [sym_none] = ACTIONS(1274), - [sym_undefined] = ACTIONS(1274), - [sym_sink] = ACTIONS(1274), - [sym_integer] = ACTIONS(1274), - [sym_float] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_multiline_string] = ACTIONS(1272), - [sym_character] = ACTIONS(1272), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1469), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1469), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1272), + [sym__newline] = ACTIONS(1461), }, [STATE(491)] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_import] = ACTIONS(1278), - [anon_sym_test] = ACTIONS(1278), - [anon_sym_hide] = ACTIONS(1278), - [anon_sym_func] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_RBRACK] = ACTIONS(1276), - [anon_sym_void] = ACTIONS(1278), - [anon_sym_anyopaque] = ACTIONS(1278), - [anon_sym_bool] = ACTIONS(1278), - [anon_sym_int] = ACTIONS(1278), - [anon_sym_uint] = ACTIONS(1278), - [anon_sym_float] = ACTIONS(1278), - [anon_sym_range] = ACTIONS(1278), - [anon_sym_i8] = ACTIONS(1278), - [anon_sym_i16] = ACTIONS(1278), - [anon_sym_i32] = ACTIONS(1278), - [anon_sym_i64] = ACTIONS(1278), - [anon_sym_u8] = ACTIONS(1278), - [anon_sym_u16] = ACTIONS(1278), - [anon_sym_u32] = ACTIONS(1278), - [anon_sym_u64] = ACTIONS(1278), - [anon_sym_isize] = ACTIONS(1278), - [anon_sym_usize] = ACTIONS(1278), - [anon_sym_f32] = ACTIONS(1278), - [anon_sym_f64] = ACTIONS(1278), - [anon_sym_c_char] = ACTIONS(1278), - [anon_sym_c_schar] = ACTIONS(1278), - [anon_sym_c_uchar] = ACTIONS(1278), - [anon_sym_c_short] = ACTIONS(1278), - [anon_sym_c_ushort] = ACTIONS(1278), - [anon_sym_c_int] = ACTIONS(1278), - [anon_sym_c_uint] = ACTIONS(1278), - [anon_sym_c_long] = ACTIONS(1278), - [anon_sym_c_ulong] = ACTIONS(1278), - [anon_sym_c_longlong] = ACTIONS(1278), - [anon_sym_c_ulonglong] = ACTIONS(1278), - [anon_sym_c_float] = ACTIONS(1278), - [anon_sym_c_double] = ACTIONS(1278), - [anon_sym_c_longdouble] = ACTIONS(1278), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_COLON] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_defer] = ACTIONS(1278), - [anon_sym_errdefer] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_expand] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_DOT_DOT] = ACTIONS(1278), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1276), - [anon_sym_orelse] = ACTIONS(1278), - [anon_sym_catch] = ACTIONS(1278), - [anon_sym_or] = ACTIONS(1278), - [anon_sym_and] = ACTIONS(1278), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1278), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_SLASH] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_try] = ACTIONS(1278), - [anon_sym_DOT] = ACTIONS(1278), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [sym_none] = ACTIONS(1278), - [sym_undefined] = ACTIONS(1278), - [sym_sink] = ACTIONS(1278), - [sym_integer] = ACTIONS(1278), - [sym_float] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_multiline_string] = ACTIONS(1276), - [sym_character] = ACTIONS(1276), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1276), + [sym__newline] = ACTIONS(447), }, [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_import] = ACTIONS(1282), - [anon_sym_test] = ACTIONS(1282), - [anon_sym_hide] = ACTIONS(1282), - [anon_sym_func] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_EQ] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_DOLLAR] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_QMARK] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_void] = 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(1280), - [anon_sym_DASH_EQ] = ACTIONS(1280), - [anon_sym_STAR_EQ] = ACTIONS(1280), - [anon_sym_SLASH_EQ] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_defer] = ACTIONS(1282), - [anon_sym_errdefer] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_else] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_expand] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_DOT_DOT] = ACTIONS(1282), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1280), - [anon_sym_orelse] = ACTIONS(1282), - [anon_sym_catch] = ACTIONS(1282), - [anon_sym_or] = ACTIONS(1282), - [anon_sym_and] = ACTIONS(1282), - [anon_sym_EQ_EQ] = ACTIONS(1280), - [anon_sym_BANG_EQ] = ACTIONS(1280), - [anon_sym_LT] = ACTIONS(1282), - [anon_sym_LT_EQ] = ACTIONS(1280), - [anon_sym_GT] = ACTIONS(1282), - [anon_sym_GT_EQ] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_SLASH] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_try] = ACTIONS(1282), - [anon_sym_DOT] = ACTIONS(1282), - [anon_sym_CARET] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [sym_none] = ACTIONS(1282), - [sym_undefined] = ACTIONS(1282), - [sym_sink] = ACTIONS(1282), - [sym_integer] = ACTIONS(1282), - [sym_float] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_multiline_string] = ACTIONS(1280), - [sym_character] = ACTIONS(1280), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1552), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1552), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(498), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1280), + [sym__newline] = ACTIONS(1463), }, [STATE(493)] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_import] = ACTIONS(1286), - [anon_sym_test] = ACTIONS(1286), - [anon_sym_hide] = ACTIONS(1286), - [anon_sym_func] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_RPAREN] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_COMMA] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_RBRACK] = ACTIONS(1284), - [anon_sym_void] = ACTIONS(1286), - [anon_sym_anyopaque] = ACTIONS(1286), - [anon_sym_bool] = ACTIONS(1286), - [anon_sym_int] = ACTIONS(1286), - [anon_sym_uint] = ACTIONS(1286), - [anon_sym_float] = ACTIONS(1286), - [anon_sym_range] = ACTIONS(1286), - [anon_sym_i8] = ACTIONS(1286), - [anon_sym_i16] = ACTIONS(1286), - [anon_sym_i32] = ACTIONS(1286), - [anon_sym_i64] = ACTIONS(1286), - [anon_sym_u8] = ACTIONS(1286), - [anon_sym_u16] = ACTIONS(1286), - [anon_sym_u32] = ACTIONS(1286), - [anon_sym_u64] = ACTIONS(1286), - [anon_sym_isize] = ACTIONS(1286), - [anon_sym_usize] = ACTIONS(1286), - [anon_sym_f32] = ACTIONS(1286), - [anon_sym_f64] = ACTIONS(1286), - [anon_sym_c_char] = ACTIONS(1286), - [anon_sym_c_schar] = ACTIONS(1286), - [anon_sym_c_uchar] = ACTIONS(1286), - [anon_sym_c_short] = ACTIONS(1286), - [anon_sym_c_ushort] = ACTIONS(1286), - [anon_sym_c_int] = ACTIONS(1286), - [anon_sym_c_uint] = ACTIONS(1286), - [anon_sym_c_long] = ACTIONS(1286), - [anon_sym_c_ulong] = ACTIONS(1286), - [anon_sym_c_longlong] = ACTIONS(1286), - [anon_sym_c_ulonglong] = ACTIONS(1286), - [anon_sym_c_float] = ACTIONS(1286), - [anon_sym_c_double] = ACTIONS(1286), - [anon_sym_c_longdouble] = ACTIONS(1286), - [anon_sym_PLUS_EQ] = ACTIONS(1284), - [anon_sym_DASH_EQ] = ACTIONS(1284), - [anon_sym_STAR_EQ] = ACTIONS(1284), - [anon_sym_SLASH_EQ] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_defer] = ACTIONS(1286), - [anon_sym_errdefer] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_else] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_expand] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_DOT_DOT] = ACTIONS(1286), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1284), - [anon_sym_orelse] = ACTIONS(1286), - [anon_sym_catch] = ACTIONS(1286), - [anon_sym_or] = ACTIONS(1286), - [anon_sym_and] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1284), - [anon_sym_BANG_EQ] = ACTIONS(1284), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1284), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_try] = ACTIONS(1286), - [anon_sym_DOT] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [sym_none] = ACTIONS(1286), - [sym_undefined] = ACTIONS(1286), - [sym_sink] = ACTIONS(1286), - [sym_integer] = ACTIONS(1286), - [sym_float] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_multiline_string] = ACTIONS(1284), - [sym_character] = ACTIONS(1284), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1553), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1553), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1284), + [sym__newline] = ACTIONS(1465), }, [STATE(494)] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1006), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_RBRACK] = ACTIONS(1011), - [anon_sym_void] = ACTIONS(1006), - [anon_sym_anyopaque] = ACTIONS(1006), - [anon_sym_bool] = ACTIONS(1006), - [anon_sym_int] = ACTIONS(1006), - [anon_sym_uint] = ACTIONS(1006), - [anon_sym_float] = ACTIONS(1006), - [anon_sym_range] = ACTIONS(1006), - [anon_sym_i8] = ACTIONS(1006), - [anon_sym_i16] = ACTIONS(1006), - [anon_sym_i32] = ACTIONS(1006), - [anon_sym_i64] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1006), - [anon_sym_u16] = ACTIONS(1006), - [anon_sym_u32] = ACTIONS(1006), - [anon_sym_u64] = ACTIONS(1006), - [anon_sym_isize] = ACTIONS(1006), - [anon_sym_usize] = ACTIONS(1006), - [anon_sym_f32] = ACTIONS(1006), - [anon_sym_f64] = ACTIONS(1006), - [anon_sym_c_char] = ACTIONS(1006), - [anon_sym_c_schar] = ACTIONS(1006), - [anon_sym_c_uchar] = ACTIONS(1006), - [anon_sym_c_short] = ACTIONS(1006), - [anon_sym_c_ushort] = ACTIONS(1006), - [anon_sym_c_int] = ACTIONS(1006), - [anon_sym_c_uint] = ACTIONS(1006), - [anon_sym_c_long] = ACTIONS(1006), - [anon_sym_c_ulong] = ACTIONS(1006), - [anon_sym_c_longlong] = ACTIONS(1006), - [anon_sym_c_ulonglong] = ACTIONS(1006), - [anon_sym_c_float] = ACTIONS(1006), - [anon_sym_c_double] = ACTIONS(1006), - [anon_sym_c_longdouble] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1555), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1555), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(447), }, [STATE(495)] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1290), - [anon_sym_test] = ACTIONS(1290), - [anon_sym_hide] = ACTIONS(1290), - [anon_sym_func] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_anyopaque] = ACTIONS(1290), - [anon_sym_bool] = ACTIONS(1290), - [anon_sym_int] = ACTIONS(1290), - [anon_sym_uint] = ACTIONS(1290), - [anon_sym_float] = ACTIONS(1290), - [anon_sym_range] = ACTIONS(1290), - [anon_sym_i8] = ACTIONS(1290), - [anon_sym_i16] = ACTIONS(1290), - [anon_sym_i32] = ACTIONS(1290), - [anon_sym_i64] = ACTIONS(1290), - [anon_sym_u8] = ACTIONS(1290), - [anon_sym_u16] = ACTIONS(1290), - [anon_sym_u32] = ACTIONS(1290), - [anon_sym_u64] = ACTIONS(1290), - [anon_sym_isize] = ACTIONS(1290), - [anon_sym_usize] = ACTIONS(1290), - [anon_sym_f32] = ACTIONS(1290), - [anon_sym_f64] = ACTIONS(1290), - [anon_sym_c_char] = ACTIONS(1290), - [anon_sym_c_schar] = ACTIONS(1290), - [anon_sym_c_uchar] = ACTIONS(1290), - [anon_sym_c_short] = ACTIONS(1290), - [anon_sym_c_ushort] = ACTIONS(1290), - [anon_sym_c_int] = ACTIONS(1290), - [anon_sym_c_uint] = ACTIONS(1290), - [anon_sym_c_long] = ACTIONS(1290), - [anon_sym_c_ulong] = ACTIONS(1290), - [anon_sym_c_longlong] = ACTIONS(1290), - [anon_sym_c_ulonglong] = ACTIONS(1290), - [anon_sym_c_float] = ACTIONS(1290), - [anon_sym_c_double] = ACTIONS(1290), - [anon_sym_c_longdouble] = ACTIONS(1290), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_defer] = ACTIONS(1290), - [anon_sym_errdefer] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_expand] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_DOT_DOT] = ACTIONS(1290), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1288), - [anon_sym_orelse] = ACTIONS(1290), - [anon_sym_catch] = ACTIONS(1290), - [anon_sym_or] = ACTIONS(1290), - [anon_sym_and] = ACTIONS(1290), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [sym_none] = ACTIONS(1290), - [sym_undefined] = ACTIONS(1290), - [sym_sink] = ACTIONS(1290), - [sym_integer] = ACTIONS(1290), - [sym_float] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_multiline_string] = ACTIONS(1288), - [sym_character] = ACTIONS(1288), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1556), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1556), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1288), + [sym__newline] = ACTIONS(1467), }, [STATE(496)] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_import] = ACTIONS(1294), - [anon_sym_test] = ACTIONS(1294), - [anon_sym_hide] = ACTIONS(1294), - [anon_sym_func] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_void] = ACTIONS(1294), - [anon_sym_anyopaque] = ACTIONS(1294), - [anon_sym_bool] = ACTIONS(1294), - [anon_sym_int] = ACTIONS(1294), - [anon_sym_uint] = ACTIONS(1294), - [anon_sym_float] = ACTIONS(1294), - [anon_sym_range] = ACTIONS(1294), - [anon_sym_i8] = ACTIONS(1294), - [anon_sym_i16] = ACTIONS(1294), - [anon_sym_i32] = ACTIONS(1294), - [anon_sym_i64] = ACTIONS(1294), - [anon_sym_u8] = ACTIONS(1294), - [anon_sym_u16] = ACTIONS(1294), - [anon_sym_u32] = ACTIONS(1294), - [anon_sym_u64] = ACTIONS(1294), - [anon_sym_isize] = ACTIONS(1294), - [anon_sym_usize] = ACTIONS(1294), - [anon_sym_f32] = ACTIONS(1294), - [anon_sym_f64] = ACTIONS(1294), - [anon_sym_c_char] = ACTIONS(1294), - [anon_sym_c_schar] = ACTIONS(1294), - [anon_sym_c_uchar] = ACTIONS(1294), - [anon_sym_c_short] = ACTIONS(1294), - [anon_sym_c_ushort] = ACTIONS(1294), - [anon_sym_c_int] = ACTIONS(1294), - [anon_sym_c_uint] = ACTIONS(1294), - [anon_sym_c_long] = ACTIONS(1294), - [anon_sym_c_ulong] = ACTIONS(1294), - [anon_sym_c_longlong] = ACTIONS(1294), - [anon_sym_c_ulonglong] = ACTIONS(1294), - [anon_sym_c_float] = ACTIONS(1294), - [anon_sym_c_double] = ACTIONS(1294), - [anon_sym_c_longdouble] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_defer] = ACTIONS(1294), - [anon_sym_errdefer] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_expand] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1292), - [anon_sym_orelse] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1294), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1294), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_try] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1294), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [sym_none] = ACTIONS(1294), - [sym_undefined] = ACTIONS(1294), - [sym_sink] = ACTIONS(1294), - [sym_integer] = ACTIONS(1294), - [sym_float] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_multiline_string] = ACTIONS(1292), - [sym_character] = ACTIONS(1292), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1292), + [sym__newline] = ACTIONS(447), }, [STATE(497)] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_import] = ACTIONS(1298), - [anon_sym_test] = ACTIONS(1298), - [anon_sym_hide] = ACTIONS(1298), - [anon_sym_func] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_COMMA] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_RBRACK] = ACTIONS(1296), - [anon_sym_void] = ACTIONS(1298), - [anon_sym_anyopaque] = ACTIONS(1298), - [anon_sym_bool] = ACTIONS(1298), - [anon_sym_int] = ACTIONS(1298), - [anon_sym_uint] = ACTIONS(1298), - [anon_sym_float] = ACTIONS(1298), - [anon_sym_range] = ACTIONS(1298), - [anon_sym_i8] = ACTIONS(1298), - [anon_sym_i16] = ACTIONS(1298), - [anon_sym_i32] = ACTIONS(1298), - [anon_sym_i64] = ACTIONS(1298), - [anon_sym_u8] = ACTIONS(1298), - [anon_sym_u16] = ACTIONS(1298), - [anon_sym_u32] = ACTIONS(1298), - [anon_sym_u64] = ACTIONS(1298), - [anon_sym_isize] = ACTIONS(1298), - [anon_sym_usize] = ACTIONS(1298), - [anon_sym_f32] = ACTIONS(1298), - [anon_sym_f64] = ACTIONS(1298), - [anon_sym_c_char] = ACTIONS(1298), - [anon_sym_c_schar] = ACTIONS(1298), - [anon_sym_c_uchar] = ACTIONS(1298), - [anon_sym_c_short] = ACTIONS(1298), - [anon_sym_c_ushort] = ACTIONS(1298), - [anon_sym_c_int] = ACTIONS(1298), - [anon_sym_c_uint] = ACTIONS(1298), - [anon_sym_c_long] = ACTIONS(1298), - [anon_sym_c_ulong] = ACTIONS(1298), - [anon_sym_c_longlong] = ACTIONS(1298), - [anon_sym_c_ulonglong] = ACTIONS(1298), - [anon_sym_c_float] = ACTIONS(1298), - [anon_sym_c_double] = ACTIONS(1298), - [anon_sym_c_longdouble] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_COLON] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_defer] = ACTIONS(1298), - [anon_sym_errdefer] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_expand] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_DOT_DOT] = ACTIONS(1298), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), - [anon_sym_orelse] = ACTIONS(1298), - [anon_sym_catch] = ACTIONS(1298), - [anon_sym_or] = ACTIONS(1298), - [anon_sym_and] = ACTIONS(1298), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1298), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_SLASH] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_try] = ACTIONS(1298), - [anon_sym_DOT] = ACTIONS(1298), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [sym_none] = ACTIONS(1298), - [sym_undefined] = ACTIONS(1298), - [sym_sink] = ACTIONS(1298), - [sym_integer] = ACTIONS(1298), - [sym_float] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_multiline_string] = ACTIONS(1296), - [sym_character] = ACTIONS(1296), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1560), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1560), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(504), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1296), + [sym__newline] = ACTIONS(1469), }, [STATE(498)] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_import] = ACTIONS(1302), - [anon_sym_test] = ACTIONS(1302), - [anon_sym_hide] = ACTIONS(1302), - [anon_sym_func] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_EQ] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_COMMA] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_QMARK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_void] = ACTIONS(1302), - [anon_sym_anyopaque] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_int] = ACTIONS(1302), - [anon_sym_uint] = ACTIONS(1302), - [anon_sym_float] = ACTIONS(1302), - [anon_sym_range] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_c_char] = ACTIONS(1302), - [anon_sym_c_schar] = ACTIONS(1302), - [anon_sym_c_uchar] = ACTIONS(1302), - [anon_sym_c_short] = ACTIONS(1302), - [anon_sym_c_ushort] = ACTIONS(1302), - [anon_sym_c_int] = ACTIONS(1302), - [anon_sym_c_uint] = ACTIONS(1302), - [anon_sym_c_long] = ACTIONS(1302), - [anon_sym_c_ulong] = ACTIONS(1302), - [anon_sym_c_longlong] = ACTIONS(1302), - [anon_sym_c_ulonglong] = ACTIONS(1302), - [anon_sym_c_float] = ACTIONS(1302), - [anon_sym_c_double] = ACTIONS(1302), - [anon_sym_c_longdouble] = ACTIONS(1302), - [anon_sym_PLUS_EQ] = ACTIONS(1300), - [anon_sym_DASH_EQ] = ACTIONS(1300), - [anon_sym_STAR_EQ] = ACTIONS(1300), - [anon_sym_SLASH_EQ] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_defer] = ACTIONS(1302), - [anon_sym_errdefer] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_else] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_expand] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_DOT_DOT] = ACTIONS(1302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1300), - [anon_sym_orelse] = ACTIONS(1302), - [anon_sym_catch] = ACTIONS(1302), - [anon_sym_or] = ACTIONS(1302), - [anon_sym_and] = ACTIONS(1302), - [anon_sym_EQ_EQ] = ACTIONS(1300), - [anon_sym_BANG_EQ] = ACTIONS(1300), - [anon_sym_LT] = ACTIONS(1302), - [anon_sym_LT_EQ] = ACTIONS(1300), - [anon_sym_GT] = ACTIONS(1302), - [anon_sym_GT_EQ] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_SLASH] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_try] = ACTIONS(1302), - [anon_sym_DOT] = ACTIONS(1302), - [anon_sym_CARET] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_none] = ACTIONS(1302), - [sym_undefined] = ACTIONS(1302), - [sym_sink] = ACTIONS(1302), - [sym_integer] = ACTIONS(1302), - [sym_float] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_multiline_string] = ACTIONS(1300), - [sym_character] = ACTIONS(1300), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1627), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1627), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1300), + [sym__newline] = ACTIONS(447), }, [STATE(499)] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_import] = ACTIONS(1306), - [anon_sym_test] = ACTIONS(1306), - [anon_sym_hide] = ACTIONS(1306), - [anon_sym_func] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_void] = ACTIONS(1306), - [anon_sym_anyopaque] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_int] = ACTIONS(1306), - [anon_sym_uint] = ACTIONS(1306), - [anon_sym_float] = ACTIONS(1306), - [anon_sym_range] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_c_char] = ACTIONS(1306), - [anon_sym_c_schar] = ACTIONS(1306), - [anon_sym_c_uchar] = ACTIONS(1306), - [anon_sym_c_short] = ACTIONS(1306), - [anon_sym_c_ushort] = ACTIONS(1306), - [anon_sym_c_int] = ACTIONS(1306), - [anon_sym_c_uint] = ACTIONS(1306), - [anon_sym_c_long] = ACTIONS(1306), - [anon_sym_c_ulong] = ACTIONS(1306), - [anon_sym_c_longlong] = ACTIONS(1306), - [anon_sym_c_ulonglong] = ACTIONS(1306), - [anon_sym_c_float] = ACTIONS(1306), - [anon_sym_c_double] = ACTIONS(1306), - [anon_sym_c_longdouble] = ACTIONS(1306), - [anon_sym_PLUS_EQ] = ACTIONS(1304), - [anon_sym_DASH_EQ] = ACTIONS(1304), - [anon_sym_STAR_EQ] = ACTIONS(1304), - [anon_sym_SLASH_EQ] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_COLON] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_defer] = ACTIONS(1306), - [anon_sym_errdefer] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_expand] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_DOT_DOT] = ACTIONS(1306), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), - [anon_sym_orelse] = ACTIONS(1306), - [anon_sym_catch] = ACTIONS(1306), - [anon_sym_or] = ACTIONS(1306), - [anon_sym_and] = ACTIONS(1306), - [anon_sym_EQ_EQ] = ACTIONS(1304), - [anon_sym_BANG_EQ] = ACTIONS(1304), - [anon_sym_LT] = ACTIONS(1306), - [anon_sym_LT_EQ] = ACTIONS(1304), - [anon_sym_GT] = ACTIONS(1306), - [anon_sym_GT_EQ] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_SLASH] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_try] = ACTIONS(1306), - [anon_sym_DOT] = ACTIONS(1306), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_none] = ACTIONS(1306), - [sym_undefined] = ACTIONS(1306), - [sym_sink] = ACTIONS(1306), - [sym_integer] = ACTIONS(1306), - [sym_float] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_multiline_string] = ACTIONS(1304), - [sym_character] = ACTIONS(1304), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1304), + [sym__newline] = ACTIONS(447), }, [STATE(500)] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_import] = ACTIONS(1310), - [anon_sym_test] = ACTIONS(1310), - [anon_sym_hide] = ACTIONS(1310), - [anon_sym_func] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_RBRACK] = ACTIONS(1308), - [anon_sym_void] = ACTIONS(1310), - [anon_sym_anyopaque] = ACTIONS(1310), - [anon_sym_bool] = ACTIONS(1310), - [anon_sym_int] = ACTIONS(1310), - [anon_sym_uint] = ACTIONS(1310), - [anon_sym_float] = ACTIONS(1310), - [anon_sym_range] = ACTIONS(1310), - [anon_sym_i8] = ACTIONS(1310), - [anon_sym_i16] = ACTIONS(1310), - [anon_sym_i32] = ACTIONS(1310), - [anon_sym_i64] = ACTIONS(1310), - [anon_sym_u8] = ACTIONS(1310), - [anon_sym_u16] = ACTIONS(1310), - [anon_sym_u32] = ACTIONS(1310), - [anon_sym_u64] = ACTIONS(1310), - [anon_sym_isize] = ACTIONS(1310), - [anon_sym_usize] = ACTIONS(1310), - [anon_sym_f32] = ACTIONS(1310), - [anon_sym_f64] = ACTIONS(1310), - [anon_sym_c_char] = ACTIONS(1310), - [anon_sym_c_schar] = ACTIONS(1310), - [anon_sym_c_uchar] = ACTIONS(1310), - [anon_sym_c_short] = ACTIONS(1310), - [anon_sym_c_ushort] = ACTIONS(1310), - [anon_sym_c_int] = ACTIONS(1310), - [anon_sym_c_uint] = ACTIONS(1310), - [anon_sym_c_long] = ACTIONS(1310), - [anon_sym_c_ulong] = ACTIONS(1310), - [anon_sym_c_longlong] = ACTIONS(1310), - [anon_sym_c_ulonglong] = ACTIONS(1310), - [anon_sym_c_float] = ACTIONS(1310), - [anon_sym_c_double] = ACTIONS(1310), - [anon_sym_c_longdouble] = ACTIONS(1310), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_COLON] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_defer] = ACTIONS(1310), - [anon_sym_errdefer] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_expand] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_DOT_DOT] = ACTIONS(1310), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1308), - [anon_sym_orelse] = ACTIONS(1310), - [anon_sym_catch] = ACTIONS(1310), - [anon_sym_or] = ACTIONS(1310), - [anon_sym_and] = ACTIONS(1310), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1310), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_SLASH] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_try] = ACTIONS(1310), - [anon_sym_DOT] = ACTIONS(1310), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_none] = ACTIONS(1310), - [sym_undefined] = ACTIONS(1310), - [sym_sink] = ACTIONS(1310), - [sym_integer] = ACTIONS(1310), - [sym_float] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_multiline_string] = ACTIONS(1308), - [sym_character] = ACTIONS(1308), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(505), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1308), + [sym__newline] = ACTIONS(1471), }, [STATE(501)] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_import] = ACTIONS(1314), - [anon_sym_test] = ACTIONS(1314), - [anon_sym_hide] = ACTIONS(1314), - [anon_sym_func] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_RBRACK] = ACTIONS(1312), - [anon_sym_void] = ACTIONS(1314), - [anon_sym_anyopaque] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_int] = ACTIONS(1314), - [anon_sym_uint] = ACTIONS(1314), - [anon_sym_float] = ACTIONS(1314), - [anon_sym_range] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_c_char] = ACTIONS(1314), - [anon_sym_c_schar] = ACTIONS(1314), - [anon_sym_c_uchar] = ACTIONS(1314), - [anon_sym_c_short] = ACTIONS(1314), - [anon_sym_c_ushort] = ACTIONS(1314), - [anon_sym_c_int] = ACTIONS(1314), - [anon_sym_c_uint] = ACTIONS(1314), - [anon_sym_c_long] = ACTIONS(1314), - [anon_sym_c_ulong] = ACTIONS(1314), - [anon_sym_c_longlong] = ACTIONS(1314), - [anon_sym_c_ulonglong] = ACTIONS(1314), - [anon_sym_c_float] = ACTIONS(1314), - [anon_sym_c_double] = ACTIONS(1314), - [anon_sym_c_longdouble] = ACTIONS(1314), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_COLON] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_defer] = ACTIONS(1314), - [anon_sym_errdefer] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_expand] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_DOT_DOT] = ACTIONS(1314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1312), - [anon_sym_orelse] = ACTIONS(1314), - [anon_sym_catch] = ACTIONS(1314), - [anon_sym_or] = ACTIONS(1314), - [anon_sym_and] = ACTIONS(1314), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1314), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_DOT] = ACTIONS(1314), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_none] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [sym_sink] = ACTIONS(1314), - [sym_integer] = ACTIONS(1314), - [sym_float] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_multiline_string] = ACTIONS(1312), - [sym_character] = ACTIONS(1312), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1312), + [sym__newline] = ACTIONS(447), }, [STATE(502)] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_import] = ACTIONS(1318), - [anon_sym_test] = ACTIONS(1318), - [anon_sym_hide] = ACTIONS(1318), - [anon_sym_func] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1316), - [anon_sym_void] = ACTIONS(1318), - [anon_sym_anyopaque] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_int] = ACTIONS(1318), - [anon_sym_uint] = ACTIONS(1318), - [anon_sym_float] = ACTIONS(1318), - [anon_sym_range] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_c_char] = ACTIONS(1318), - [anon_sym_c_schar] = ACTIONS(1318), - [anon_sym_c_uchar] = ACTIONS(1318), - [anon_sym_c_short] = ACTIONS(1318), - [anon_sym_c_ushort] = ACTIONS(1318), - [anon_sym_c_int] = ACTIONS(1318), - [anon_sym_c_uint] = ACTIONS(1318), - [anon_sym_c_long] = ACTIONS(1318), - [anon_sym_c_ulong] = ACTIONS(1318), - [anon_sym_c_longlong] = ACTIONS(1318), - [anon_sym_c_ulonglong] = ACTIONS(1318), - [anon_sym_c_float] = ACTIONS(1318), - [anon_sym_c_double] = ACTIONS(1318), - [anon_sym_c_longdouble] = ACTIONS(1318), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_COLON] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_defer] = ACTIONS(1318), - [anon_sym_errdefer] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_expand] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_DOT_DOT] = ACTIONS(1318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1316), - [anon_sym_orelse] = ACTIONS(1318), - [anon_sym_catch] = ACTIONS(1318), - [anon_sym_or] = ACTIONS(1318), - [anon_sym_and] = ACTIONS(1318), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1318), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_SLASH] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_try] = ACTIONS(1318), - [anon_sym_DOT] = ACTIONS(1318), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_none] = ACTIONS(1318), - [sym_undefined] = ACTIONS(1318), - [sym_sink] = ACTIONS(1318), - [sym_integer] = ACTIONS(1318), - [sym_float] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_multiline_string] = ACTIONS(1316), - [sym_character] = ACTIONS(1316), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1643), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1643), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1316), + [sym__newline] = ACTIONS(1473), }, [STATE(503)] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_import] = ACTIONS(1322), - [anon_sym_test] = ACTIONS(1322), - [anon_sym_hide] = ACTIONS(1322), - [anon_sym_func] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_RPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_COMMA] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1320), - [anon_sym_void] = ACTIONS(1322), - [anon_sym_anyopaque] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_int] = ACTIONS(1322), - [anon_sym_uint] = ACTIONS(1322), - [anon_sym_float] = ACTIONS(1322), - [anon_sym_range] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_c_char] = ACTIONS(1322), - [anon_sym_c_schar] = ACTIONS(1322), - [anon_sym_c_uchar] = ACTIONS(1322), - [anon_sym_c_short] = ACTIONS(1322), - [anon_sym_c_ushort] = ACTIONS(1322), - [anon_sym_c_int] = ACTIONS(1322), - [anon_sym_c_uint] = ACTIONS(1322), - [anon_sym_c_long] = ACTIONS(1322), - [anon_sym_c_ulong] = ACTIONS(1322), - [anon_sym_c_longlong] = ACTIONS(1322), - [anon_sym_c_ulonglong] = ACTIONS(1322), - [anon_sym_c_float] = ACTIONS(1322), - [anon_sym_c_double] = ACTIONS(1322), - [anon_sym_c_longdouble] = ACTIONS(1322), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_defer] = ACTIONS(1322), - [anon_sym_errdefer] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_expand] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_DOT_DOT] = ACTIONS(1322), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), - [anon_sym_orelse] = ACTIONS(1322), - [anon_sym_catch] = ACTIONS(1322), - [anon_sym_or] = ACTIONS(1322), - [anon_sym_and] = ACTIONS(1322), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1322), - [anon_sym_LT_EQ] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_SLASH] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_try] = ACTIONS(1322), - [anon_sym_DOT] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_none] = ACTIONS(1322), - [sym_undefined] = ACTIONS(1322), - [sym_sink] = ACTIONS(1322), - [sym_integer] = ACTIONS(1322), - [sym_float] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_multiline_string] = ACTIONS(1320), - [sym_character] = ACTIONS(1320), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1644), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1644), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1320), + [sym__newline] = ACTIONS(1475), }, [STATE(504)] = { - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(233), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(233), - [anon_sym_BANG] = ACTIONS(233), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_struct] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(229), - [anon_sym_STAR] = ACTIONS(233), - [anon_sym_LBRACK] = ACTIONS(229), - [anon_sym_SEMI] = ACTIONS(229), - [anon_sym_RBRACK] = ACTIONS(229), - [anon_sym_void] = ACTIONS(233), - [anon_sym_anyopaque] = ACTIONS(233), - [anon_sym_bool] = ACTIONS(233), - [anon_sym_int] = ACTIONS(233), - [anon_sym_uint] = ACTIONS(233), - [anon_sym_float] = ACTIONS(233), - [anon_sym_range] = ACTIONS(233), - [anon_sym_i8] = ACTIONS(233), - [anon_sym_i16] = ACTIONS(233), - [anon_sym_i32] = ACTIONS(233), - [anon_sym_i64] = ACTIONS(233), - [anon_sym_u8] = ACTIONS(233), - [anon_sym_u16] = ACTIONS(233), - [anon_sym_u32] = ACTIONS(233), - [anon_sym_u64] = ACTIONS(233), - [anon_sym_isize] = ACTIONS(233), - [anon_sym_usize] = ACTIONS(233), - [anon_sym_f32] = ACTIONS(233), - [anon_sym_f64] = ACTIONS(233), - [anon_sym_c_char] = ACTIONS(233), - [anon_sym_c_schar] = ACTIONS(233), - [anon_sym_c_uchar] = ACTIONS(233), - [anon_sym_c_short] = ACTIONS(233), - [anon_sym_c_ushort] = ACTIONS(233), - [anon_sym_c_int] = ACTIONS(233), - [anon_sym_c_uint] = ACTIONS(233), - [anon_sym_c_long] = ACTIONS(233), - [anon_sym_c_ulong] = ACTIONS(233), - [anon_sym_c_longlong] = ACTIONS(233), - [anon_sym_c_ulonglong] = ACTIONS(233), - [anon_sym_c_float] = ACTIONS(233), - [anon_sym_c_double] = ACTIONS(233), - [anon_sym_c_longdouble] = ACTIONS(233), - [anon_sym_PLUS_EQ] = ACTIONS(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_return] = ACTIONS(233), - [anon_sym_yield] = ACTIONS(233), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_break] = ACTIONS(233), - [anon_sym_continue] = ACTIONS(233), - [anon_sym_defer] = ACTIONS(233), - [anon_sym_errdefer] = ACTIONS(233), - [anon_sym_if] = ACTIONS(233), - [anon_sym_else] = ACTIONS(233), - [anon_sym_while] = ACTIONS(233), - [anon_sym_expand] = ACTIONS(233), - [anon_sym_for] = ACTIONS(233), - [anon_sym_match] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_AMP] = ACTIONS(229), - [anon_sym_try] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [anon_sym_true] = ACTIONS(233), - [anon_sym_false] = ACTIONS(233), - [sym_none] = ACTIONS(233), - [sym_undefined] = ACTIONS(233), - [sym_sink] = ACTIONS(233), - [sym_integer] = ACTIONS(233), - [sym_float] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_multiline_string] = ACTIONS(229), - [sym_character] = ACTIONS(229), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1647), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1647), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(447), }, [STATE(505)] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_import] = ACTIONS(1326), - [anon_sym_test] = ACTIONS(1326), - [anon_sym_hide] = ACTIONS(1326), - [anon_sym_func] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_RPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_RBRACK] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1326), - [anon_sym_anyopaque] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_int] = ACTIONS(1326), - [anon_sym_uint] = ACTIONS(1326), - [anon_sym_float] = ACTIONS(1326), - [anon_sym_range] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_c_char] = ACTIONS(1326), - [anon_sym_c_schar] = ACTIONS(1326), - [anon_sym_c_uchar] = ACTIONS(1326), - [anon_sym_c_short] = ACTIONS(1326), - [anon_sym_c_ushort] = ACTIONS(1326), - [anon_sym_c_int] = ACTIONS(1326), - [anon_sym_c_uint] = ACTIONS(1326), - [anon_sym_c_long] = ACTIONS(1326), - [anon_sym_c_ulong] = ACTIONS(1326), - [anon_sym_c_longlong] = ACTIONS(1326), - [anon_sym_c_ulonglong] = ACTIONS(1326), - [anon_sym_c_float] = ACTIONS(1326), - [anon_sym_c_double] = ACTIONS(1326), - [anon_sym_c_longdouble] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_COLON] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_defer] = ACTIONS(1326), - [anon_sym_errdefer] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_expand] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1324), - [anon_sym_orelse] = ACTIONS(1326), - [anon_sym_catch] = ACTIONS(1326), - [anon_sym_or] = ACTIONS(1326), - [anon_sym_and] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_try] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_none] = ACTIONS(1326), - [sym_undefined] = ACTIONS(1326), - [sym_sink] = ACTIONS(1326), - [sym_integer] = ACTIONS(1326), - [sym_float] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_multiline_string] = ACTIONS(1324), - [sym_character] = ACTIONS(1324), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1688), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1688), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1324), + [sym__newline] = ACTIONS(447), }, [STATE(506)] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_test] = ACTIONS(1330), - [anon_sym_hide] = ACTIONS(1330), - [anon_sym_func] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_COMMA] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_RBRACK] = ACTIONS(1328), - [anon_sym_void] = ACTIONS(1330), - [anon_sym_anyopaque] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_int] = ACTIONS(1330), - [anon_sym_uint] = ACTIONS(1330), - [anon_sym_float] = ACTIONS(1330), - [anon_sym_range] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_c_char] = ACTIONS(1330), - [anon_sym_c_schar] = ACTIONS(1330), - [anon_sym_c_uchar] = ACTIONS(1330), - [anon_sym_c_short] = ACTIONS(1330), - [anon_sym_c_ushort] = ACTIONS(1330), - [anon_sym_c_int] = ACTIONS(1330), - [anon_sym_c_uint] = ACTIONS(1330), - [anon_sym_c_long] = ACTIONS(1330), - [anon_sym_c_ulong] = ACTIONS(1330), - [anon_sym_c_longlong] = ACTIONS(1330), - [anon_sym_c_ulonglong] = ACTIONS(1330), - [anon_sym_c_float] = ACTIONS(1330), - [anon_sym_c_double] = ACTIONS(1330), - [anon_sym_c_longdouble] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_COLON] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_defer] = ACTIONS(1330), - [anon_sym_errdefer] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_expand] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1328), - [anon_sym_orelse] = ACTIONS(1330), - [anon_sym_catch] = ACTIONS(1330), - [anon_sym_or] = ACTIONS(1330), - [anon_sym_and] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_try] = ACTIONS(1330), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_none] = ACTIONS(1330), - [sym_undefined] = ACTIONS(1330), - [sym_sink] = ACTIONS(1330), - [sym_integer] = ACTIONS(1330), - [sym_float] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_multiline_string] = ACTIONS(1328), - [sym_character] = ACTIONS(1328), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1689), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1689), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1328), + [sym__newline] = ACTIONS(447), }, [STATE(507)] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1334), - [anon_sym_import] = ACTIONS(1334), - [anon_sym_test] = ACTIONS(1334), - [anon_sym_hide] = ACTIONS(1334), - [anon_sym_func] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_QMARK] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_RBRACK] = ACTIONS(1332), - [anon_sym_void] = ACTIONS(1334), - [anon_sym_anyopaque] = ACTIONS(1334), - [anon_sym_bool] = ACTIONS(1334), - [anon_sym_int] = ACTIONS(1334), - [anon_sym_uint] = ACTIONS(1334), - [anon_sym_float] = ACTIONS(1334), - [anon_sym_range] = ACTIONS(1334), - [anon_sym_i8] = ACTIONS(1334), - [anon_sym_i16] = ACTIONS(1334), - [anon_sym_i32] = ACTIONS(1334), - [anon_sym_i64] = ACTIONS(1334), - [anon_sym_u8] = ACTIONS(1334), - [anon_sym_u16] = ACTIONS(1334), - [anon_sym_u32] = ACTIONS(1334), - [anon_sym_u64] = ACTIONS(1334), - [anon_sym_isize] = ACTIONS(1334), - [anon_sym_usize] = ACTIONS(1334), - [anon_sym_f32] = ACTIONS(1334), - [anon_sym_f64] = ACTIONS(1334), - [anon_sym_c_char] = ACTIONS(1334), - [anon_sym_c_schar] = ACTIONS(1334), - [anon_sym_c_uchar] = ACTIONS(1334), - [anon_sym_c_short] = ACTIONS(1334), - [anon_sym_c_ushort] = ACTIONS(1334), - [anon_sym_c_int] = ACTIONS(1334), - [anon_sym_c_uint] = ACTIONS(1334), - [anon_sym_c_long] = ACTIONS(1334), - [anon_sym_c_ulong] = ACTIONS(1334), - [anon_sym_c_longlong] = ACTIONS(1334), - [anon_sym_c_ulonglong] = ACTIONS(1334), - [anon_sym_c_float] = ACTIONS(1334), - [anon_sym_c_double] = ACTIONS(1334), - [anon_sym_c_longdouble] = ACTIONS(1334), - [anon_sym_PLUS_EQ] = ACTIONS(1332), - [anon_sym_DASH_EQ] = ACTIONS(1332), - [anon_sym_STAR_EQ] = ACTIONS(1332), - [anon_sym_SLASH_EQ] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_yield] = ACTIONS(1334), - [anon_sym_COLON] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_defer] = ACTIONS(1334), - [anon_sym_errdefer] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_expand] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_match] = ACTIONS(1334), - [anon_sym_DOT_DOT] = ACTIONS(1334), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1332), - [anon_sym_orelse] = ACTIONS(1334), - [anon_sym_catch] = ACTIONS(1334), - [anon_sym_or] = ACTIONS(1334), - [anon_sym_and] = ACTIONS(1334), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1334), - [anon_sym_LT_EQ] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_SLASH] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_try] = ACTIONS(1334), - [anon_sym_DOT] = ACTIONS(1334), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [sym_none] = ACTIONS(1334), - [sym_undefined] = ACTIONS(1334), - [sym_sink] = ACTIONS(1334), - [sym_integer] = ACTIONS(1334), - [sym_float] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_multiline_string] = ACTIONS(1332), - [sym_character] = ACTIONS(1332), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1332), + [sym__newline] = ACTIONS(447), }, [STATE(508)] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(1338), - [anon_sym_test] = ACTIONS(1338), - [anon_sym_hide] = ACTIONS(1338), - [anon_sym_func] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_COMMA] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_QMARK] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_RBRACK] = ACTIONS(1336), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_anyopaque] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_int] = ACTIONS(1338), - [anon_sym_uint] = ACTIONS(1338), - [anon_sym_float] = ACTIONS(1338), - [anon_sym_range] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_c_char] = ACTIONS(1338), - [anon_sym_c_schar] = ACTIONS(1338), - [anon_sym_c_uchar] = ACTIONS(1338), - [anon_sym_c_short] = ACTIONS(1338), - [anon_sym_c_ushort] = ACTIONS(1338), - [anon_sym_c_int] = ACTIONS(1338), - [anon_sym_c_uint] = ACTIONS(1338), - [anon_sym_c_long] = ACTIONS(1338), - [anon_sym_c_ulong] = ACTIONS(1338), - [anon_sym_c_longlong] = ACTIONS(1338), - [anon_sym_c_ulonglong] = ACTIONS(1338), - [anon_sym_c_float] = ACTIONS(1338), - [anon_sym_c_double] = ACTIONS(1338), - [anon_sym_c_longdouble] = ACTIONS(1338), - [anon_sym_PLUS_EQ] = ACTIONS(1336), - [anon_sym_DASH_EQ] = ACTIONS(1336), - [anon_sym_STAR_EQ] = ACTIONS(1336), - [anon_sym_SLASH_EQ] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_COLON] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_defer] = ACTIONS(1338), - [anon_sym_errdefer] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_expand] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_DOT_DOT] = ACTIONS(1338), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1336), - [anon_sym_orelse] = ACTIONS(1338), - [anon_sym_catch] = ACTIONS(1338), - [anon_sym_or] = ACTIONS(1338), - [anon_sym_and] = ACTIONS(1338), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1338), - [anon_sym_LT_EQ] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_SLASH] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_try] = ACTIONS(1338), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [sym_none] = ACTIONS(1338), - [sym_undefined] = ACTIONS(1338), - [sym_sink] = ACTIONS(1338), - [sym_integer] = ACTIONS(1338), - [sym_float] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_multiline_string] = ACTIONS(1336), - [sym_character] = ACTIONS(1336), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1690), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1690), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(279), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1336), + [sym__newline] = ACTIONS(1477), }, [STATE(509)] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_import] = ACTIONS(1342), - [anon_sym_test] = ACTIONS(1342), - [anon_sym_hide] = ACTIONS(1342), - [anon_sym_func] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_QMARK] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_RBRACK] = ACTIONS(1340), - [anon_sym_void] = ACTIONS(1342), - [anon_sym_anyopaque] = ACTIONS(1342), - [anon_sym_bool] = ACTIONS(1342), - [anon_sym_int] = ACTIONS(1342), - [anon_sym_uint] = ACTIONS(1342), - [anon_sym_float] = ACTIONS(1342), - [anon_sym_range] = ACTIONS(1342), - [anon_sym_i8] = ACTIONS(1342), - [anon_sym_i16] = ACTIONS(1342), - [anon_sym_i32] = ACTIONS(1342), - [anon_sym_i64] = ACTIONS(1342), - [anon_sym_u8] = ACTIONS(1342), - [anon_sym_u16] = ACTIONS(1342), - [anon_sym_u32] = ACTIONS(1342), - [anon_sym_u64] = ACTIONS(1342), - [anon_sym_isize] = ACTIONS(1342), - [anon_sym_usize] = ACTIONS(1342), - [anon_sym_f32] = ACTIONS(1342), - [anon_sym_f64] = ACTIONS(1342), - [anon_sym_c_char] = ACTIONS(1342), - [anon_sym_c_schar] = ACTIONS(1342), - [anon_sym_c_uchar] = ACTIONS(1342), - [anon_sym_c_short] = ACTIONS(1342), - [anon_sym_c_ushort] = ACTIONS(1342), - [anon_sym_c_int] = ACTIONS(1342), - [anon_sym_c_uint] = ACTIONS(1342), - [anon_sym_c_long] = ACTIONS(1342), - [anon_sym_c_ulong] = ACTIONS(1342), - [anon_sym_c_longlong] = ACTIONS(1342), - [anon_sym_c_ulonglong] = ACTIONS(1342), - [anon_sym_c_float] = ACTIONS(1342), - [anon_sym_c_double] = ACTIONS(1342), - [anon_sym_c_longdouble] = ACTIONS(1342), - [anon_sym_PLUS_EQ] = ACTIONS(1340), - [anon_sym_DASH_EQ] = ACTIONS(1340), - [anon_sym_STAR_EQ] = ACTIONS(1340), - [anon_sym_SLASH_EQ] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_COLON] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_defer] = ACTIONS(1342), - [anon_sym_errdefer] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_expand] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1342), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1340), - [anon_sym_orelse] = ACTIONS(1342), - [anon_sym_catch] = ACTIONS(1342), - [anon_sym_or] = ACTIONS(1342), - [anon_sym_and] = ACTIONS(1342), - [anon_sym_EQ_EQ] = ACTIONS(1340), - [anon_sym_BANG_EQ] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1342), - [anon_sym_LT_EQ] = ACTIONS(1340), - [anon_sym_GT] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_SLASH] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_try] = ACTIONS(1342), - [anon_sym_DOT] = ACTIONS(1342), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_none] = ACTIONS(1342), - [sym_undefined] = ACTIONS(1342), - [sym_sink] = ACTIONS(1342), - [sym_integer] = ACTIONS(1342), - [sym_float] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_multiline_string] = ACTIONS(1340), - [sym_character] = ACTIONS(1340), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1631), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym__branch_body] = STATE(1631), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1340), + [sym__newline] = ACTIONS(1479), }, [STATE(510)] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_import] = ACTIONS(1346), - [anon_sym_test] = ACTIONS(1346), - [anon_sym_hide] = ACTIONS(1346), - [anon_sym_func] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_EQ] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_QMARK] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_void] = ACTIONS(1346), - [anon_sym_anyopaque] = ACTIONS(1346), - [anon_sym_bool] = ACTIONS(1346), - [anon_sym_int] = ACTIONS(1346), - [anon_sym_uint] = ACTIONS(1346), - [anon_sym_float] = ACTIONS(1346), - [anon_sym_range] = ACTIONS(1346), - [anon_sym_i8] = ACTIONS(1346), - [anon_sym_i16] = ACTIONS(1346), - [anon_sym_i32] = ACTIONS(1346), - [anon_sym_i64] = ACTIONS(1346), - [anon_sym_u8] = ACTIONS(1346), - [anon_sym_u16] = ACTIONS(1346), - [anon_sym_u32] = ACTIONS(1346), - [anon_sym_u64] = ACTIONS(1346), - [anon_sym_isize] = ACTIONS(1346), - [anon_sym_usize] = ACTIONS(1346), - [anon_sym_f32] = ACTIONS(1346), - [anon_sym_f64] = ACTIONS(1346), - [anon_sym_c_char] = ACTIONS(1346), - [anon_sym_c_schar] = ACTIONS(1346), - [anon_sym_c_uchar] = ACTIONS(1346), - [anon_sym_c_short] = ACTIONS(1346), - [anon_sym_c_ushort] = ACTIONS(1346), - [anon_sym_c_int] = ACTIONS(1346), - [anon_sym_c_uint] = ACTIONS(1346), - [anon_sym_c_long] = ACTIONS(1346), - [anon_sym_c_ulong] = ACTIONS(1346), - [anon_sym_c_longlong] = ACTIONS(1346), - [anon_sym_c_ulonglong] = ACTIONS(1346), - [anon_sym_c_float] = ACTIONS(1346), - [anon_sym_c_double] = ACTIONS(1346), - [anon_sym_c_longdouble] = ACTIONS(1346), - [anon_sym_PLUS_EQ] = ACTIONS(1344), - [anon_sym_DASH_EQ] = ACTIONS(1344), - [anon_sym_STAR_EQ] = ACTIONS(1344), - [anon_sym_SLASH_EQ] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_COLON] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_defer] = ACTIONS(1346), - [anon_sym_errdefer] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_expand] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_DOT_DOT] = ACTIONS(1346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1344), - [anon_sym_orelse] = ACTIONS(1346), - [anon_sym_catch] = ACTIONS(1346), - [anon_sym_or] = ACTIONS(1346), - [anon_sym_and] = ACTIONS(1346), - [anon_sym_EQ_EQ] = ACTIONS(1344), - [anon_sym_BANG_EQ] = ACTIONS(1344), - [anon_sym_LT] = ACTIONS(1346), - [anon_sym_LT_EQ] = ACTIONS(1344), - [anon_sym_GT] = ACTIONS(1346), - [anon_sym_GT_EQ] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_SLASH] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_try] = ACTIONS(1346), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [sym_none] = ACTIONS(1346), - [sym_undefined] = ACTIONS(1346), - [sym_sink] = ACTIONS(1346), - [sym_integer] = ACTIONS(1346), - [sym_float] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_multiline_string] = ACTIONS(1344), - [sym_character] = ACTIONS(1344), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(547), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1344), + [sym__newline] = ACTIONS(1481), }, [STATE(511)] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_import] = ACTIONS(1350), - [anon_sym_test] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_func] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_EQ] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_QMARK] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_void] = ACTIONS(1350), - [anon_sym_anyopaque] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_int] = ACTIONS(1350), - [anon_sym_uint] = ACTIONS(1350), - [anon_sym_float] = ACTIONS(1350), - [anon_sym_range] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_c_char] = ACTIONS(1350), - [anon_sym_c_schar] = ACTIONS(1350), - [anon_sym_c_uchar] = ACTIONS(1350), - [anon_sym_c_short] = ACTIONS(1350), - [anon_sym_c_ushort] = ACTIONS(1350), - [anon_sym_c_int] = ACTIONS(1350), - [anon_sym_c_uint] = ACTIONS(1350), - [anon_sym_c_long] = ACTIONS(1350), - [anon_sym_c_ulong] = ACTIONS(1350), - [anon_sym_c_longlong] = ACTIONS(1350), - [anon_sym_c_ulonglong] = ACTIONS(1350), - [anon_sym_c_float] = ACTIONS(1350), - [anon_sym_c_double] = ACTIONS(1350), - [anon_sym_c_longdouble] = ACTIONS(1350), - [anon_sym_PLUS_EQ] = ACTIONS(1348), - [anon_sym_DASH_EQ] = ACTIONS(1348), - [anon_sym_STAR_EQ] = ACTIONS(1348), - [anon_sym_SLASH_EQ] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_COLON] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_defer] = ACTIONS(1350), - [anon_sym_errdefer] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_expand] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_DOT_DOT] = ACTIONS(1350), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), - [anon_sym_orelse] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_or] = ACTIONS(1350), - [anon_sym_and] = ACTIONS(1350), - [anon_sym_EQ_EQ] = ACTIONS(1348), - [anon_sym_BANG_EQ] = ACTIONS(1348), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_LT_EQ] = ACTIONS(1348), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_EQ] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_SLASH] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_DOT] = ACTIONS(1350), - [anon_sym_CARET] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [sym_none] = ACTIONS(1350), - [sym_undefined] = ACTIONS(1350), - [sym_sink] = ACTIONS(1350), - [sym_integer] = ACTIONS(1350), - [sym_float] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_multiline_string] = ACTIONS(1348), - [sym_character] = ACTIONS(1348), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(512), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1348), + [sym__newline] = ACTIONS(1483), }, [STATE(512)] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_import] = ACTIONS(1354), - [anon_sym_test] = ACTIONS(1354), - [anon_sym_hide] = ACTIONS(1354), - [anon_sym_func] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_void] = ACTIONS(1354), - [anon_sym_anyopaque] = ACTIONS(1354), - [anon_sym_bool] = ACTIONS(1354), - [anon_sym_int] = ACTIONS(1354), - [anon_sym_uint] = ACTIONS(1354), - [anon_sym_float] = ACTIONS(1354), - [anon_sym_range] = ACTIONS(1354), - [anon_sym_i8] = ACTIONS(1354), - [anon_sym_i16] = ACTIONS(1354), - [anon_sym_i32] = ACTIONS(1354), - [anon_sym_i64] = ACTIONS(1354), - [anon_sym_u8] = ACTIONS(1354), - [anon_sym_u16] = ACTIONS(1354), - [anon_sym_u32] = ACTIONS(1354), - [anon_sym_u64] = ACTIONS(1354), - [anon_sym_isize] = ACTIONS(1354), - [anon_sym_usize] = ACTIONS(1354), - [anon_sym_f32] = ACTIONS(1354), - [anon_sym_f64] = ACTIONS(1354), - [anon_sym_c_char] = ACTIONS(1354), - [anon_sym_c_schar] = ACTIONS(1354), - [anon_sym_c_uchar] = ACTIONS(1354), - [anon_sym_c_short] = ACTIONS(1354), - [anon_sym_c_ushort] = ACTIONS(1354), - [anon_sym_c_int] = ACTIONS(1354), - [anon_sym_c_uint] = ACTIONS(1354), - [anon_sym_c_long] = ACTIONS(1354), - [anon_sym_c_ulong] = ACTIONS(1354), - [anon_sym_c_longlong] = ACTIONS(1354), - [anon_sym_c_ulonglong] = ACTIONS(1354), - [anon_sym_c_float] = ACTIONS(1354), - [anon_sym_c_double] = ACTIONS(1354), - [anon_sym_c_longdouble] = ACTIONS(1354), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_defer] = ACTIONS(1354), - [anon_sym_errdefer] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_expand] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_DOT_DOT] = ACTIONS(1354), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1352), - [anon_sym_orelse] = ACTIONS(1354), - [anon_sym_catch] = ACTIONS(1354), - [anon_sym_or] = ACTIONS(1354), - [anon_sym_and] = ACTIONS(1354), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1354), - [anon_sym_LT_EQ] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_SLASH] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_try] = ACTIONS(1354), - [anon_sym_DOT] = ACTIONS(1354), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [sym_none] = ACTIONS(1354), - [sym_undefined] = ACTIONS(1354), - [sym_sink] = ACTIONS(1354), - [sym_integer] = ACTIONS(1354), - [sym_float] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_multiline_string] = ACTIONS(1352), - [sym_character] = ACTIONS(1352), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1352), + [sym__newline] = ACTIONS(447), }, [STATE(513)] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1358), - [anon_sym_test] = ACTIONS(1358), - [anon_sym_hide] = ACTIONS(1358), - [anon_sym_func] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_anyopaque] = ACTIONS(1358), - [anon_sym_bool] = ACTIONS(1358), - [anon_sym_int] = ACTIONS(1358), - [anon_sym_uint] = ACTIONS(1358), - [anon_sym_float] = ACTIONS(1358), - [anon_sym_range] = ACTIONS(1358), - [anon_sym_i8] = ACTIONS(1358), - [anon_sym_i16] = ACTIONS(1358), - [anon_sym_i32] = ACTIONS(1358), - [anon_sym_i64] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1358), - [anon_sym_u16] = ACTIONS(1358), - [anon_sym_u32] = ACTIONS(1358), - [anon_sym_u64] = ACTIONS(1358), - [anon_sym_isize] = ACTIONS(1358), - [anon_sym_usize] = ACTIONS(1358), - [anon_sym_f32] = ACTIONS(1358), - [anon_sym_f64] = ACTIONS(1358), - [anon_sym_c_char] = ACTIONS(1358), - [anon_sym_c_schar] = ACTIONS(1358), - [anon_sym_c_uchar] = ACTIONS(1358), - [anon_sym_c_short] = ACTIONS(1358), - [anon_sym_c_ushort] = ACTIONS(1358), - [anon_sym_c_int] = ACTIONS(1358), - [anon_sym_c_uint] = ACTIONS(1358), - [anon_sym_c_long] = ACTIONS(1358), - [anon_sym_c_ulong] = ACTIONS(1358), - [anon_sym_c_longlong] = ACTIONS(1358), - [anon_sym_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(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_STAR_EQ] = ACTIONS(1356), - [anon_sym_SLASH_EQ] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_defer] = ACTIONS(1358), - [anon_sym_errdefer] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_expand] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1356), - [anon_sym_orelse] = ACTIONS(1358), - [anon_sym_catch] = ACTIONS(1358), - [anon_sym_or] = ACTIONS(1358), - [anon_sym_and] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_SLASH] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1358), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [sym_none] = ACTIONS(1358), - [sym_undefined] = ACTIONS(1358), - [sym_sink] = ACTIONS(1358), - [sym_integer] = ACTIONS(1358), - [sym_float] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_multiline_string] = ACTIONS(1356), - [sym_character] = ACTIONS(1356), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1356), + [sym__newline] = ACTIONS(1485), }, [STATE(514)] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_import] = ACTIONS(1362), - [anon_sym_test] = ACTIONS(1362), - [anon_sym_hide] = ACTIONS(1362), - [anon_sym_func] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_void] = ACTIONS(1362), - [anon_sym_anyopaque] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_int] = ACTIONS(1362), - [anon_sym_uint] = ACTIONS(1362), - [anon_sym_float] = ACTIONS(1362), - [anon_sym_range] = ACTIONS(1362), - [anon_sym_i8] = ACTIONS(1362), - [anon_sym_i16] = ACTIONS(1362), - [anon_sym_i32] = ACTIONS(1362), - [anon_sym_i64] = ACTIONS(1362), - [anon_sym_u8] = ACTIONS(1362), - [anon_sym_u16] = ACTIONS(1362), - [anon_sym_u32] = ACTIONS(1362), - [anon_sym_u64] = ACTIONS(1362), - [anon_sym_isize] = ACTIONS(1362), - [anon_sym_usize] = ACTIONS(1362), - [anon_sym_f32] = ACTIONS(1362), - [anon_sym_f64] = ACTIONS(1362), - [anon_sym_c_char] = ACTIONS(1362), - [anon_sym_c_schar] = ACTIONS(1362), - [anon_sym_c_uchar] = ACTIONS(1362), - [anon_sym_c_short] = ACTIONS(1362), - [anon_sym_c_ushort] = ACTIONS(1362), - [anon_sym_c_int] = ACTIONS(1362), - [anon_sym_c_uint] = ACTIONS(1362), - [anon_sym_c_long] = ACTIONS(1362), - [anon_sym_c_ulong] = ACTIONS(1362), - [anon_sym_c_longlong] = ACTIONS(1362), - [anon_sym_c_ulonglong] = ACTIONS(1362), - [anon_sym_c_float] = ACTIONS(1362), - [anon_sym_c_double] = ACTIONS(1362), - [anon_sym_c_longdouble] = ACTIONS(1362), - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), - [anon_sym_STAR_EQ] = ACTIONS(1360), - [anon_sym_SLASH_EQ] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_COLON] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_defer] = ACTIONS(1362), - [anon_sym_errdefer] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_expand] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_DOT_DOT] = ACTIONS(1362), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), - [anon_sym_orelse] = ACTIONS(1362), - [anon_sym_catch] = ACTIONS(1362), - [anon_sym_or] = ACTIONS(1362), - [anon_sym_and] = ACTIONS(1362), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1362), - [anon_sym_LT_EQ] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_SLASH] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_try] = ACTIONS(1362), - [anon_sym_DOT] = ACTIONS(1362), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [sym_none] = ACTIONS(1362), - [sym_undefined] = ACTIONS(1362), - [sym_sink] = ACTIONS(1362), - [sym_integer] = ACTIONS(1362), - [sym_float] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_multiline_string] = ACTIONS(1360), - [sym_character] = ACTIONS(1360), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1360), + [sym__newline] = ACTIONS(447), }, [STATE(515)] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_import] = ACTIONS(1366), - [anon_sym_test] = ACTIONS(1366), - [anon_sym_hide] = ACTIONS(1366), - [anon_sym_func] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_QMARK] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_void] = ACTIONS(1366), - [anon_sym_anyopaque] = ACTIONS(1366), - [anon_sym_bool] = ACTIONS(1366), - [anon_sym_int] = ACTIONS(1366), - [anon_sym_uint] = ACTIONS(1366), - [anon_sym_float] = ACTIONS(1366), - [anon_sym_range] = ACTIONS(1366), - [anon_sym_i8] = ACTIONS(1366), - [anon_sym_i16] = ACTIONS(1366), - [anon_sym_i32] = ACTIONS(1366), - [anon_sym_i64] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1366), - [anon_sym_u16] = ACTIONS(1366), - [anon_sym_u32] = ACTIONS(1366), - [anon_sym_u64] = ACTIONS(1366), - [anon_sym_isize] = ACTIONS(1366), - [anon_sym_usize] = ACTIONS(1366), - [anon_sym_f32] = ACTIONS(1366), - [anon_sym_f64] = ACTIONS(1366), - [anon_sym_c_char] = ACTIONS(1366), - [anon_sym_c_schar] = ACTIONS(1366), - [anon_sym_c_uchar] = ACTIONS(1366), - [anon_sym_c_short] = ACTIONS(1366), - [anon_sym_c_ushort] = ACTIONS(1366), - [anon_sym_c_int] = ACTIONS(1366), - [anon_sym_c_uint] = ACTIONS(1366), - [anon_sym_c_long] = ACTIONS(1366), - [anon_sym_c_ulong] = ACTIONS(1366), - [anon_sym_c_longlong] = ACTIONS(1366), - [anon_sym_c_ulonglong] = ACTIONS(1366), - [anon_sym_c_float] = ACTIONS(1366), - [anon_sym_c_double] = ACTIONS(1366), - [anon_sym_c_longdouble] = ACTIONS(1366), - [anon_sym_PLUS_EQ] = ACTIONS(1364), - [anon_sym_DASH_EQ] = ACTIONS(1364), - [anon_sym_STAR_EQ] = ACTIONS(1364), - [anon_sym_SLASH_EQ] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_defer] = ACTIONS(1366), - [anon_sym_errdefer] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_expand] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1366), - [anon_sym_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1364), - [anon_sym_orelse] = ACTIONS(1366), - [anon_sym_catch] = ACTIONS(1366), - [anon_sym_or] = ACTIONS(1366), - [anon_sym_and] = ACTIONS(1366), - [anon_sym_EQ_EQ] = ACTIONS(1364), - [anon_sym_BANG_EQ] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1364), - [anon_sym_GT] = ACTIONS(1366), - [anon_sym_GT_EQ] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_try] = ACTIONS(1366), - [anon_sym_DOT] = ACTIONS(1366), - [anon_sym_CARET] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [sym_none] = ACTIONS(1366), - [sym_undefined] = ACTIONS(1366), - [sym_sink] = ACTIONS(1366), - [sym_integer] = ACTIONS(1366), - [sym_float] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_multiline_string] = ACTIONS(1364), - [sym_character] = ACTIONS(1364), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(516), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1364), + [sym__newline] = ACTIONS(1487), }, [STATE(516)] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1370), - [anon_sym_test] = ACTIONS(1370), - [anon_sym_hide] = ACTIONS(1370), - [anon_sym_func] = ACTIONS(1370), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_COMMA] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_DOLLAR] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_anyopaque] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_int] = ACTIONS(1370), - [anon_sym_uint] = ACTIONS(1370), - [anon_sym_float] = ACTIONS(1370), - [anon_sym_range] = ACTIONS(1370), - [anon_sym_i8] = ACTIONS(1370), - [anon_sym_i16] = ACTIONS(1370), - [anon_sym_i32] = ACTIONS(1370), - [anon_sym_i64] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1370), - [anon_sym_u16] = ACTIONS(1370), - [anon_sym_u32] = ACTIONS(1370), - [anon_sym_u64] = ACTIONS(1370), - [anon_sym_isize] = ACTIONS(1370), - [anon_sym_usize] = ACTIONS(1370), - [anon_sym_f32] = ACTIONS(1370), - [anon_sym_f64] = ACTIONS(1370), - [anon_sym_c_char] = ACTIONS(1370), - [anon_sym_c_schar] = ACTIONS(1370), - [anon_sym_c_uchar] = ACTIONS(1370), - [anon_sym_c_short] = ACTIONS(1370), - [anon_sym_c_ushort] = ACTIONS(1370), - [anon_sym_c_int] = ACTIONS(1370), - [anon_sym_c_uint] = ACTIONS(1370), - [anon_sym_c_long] = ACTIONS(1370), - [anon_sym_c_ulong] = ACTIONS(1370), - [anon_sym_c_longlong] = ACTIONS(1370), - [anon_sym_c_ulonglong] = ACTIONS(1370), - [anon_sym_c_float] = ACTIONS(1370), - [anon_sym_c_double] = ACTIONS(1370), - [anon_sym_c_longdouble] = ACTIONS(1370), - [anon_sym_PLUS_EQ] = ACTIONS(1368), - [anon_sym_DASH_EQ] = ACTIONS(1368), - [anon_sym_STAR_EQ] = ACTIONS(1368), - [anon_sym_SLASH_EQ] = ACTIONS(1368), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_yield] = ACTIONS(1370), - [anon_sym_COLON] = ACTIONS(1368), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_defer] = ACTIONS(1370), - [anon_sym_errdefer] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_else] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_expand] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1368), - [anon_sym_orelse] = ACTIONS(1370), - [anon_sym_catch] = ACTIONS(1370), - [anon_sym_or] = ACTIONS(1370), - [anon_sym_and] = ACTIONS(1370), - [anon_sym_EQ_EQ] = ACTIONS(1368), - [anon_sym_BANG_EQ] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1368), - [anon_sym_GT] = ACTIONS(1370), - [anon_sym_GT_EQ] = ACTIONS(1368), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(1370), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(1370), - [anon_sym_DOT] = ACTIONS(1370), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [sym_none] = ACTIONS(1370), - [sym_undefined] = ACTIONS(1370), - [sym_sink] = ACTIONS(1370), - [sym_integer] = ACTIONS(1370), - [sym_float] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_multiline_string] = ACTIONS(1368), - [sym_character] = ACTIONS(1368), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2217), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(17), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(43), + [anon_sym_yield] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(51), + [anon_sym_errdefer] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(99), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1368), + [sym__newline] = ACTIONS(447), }, [STATE(517)] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1374), - [anon_sym_test] = ACTIONS(1374), - [anon_sym_hide] = ACTIONS(1374), - [anon_sym_func] = ACTIONS(1374), - [anon_sym_BANG] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_COMMA] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_anyopaque] = ACTIONS(1374), - [anon_sym_bool] = ACTIONS(1374), - [anon_sym_int] = ACTIONS(1374), - [anon_sym_uint] = ACTIONS(1374), - [anon_sym_float] = ACTIONS(1374), - [anon_sym_range] = ACTIONS(1374), - [anon_sym_i8] = ACTIONS(1374), - [anon_sym_i16] = ACTIONS(1374), - [anon_sym_i32] = ACTIONS(1374), - [anon_sym_i64] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1374), - [anon_sym_u16] = ACTIONS(1374), - [anon_sym_u32] = ACTIONS(1374), - [anon_sym_u64] = ACTIONS(1374), - [anon_sym_isize] = ACTIONS(1374), - [anon_sym_usize] = ACTIONS(1374), - [anon_sym_f32] = ACTIONS(1374), - [anon_sym_f64] = ACTIONS(1374), - [anon_sym_c_char] = ACTIONS(1374), - [anon_sym_c_schar] = ACTIONS(1374), - [anon_sym_c_uchar] = ACTIONS(1374), - [anon_sym_c_short] = ACTIONS(1374), - [anon_sym_c_ushort] = ACTIONS(1374), - [anon_sym_c_int] = ACTIONS(1374), - [anon_sym_c_uint] = ACTIONS(1374), - [anon_sym_c_long] = ACTIONS(1374), - [anon_sym_c_ulong] = ACTIONS(1374), - [anon_sym_c_longlong] = ACTIONS(1374), - [anon_sym_c_ulonglong] = ACTIONS(1374), - [anon_sym_c_float] = ACTIONS(1374), - [anon_sym_c_double] = ACTIONS(1374), - [anon_sym_c_longdouble] = ACTIONS(1374), - [anon_sym_PLUS_EQ] = ACTIONS(1372), - [anon_sym_DASH_EQ] = ACTIONS(1372), - [anon_sym_STAR_EQ] = ACTIONS(1372), - [anon_sym_SLASH_EQ] = ACTIONS(1372), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_COLON] = ACTIONS(1372), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_defer] = ACTIONS(1374), - [anon_sym_errdefer] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_else] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_expand] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_match] = ACTIONS(1374), - [anon_sym_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [anon_sym_orelse] = ACTIONS(1374), - [anon_sym_catch] = ACTIONS(1374), - [anon_sym_or] = ACTIONS(1374), - [anon_sym_and] = ACTIONS(1374), - [anon_sym_EQ_EQ] = ACTIONS(1372), - [anon_sym_BANG_EQ] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1372), - [anon_sym_GT] = ACTIONS(1374), - [anon_sym_GT_EQ] = ACTIONS(1372), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_SLASH] = ACTIONS(1374), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_try] = ACTIONS(1374), - [anon_sym_DOT] = ACTIONS(1374), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [sym_none] = ACTIONS(1374), - [sym_undefined] = ACTIONS(1374), - [sym_sink] = ACTIONS(1374), - [sym_integer] = ACTIONS(1374), - [sym_float] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_multiline_string] = ACTIONS(1372), - [sym_character] = ACTIONS(1372), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1372), + [sym__newline] = ACTIONS(1489), }, [STATE(518)] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_import] = ACTIONS(1378), - [anon_sym_test] = ACTIONS(1378), - [anon_sym_hide] = ACTIONS(1378), - [anon_sym_func] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(1378), - [anon_sym_EQ] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_COMMA] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_void] = ACTIONS(1378), - [anon_sym_anyopaque] = ACTIONS(1378), - [anon_sym_bool] = ACTIONS(1378), - [anon_sym_int] = ACTIONS(1378), - [anon_sym_uint] = ACTIONS(1378), - [anon_sym_float] = ACTIONS(1378), - [anon_sym_range] = ACTIONS(1378), - [anon_sym_i8] = ACTIONS(1378), - [anon_sym_i16] = ACTIONS(1378), - [anon_sym_i32] = ACTIONS(1378), - [anon_sym_i64] = ACTIONS(1378), - [anon_sym_u8] = ACTIONS(1378), - [anon_sym_u16] = ACTIONS(1378), - [anon_sym_u32] = ACTIONS(1378), - [anon_sym_u64] = ACTIONS(1378), - [anon_sym_isize] = ACTIONS(1378), - [anon_sym_usize] = ACTIONS(1378), - [anon_sym_f32] = ACTIONS(1378), - [anon_sym_f64] = ACTIONS(1378), - [anon_sym_c_char] = ACTIONS(1378), - [anon_sym_c_schar] = ACTIONS(1378), - [anon_sym_c_uchar] = ACTIONS(1378), - [anon_sym_c_short] = ACTIONS(1378), - [anon_sym_c_ushort] = ACTIONS(1378), - [anon_sym_c_int] = ACTIONS(1378), - [anon_sym_c_uint] = ACTIONS(1378), - [anon_sym_c_long] = ACTIONS(1378), - [anon_sym_c_ulong] = ACTIONS(1378), - [anon_sym_c_longlong] = ACTIONS(1378), - [anon_sym_c_ulonglong] = ACTIONS(1378), - [anon_sym_c_float] = ACTIONS(1378), - [anon_sym_c_double] = ACTIONS(1378), - [anon_sym_c_longdouble] = ACTIONS(1378), - [anon_sym_PLUS_EQ] = ACTIONS(1376), - [anon_sym_DASH_EQ] = ACTIONS(1376), - [anon_sym_STAR_EQ] = ACTIONS(1376), - [anon_sym_SLASH_EQ] = ACTIONS(1376), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_COLON] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_defer] = ACTIONS(1378), - [anon_sym_errdefer] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_else] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_expand] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_DOT_DOT] = ACTIONS(1378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1376), - [anon_sym_orelse] = ACTIONS(1378), - [anon_sym_catch] = ACTIONS(1378), - [anon_sym_or] = ACTIONS(1378), - [anon_sym_and] = ACTIONS(1378), - [anon_sym_EQ_EQ] = ACTIONS(1376), - [anon_sym_BANG_EQ] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1378), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT] = ACTIONS(1378), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_SLASH] = ACTIONS(1378), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_try] = ACTIONS(1378), - [anon_sym_DOT] = ACTIONS(1378), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [sym_none] = ACTIONS(1378), - [sym_undefined] = ACTIONS(1378), - [sym_sink] = ACTIONS(1378), - [sym_integer] = ACTIONS(1378), - [sym_float] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_multiline_string] = ACTIONS(1376), - [sym_character] = ACTIONS(1376), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1376), + [sym__newline] = ACTIONS(447), }, [STATE(519)] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_import] = ACTIONS(1382), - [anon_sym_test] = ACTIONS(1382), - [anon_sym_hide] = ACTIONS(1382), - [anon_sym_func] = ACTIONS(1382), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_EQ] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_DOLLAR] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_RBRACK] = ACTIONS(1380), - [anon_sym_void] = ACTIONS(1382), - [anon_sym_anyopaque] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_int] = ACTIONS(1382), - [anon_sym_uint] = ACTIONS(1382), - [anon_sym_float] = ACTIONS(1382), - [anon_sym_range] = ACTIONS(1382), - [anon_sym_i8] = ACTIONS(1382), - [anon_sym_i16] = ACTIONS(1382), - [anon_sym_i32] = ACTIONS(1382), - [anon_sym_i64] = ACTIONS(1382), - [anon_sym_u8] = ACTIONS(1382), - [anon_sym_u16] = ACTIONS(1382), - [anon_sym_u32] = ACTIONS(1382), - [anon_sym_u64] = ACTIONS(1382), - [anon_sym_isize] = ACTIONS(1382), - [anon_sym_usize] = ACTIONS(1382), - [anon_sym_f32] = ACTIONS(1382), - [anon_sym_f64] = ACTIONS(1382), - [anon_sym_c_char] = ACTIONS(1382), - [anon_sym_c_schar] = ACTIONS(1382), - [anon_sym_c_uchar] = ACTIONS(1382), - [anon_sym_c_short] = ACTIONS(1382), - [anon_sym_c_ushort] = ACTIONS(1382), - [anon_sym_c_int] = ACTIONS(1382), - [anon_sym_c_uint] = ACTIONS(1382), - [anon_sym_c_long] = ACTIONS(1382), - [anon_sym_c_ulong] = ACTIONS(1382), - [anon_sym_c_longlong] = ACTIONS(1382), - [anon_sym_c_ulonglong] = ACTIONS(1382), - [anon_sym_c_float] = ACTIONS(1382), - [anon_sym_c_double] = ACTIONS(1382), - [anon_sym_c_longdouble] = ACTIONS(1382), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_defer] = ACTIONS(1382), - [anon_sym_errdefer] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_else] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_expand] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_match] = ACTIONS(1382), - [anon_sym_DOT_DOT] = ACTIONS(1382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1380), - [anon_sym_orelse] = ACTIONS(1382), - [anon_sym_catch] = ACTIONS(1382), - [anon_sym_or] = ACTIONS(1382), - [anon_sym_and] = ACTIONS(1382), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1382), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1382), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_SLASH] = ACTIONS(1382), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_try] = ACTIONS(1382), - [anon_sym_DOT] = ACTIONS(1382), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [sym_none] = ACTIONS(1382), - [sym_undefined] = ACTIONS(1382), - [sym_sink] = ACTIONS(1382), - [sym_integer] = ACTIONS(1382), - [sym_float] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_multiline_string] = ACTIONS(1380), - [sym_character] = ACTIONS(1380), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1380), + [sym__newline] = ACTIONS(447), }, [STATE(520)] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_import] = ACTIONS(1386), - [anon_sym_test] = ACTIONS(1386), - [anon_sym_hide] = ACTIONS(1386), - [anon_sym_func] = ACTIONS(1386), - [anon_sym_BANG] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_QMARK] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_void] = ACTIONS(1386), - [anon_sym_anyopaque] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_int] = ACTIONS(1386), - [anon_sym_uint] = ACTIONS(1386), - [anon_sym_float] = ACTIONS(1386), - [anon_sym_range] = ACTIONS(1386), - [anon_sym_i8] = ACTIONS(1386), - [anon_sym_i16] = ACTIONS(1386), - [anon_sym_i32] = ACTIONS(1386), - [anon_sym_i64] = ACTIONS(1386), - [anon_sym_u8] = ACTIONS(1386), - [anon_sym_u16] = ACTIONS(1386), - [anon_sym_u32] = ACTIONS(1386), - [anon_sym_u64] = ACTIONS(1386), - [anon_sym_isize] = ACTIONS(1386), - [anon_sym_usize] = ACTIONS(1386), - [anon_sym_f32] = ACTIONS(1386), - [anon_sym_f64] = ACTIONS(1386), - [anon_sym_c_char] = ACTIONS(1386), - [anon_sym_c_schar] = ACTIONS(1386), - [anon_sym_c_uchar] = ACTIONS(1386), - [anon_sym_c_short] = ACTIONS(1386), - [anon_sym_c_ushort] = ACTIONS(1386), - [anon_sym_c_int] = ACTIONS(1386), - [anon_sym_c_uint] = ACTIONS(1386), - [anon_sym_c_long] = ACTIONS(1386), - [anon_sym_c_ulong] = ACTIONS(1386), - [anon_sym_c_longlong] = ACTIONS(1386), - [anon_sym_c_ulonglong] = ACTIONS(1386), - [anon_sym_c_float] = ACTIONS(1386), - [anon_sym_c_double] = ACTIONS(1386), - [anon_sym_c_longdouble] = ACTIONS(1386), - [anon_sym_PLUS_EQ] = ACTIONS(1384), - [anon_sym_DASH_EQ] = ACTIONS(1384), - [anon_sym_STAR_EQ] = ACTIONS(1384), - [anon_sym_SLASH_EQ] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1384), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_defer] = ACTIONS(1386), - [anon_sym_errdefer] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_else] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_expand] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_match] = ACTIONS(1386), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1384), - [anon_sym_orelse] = ACTIONS(1386), - [anon_sym_catch] = ACTIONS(1386), - [anon_sym_or] = ACTIONS(1386), - [anon_sym_and] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1384), - [anon_sym_BANG_EQ] = ACTIONS(1384), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_EQ] = ACTIONS(1384), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_try] = ACTIONS(1386), - [anon_sym_DOT] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1384), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [sym_none] = ACTIONS(1386), - [sym_undefined] = ACTIONS(1386), - [sym_sink] = ACTIONS(1386), - [sym_integer] = ACTIONS(1386), - [sym_float] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_multiline_string] = ACTIONS(1384), - [sym_character] = ACTIONS(1384), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1384), + [sym__newline] = ACTIONS(1491), }, [STATE(521)] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_import] = ACTIONS(1390), - [anon_sym_test] = ACTIONS(1390), - [anon_sym_hide] = ACTIONS(1390), - [anon_sym_func] = ACTIONS(1390), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_EQ] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_QMARK] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_void] = ACTIONS(1390), - [anon_sym_anyopaque] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_int] = ACTIONS(1390), - [anon_sym_uint] = ACTIONS(1390), - [anon_sym_float] = ACTIONS(1390), - [anon_sym_range] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_c_char] = ACTIONS(1390), - [anon_sym_c_schar] = ACTIONS(1390), - [anon_sym_c_uchar] = ACTIONS(1390), - [anon_sym_c_short] = ACTIONS(1390), - [anon_sym_c_ushort] = ACTIONS(1390), - [anon_sym_c_int] = ACTIONS(1390), - [anon_sym_c_uint] = ACTIONS(1390), - [anon_sym_c_long] = ACTIONS(1390), - [anon_sym_c_ulong] = ACTIONS(1390), - [anon_sym_c_longlong] = ACTIONS(1390), - [anon_sym_c_ulonglong] = ACTIONS(1390), - [anon_sym_c_float] = ACTIONS(1390), - [anon_sym_c_double] = ACTIONS(1390), - [anon_sym_c_longdouble] = ACTIONS(1390), - [anon_sym_PLUS_EQ] = ACTIONS(1388), - [anon_sym_DASH_EQ] = ACTIONS(1388), - [anon_sym_STAR_EQ] = ACTIONS(1388), - [anon_sym_SLASH_EQ] = ACTIONS(1388), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_COLON] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_defer] = ACTIONS(1390), - [anon_sym_errdefer] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_expand] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1388), - [anon_sym_orelse] = ACTIONS(1390), - [anon_sym_catch] = ACTIONS(1390), - [anon_sym_or] = ACTIONS(1390), - [anon_sym_and] = ACTIONS(1390), - [anon_sym_EQ_EQ] = ACTIONS(1388), - [anon_sym_BANG_EQ] = ACTIONS(1388), - [anon_sym_LT] = ACTIONS(1390), - [anon_sym_LT_EQ] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1390), - [anon_sym_GT_EQ] = ACTIONS(1388), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_SLASH] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_DOT] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [sym_none] = ACTIONS(1390), - [sym_undefined] = ACTIONS(1390), - [sym_sink] = ACTIONS(1390), - [sym_integer] = ACTIONS(1390), - [sym_float] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_multiline_string] = ACTIONS(1388), - [sym_character] = ACTIONS(1388), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(525), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1388), + [sym__newline] = ACTIONS(1493), }, [STATE(522)] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_import] = ACTIONS(1394), - [anon_sym_test] = ACTIONS(1394), - [anon_sym_hide] = ACTIONS(1394), - [anon_sym_func] = ACTIONS(1394), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1394), - [anon_sym_anyopaque] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_int] = ACTIONS(1394), - [anon_sym_uint] = ACTIONS(1394), - [anon_sym_float] = ACTIONS(1394), - [anon_sym_range] = ACTIONS(1394), - [anon_sym_i8] = ACTIONS(1394), - [anon_sym_i16] = ACTIONS(1394), - [anon_sym_i32] = ACTIONS(1394), - [anon_sym_i64] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1394), - [anon_sym_u16] = ACTIONS(1394), - [anon_sym_u32] = ACTIONS(1394), - [anon_sym_u64] = ACTIONS(1394), - [anon_sym_isize] = ACTIONS(1394), - [anon_sym_usize] = ACTIONS(1394), - [anon_sym_f32] = ACTIONS(1394), - [anon_sym_f64] = ACTIONS(1394), - [anon_sym_c_char] = ACTIONS(1394), - [anon_sym_c_schar] = ACTIONS(1394), - [anon_sym_c_uchar] = ACTIONS(1394), - [anon_sym_c_short] = ACTIONS(1394), - [anon_sym_c_ushort] = ACTIONS(1394), - [anon_sym_c_int] = ACTIONS(1394), - [anon_sym_c_uint] = ACTIONS(1394), - [anon_sym_c_long] = ACTIONS(1394), - [anon_sym_c_ulong] = ACTIONS(1394), - [anon_sym_c_longlong] = ACTIONS(1394), - [anon_sym_c_ulonglong] = ACTIONS(1394), - [anon_sym_c_float] = ACTIONS(1394), - [anon_sym_c_double] = ACTIONS(1394), - [anon_sym_c_longdouble] = ACTIONS(1394), - [anon_sym_PLUS_EQ] = ACTIONS(1392), - [anon_sym_DASH_EQ] = ACTIONS(1392), - [anon_sym_STAR_EQ] = ACTIONS(1392), - [anon_sym_SLASH_EQ] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_defer] = ACTIONS(1394), - [anon_sym_errdefer] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_expand] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_match] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1392), - [anon_sym_orelse] = ACTIONS(1394), - [anon_sym_catch] = ACTIONS(1394), - [anon_sym_or] = ACTIONS(1394), - [anon_sym_and] = ACTIONS(1394), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_try] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [sym_none] = ACTIONS(1394), - [sym_undefined] = ACTIONS(1394), - [sym_sink] = ACTIONS(1394), - [sym_integer] = ACTIONS(1394), - [sym_float] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_multiline_string] = ACTIONS(1392), - [sym_character] = ACTIONS(1392), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1392), + [sym__newline] = ACTIONS(447), }, [STATE(523)] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(1398), - [anon_sym_test] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_func] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_QMARK] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_RBRACK] = ACTIONS(1396), - [anon_sym_void] = ACTIONS(1398), - [anon_sym_anyopaque] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_int] = ACTIONS(1398), - [anon_sym_uint] = ACTIONS(1398), - [anon_sym_float] = ACTIONS(1398), - [anon_sym_range] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_c_char] = ACTIONS(1398), - [anon_sym_c_schar] = ACTIONS(1398), - [anon_sym_c_uchar] = ACTIONS(1398), - [anon_sym_c_short] = ACTIONS(1398), - [anon_sym_c_ushort] = ACTIONS(1398), - [anon_sym_c_int] = ACTIONS(1398), - [anon_sym_c_uint] = ACTIONS(1398), - [anon_sym_c_long] = ACTIONS(1398), - [anon_sym_c_ulong] = ACTIONS(1398), - [anon_sym_c_longlong] = ACTIONS(1398), - [anon_sym_c_ulonglong] = ACTIONS(1398), - [anon_sym_c_float] = ACTIONS(1398), - [anon_sym_c_double] = ACTIONS(1398), - [anon_sym_c_longdouble] = ACTIONS(1398), - [anon_sym_PLUS_EQ] = ACTIONS(1396), - [anon_sym_DASH_EQ] = ACTIONS(1396), - [anon_sym_STAR_EQ] = ACTIONS(1396), - [anon_sym_SLASH_EQ] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_COLON] = ACTIONS(1396), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_defer] = ACTIONS(1398), - [anon_sym_errdefer] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_expand] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_orelse] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_or] = ACTIONS(1398), - [anon_sym_and] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [sym_none] = ACTIONS(1398), - [sym_undefined] = ACTIONS(1398), - [sym_sink] = ACTIONS(1398), - [sym_integer] = ACTIONS(1398), - [sym_float] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_multiline_string] = ACTIONS(1396), - [sym_character] = ACTIONS(1396), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(524), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1396), + [sym__newline] = ACTIONS(1495), }, [STATE(524)] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_test] = ACTIONS(1402), - [anon_sym_hide] = ACTIONS(1402), - [anon_sym_func] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_QMARK] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_RBRACK] = ACTIONS(1400), - [anon_sym_void] = ACTIONS(1402), - [anon_sym_anyopaque] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_int] = ACTIONS(1402), - [anon_sym_uint] = ACTIONS(1402), - [anon_sym_float] = ACTIONS(1402), - [anon_sym_range] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_c_char] = ACTIONS(1402), - [anon_sym_c_schar] = ACTIONS(1402), - [anon_sym_c_uchar] = ACTIONS(1402), - [anon_sym_c_short] = ACTIONS(1402), - [anon_sym_c_ushort] = ACTIONS(1402), - [anon_sym_c_int] = ACTIONS(1402), - [anon_sym_c_uint] = ACTIONS(1402), - [anon_sym_c_long] = ACTIONS(1402), - [anon_sym_c_ulong] = ACTIONS(1402), - [anon_sym_c_longlong] = ACTIONS(1402), - [anon_sym_c_ulonglong] = ACTIONS(1402), - [anon_sym_c_float] = ACTIONS(1402), - [anon_sym_c_double] = ACTIONS(1402), - [anon_sym_c_longdouble] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_COLON] = ACTIONS(1400), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_defer] = ACTIONS(1402), - [anon_sym_errdefer] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_expand] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1400), - [anon_sym_orelse] = ACTIONS(1402), - [anon_sym_catch] = ACTIONS(1402), - [anon_sym_or] = ACTIONS(1402), - [anon_sym_and] = ACTIONS(1402), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [sym_none] = ACTIONS(1402), - [sym_undefined] = ACTIONS(1402), - [sym_sink] = ACTIONS(1402), - [sym_integer] = ACTIONS(1402), - [sym_float] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_multiline_string] = ACTIONS(1400), - [sym_character] = ACTIONS(1400), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1400), + [sym__newline] = ACTIONS(447), }, [STATE(525)] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_test] = ACTIONS(1406), - [anon_sym_hide] = ACTIONS(1406), - [anon_sym_func] = ACTIONS(1406), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_EQ] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(1404), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_anyopaque] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_int] = ACTIONS(1406), - [anon_sym_uint] = ACTIONS(1406), - [anon_sym_float] = ACTIONS(1406), - [anon_sym_range] = ACTIONS(1406), - [anon_sym_i8] = ACTIONS(1406), - [anon_sym_i16] = ACTIONS(1406), - [anon_sym_i32] = ACTIONS(1406), - [anon_sym_i64] = ACTIONS(1406), - [anon_sym_u8] = ACTIONS(1406), - [anon_sym_u16] = ACTIONS(1406), - [anon_sym_u32] = ACTIONS(1406), - [anon_sym_u64] = ACTIONS(1406), - [anon_sym_isize] = ACTIONS(1406), - [anon_sym_usize] = ACTIONS(1406), - [anon_sym_f32] = ACTIONS(1406), - [anon_sym_f64] = ACTIONS(1406), - [anon_sym_c_char] = ACTIONS(1406), - [anon_sym_c_schar] = ACTIONS(1406), - [anon_sym_c_uchar] = ACTIONS(1406), - [anon_sym_c_short] = ACTIONS(1406), - [anon_sym_c_ushort] = ACTIONS(1406), - [anon_sym_c_int] = ACTIONS(1406), - [anon_sym_c_uint] = ACTIONS(1406), - [anon_sym_c_long] = ACTIONS(1406), - [anon_sym_c_ulong] = ACTIONS(1406), - [anon_sym_c_longlong] = ACTIONS(1406), - [anon_sym_c_ulonglong] = ACTIONS(1406), - [anon_sym_c_float] = ACTIONS(1406), - [anon_sym_c_double] = ACTIONS(1406), - [anon_sym_c_longdouble] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1404), - [anon_sym_DASH_EQ] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1404), - [anon_sym_SLASH_EQ] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_COLON] = ACTIONS(1404), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_defer] = ACTIONS(1406), - [anon_sym_errdefer] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_expand] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1404), - [anon_sym_orelse] = ACTIONS(1406), - [anon_sym_catch] = ACTIONS(1406), - [anon_sym_or] = ACTIONS(1406), - [anon_sym_and] = ACTIONS(1406), - [anon_sym_EQ_EQ] = ACTIONS(1404), - [anon_sym_BANG_EQ] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_try] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [sym_none] = ACTIONS(1406), - [sym_undefined] = ACTIONS(1406), - [sym_sink] = ACTIONS(1406), - [sym_integer] = ACTIONS(1406), - [sym_float] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_multiline_string] = ACTIONS(1404), - [sym_character] = ACTIONS(1404), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1404), + [sym__newline] = ACTIONS(447), }, [STATE(526)] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_test] = ACTIONS(1410), - [anon_sym_hide] = ACTIONS(1410), - [anon_sym_func] = ACTIONS(1410), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_RPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_DOLLAR] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_QMARK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(1408), - [anon_sym_void] = ACTIONS(1410), - [anon_sym_anyopaque] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_int] = ACTIONS(1410), - [anon_sym_uint] = ACTIONS(1410), - [anon_sym_float] = ACTIONS(1410), - [anon_sym_range] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_c_char] = ACTIONS(1410), - [anon_sym_c_schar] = ACTIONS(1410), - [anon_sym_c_uchar] = ACTIONS(1410), - [anon_sym_c_short] = ACTIONS(1410), - [anon_sym_c_ushort] = ACTIONS(1410), - [anon_sym_c_int] = ACTIONS(1410), - [anon_sym_c_uint] = ACTIONS(1410), - [anon_sym_c_long] = ACTIONS(1410), - [anon_sym_c_ulong] = ACTIONS(1410), - [anon_sym_c_longlong] = ACTIONS(1410), - [anon_sym_c_ulonglong] = ACTIONS(1410), - [anon_sym_c_float] = ACTIONS(1410), - [anon_sym_c_double] = ACTIONS(1410), - [anon_sym_c_longdouble] = ACTIONS(1410), - [anon_sym_PLUS_EQ] = ACTIONS(1408), - [anon_sym_DASH_EQ] = ACTIONS(1408), - [anon_sym_STAR_EQ] = ACTIONS(1408), - [anon_sym_SLASH_EQ] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_defer] = ACTIONS(1410), - [anon_sym_errdefer] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_else] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_expand] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1408), - [anon_sym_orelse] = ACTIONS(1410), - [anon_sym_catch] = ACTIONS(1410), - [anon_sym_or] = ACTIONS(1410), - [anon_sym_and] = ACTIONS(1410), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_try] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_none] = ACTIONS(1410), - [sym_undefined] = ACTIONS(1410), - [sym_sink] = ACTIONS(1410), - [sym_integer] = ACTIONS(1410), - [sym_float] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_multiline_string] = ACTIONS(1408), - [sym_character] = ACTIONS(1408), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(528), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1408), + [sym__newline] = ACTIONS(1497), }, [STATE(527)] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_test] = ACTIONS(1414), - [anon_sym_hide] = ACTIONS(1414), - [anon_sym_func] = ACTIONS(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_void] = ACTIONS(1414), - [anon_sym_anyopaque] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_int] = ACTIONS(1414), - [anon_sym_uint] = ACTIONS(1414), - [anon_sym_float] = ACTIONS(1414), - [anon_sym_range] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_c_char] = ACTIONS(1414), - [anon_sym_c_schar] = ACTIONS(1414), - [anon_sym_c_uchar] = ACTIONS(1414), - [anon_sym_c_short] = ACTIONS(1414), - [anon_sym_c_ushort] = ACTIONS(1414), - [anon_sym_c_int] = ACTIONS(1414), - [anon_sym_c_uint] = ACTIONS(1414), - [anon_sym_c_long] = ACTIONS(1414), - [anon_sym_c_ulong] = ACTIONS(1414), - [anon_sym_c_longlong] = ACTIONS(1414), - [anon_sym_c_ulonglong] = ACTIONS(1414), - [anon_sym_c_float] = ACTIONS(1414), - [anon_sym_c_double] = ACTIONS(1414), - [anon_sym_c_longdouble] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1412), - [anon_sym_DASH_EQ] = ACTIONS(1412), - [anon_sym_STAR_EQ] = ACTIONS(1412), - [anon_sym_SLASH_EQ] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_defer] = ACTIONS(1414), - [anon_sym_errdefer] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_expand] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_DOT_DOT] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1412), - [anon_sym_orelse] = ACTIONS(1414), - [anon_sym_catch] = ACTIONS(1414), - [anon_sym_or] = ACTIONS(1414), - [anon_sym_and] = ACTIONS(1414), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [sym_none] = ACTIONS(1414), - [sym_undefined] = ACTIONS(1414), - [sym_sink] = ACTIONS(1414), - [sym_integer] = ACTIONS(1414), - [sym_float] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_multiline_string] = ACTIONS(1412), - [sym_character] = ACTIONS(1412), + [sym_variant_payload] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(481), + [sym_identifier] = ACTIONS(775), + [anon_sym_import] = ACTIONS(483), + [anon_sym_test] = ACTIONS(483), + [anon_sym_hide] = ACTIONS(483), + [anon_sym_func] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_void] = ACTIONS(775), + [anon_sym_anyopaque] = ACTIONS(775), + [anon_sym_bool] = ACTIONS(775), + [anon_sym_int] = ACTIONS(775), + [anon_sym_uint] = ACTIONS(775), + [anon_sym_float] = ACTIONS(775), + [anon_sym_range] = ACTIONS(775), + [anon_sym_i8] = ACTIONS(775), + [anon_sym_i16] = ACTIONS(775), + [anon_sym_i32] = ACTIONS(775), + [anon_sym_i64] = ACTIONS(775), + [anon_sym_u8] = ACTIONS(775), + [anon_sym_u16] = ACTIONS(775), + [anon_sym_u32] = ACTIONS(775), + [anon_sym_u64] = ACTIONS(775), + [anon_sym_isize] = ACTIONS(775), + [anon_sym_usize] = ACTIONS(775), + [anon_sym_f32] = ACTIONS(775), + [anon_sym_f64] = ACTIONS(775), + [anon_sym_c_char] = ACTIONS(775), + [anon_sym_c_schar] = ACTIONS(775), + [anon_sym_c_uchar] = ACTIONS(775), + [anon_sym_c_short] = ACTIONS(775), + [anon_sym_c_ushort] = ACTIONS(775), + [anon_sym_c_int] = ACTIONS(775), + [anon_sym_c_uint] = ACTIONS(775), + [anon_sym_c_long] = ACTIONS(775), + [anon_sym_c_ulong] = ACTIONS(775), + [anon_sym_c_longlong] = ACTIONS(775), + [anon_sym_c_ulonglong] = ACTIONS(775), + [anon_sym_c_float] = ACTIONS(775), + [anon_sym_c_double] = ACTIONS(775), + [anon_sym_c_longdouble] = ACTIONS(775), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_xor_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), + [anon_sym_return] = ACTIONS(775), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_defer] = ACTIONS(775), + [anon_sym_errdefer] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_else] = ACTIONS(483), + [anon_sym_while] = ACTIONS(775), + [anon_sym_expand] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(773), + [anon_sym_orelse] = ACTIONS(775), + [anon_sym_catch] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_LT_LT_PIPE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_try] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [sym_none] = ACTIONS(775), + [sym_undefined] = ACTIONS(775), + [sym_sink] = ACTIONS(775), + [sym_integer] = ACTIONS(775), + [sym_float] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_multiline_string] = ACTIONS(773), + [sym_character] = ACTIONS(773), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1412), + [sym__newline] = ACTIONS(773), }, [STATE(528)] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_import] = ACTIONS(1418), - [anon_sym_test] = ACTIONS(1418), - [anon_sym_hide] = ACTIONS(1418), - [anon_sym_func] = ACTIONS(1418), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1418), - [anon_sym_anyopaque] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_int] = ACTIONS(1418), - [anon_sym_uint] = ACTIONS(1418), - [anon_sym_float] = ACTIONS(1418), - [anon_sym_range] = ACTIONS(1418), - [anon_sym_i8] = ACTIONS(1418), - [anon_sym_i16] = ACTIONS(1418), - [anon_sym_i32] = ACTIONS(1418), - [anon_sym_i64] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1418), - [anon_sym_u16] = ACTIONS(1418), - [anon_sym_u32] = ACTIONS(1418), - [anon_sym_u64] = ACTIONS(1418), - [anon_sym_isize] = ACTIONS(1418), - [anon_sym_usize] = ACTIONS(1418), - [anon_sym_f32] = ACTIONS(1418), - [anon_sym_f64] = ACTIONS(1418), - [anon_sym_c_char] = ACTIONS(1418), - [anon_sym_c_schar] = ACTIONS(1418), - [anon_sym_c_uchar] = ACTIONS(1418), - [anon_sym_c_short] = ACTIONS(1418), - [anon_sym_c_ushort] = ACTIONS(1418), - [anon_sym_c_int] = ACTIONS(1418), - [anon_sym_c_uint] = ACTIONS(1418), - [anon_sym_c_long] = ACTIONS(1418), - [anon_sym_c_ulong] = ACTIONS(1418), - [anon_sym_c_longlong] = ACTIONS(1418), - [anon_sym_c_ulonglong] = ACTIONS(1418), - [anon_sym_c_float] = ACTIONS(1418), - [anon_sym_c_double] = ACTIONS(1418), - [anon_sym_c_longdouble] = ACTIONS(1418), - [anon_sym_PLUS_EQ] = ACTIONS(1416), - [anon_sym_DASH_EQ] = ACTIONS(1416), - [anon_sym_STAR_EQ] = ACTIONS(1416), - [anon_sym_SLASH_EQ] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1418), - [anon_sym_COLON] = ACTIONS(1416), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_defer] = ACTIONS(1418), - [anon_sym_errdefer] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_else] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_expand] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1418), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1416), - [anon_sym_orelse] = ACTIONS(1418), - [anon_sym_catch] = ACTIONS(1418), - [anon_sym_or] = ACTIONS(1418), - [anon_sym_and] = ACTIONS(1418), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [sym_none] = ACTIONS(1418), - [sym_undefined] = ACTIONS(1418), - [sym_sink] = ACTIONS(1418), - [sym_integer] = ACTIONS(1418), - [sym_float] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_multiline_string] = ACTIONS(1416), - [sym_character] = ACTIONS(1416), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1416), + [sym__newline] = ACTIONS(447), }, [STATE(529)] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_import] = ACTIONS(1422), - [anon_sym_test] = ACTIONS(1422), - [anon_sym_hide] = ACTIONS(1422), - [anon_sym_func] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_EQ] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_QMARK] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_void] = ACTIONS(1422), - [anon_sym_anyopaque] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_int] = ACTIONS(1422), - [anon_sym_uint] = ACTIONS(1422), - [anon_sym_float] = ACTIONS(1422), - [anon_sym_range] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_c_char] = ACTIONS(1422), - [anon_sym_c_schar] = ACTIONS(1422), - [anon_sym_c_uchar] = ACTIONS(1422), - [anon_sym_c_short] = ACTIONS(1422), - [anon_sym_c_ushort] = ACTIONS(1422), - [anon_sym_c_int] = ACTIONS(1422), - [anon_sym_c_uint] = ACTIONS(1422), - [anon_sym_c_long] = ACTIONS(1422), - [anon_sym_c_ulong] = ACTIONS(1422), - [anon_sym_c_longlong] = ACTIONS(1422), - [anon_sym_c_ulonglong] = ACTIONS(1422), - [anon_sym_c_float] = ACTIONS(1422), - [anon_sym_c_double] = ACTIONS(1422), - [anon_sym_c_longdouble] = ACTIONS(1422), - [anon_sym_PLUS_EQ] = ACTIONS(1420), - [anon_sym_DASH_EQ] = ACTIONS(1420), - [anon_sym_STAR_EQ] = ACTIONS(1420), - [anon_sym_SLASH_EQ] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_COLON] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_defer] = ACTIONS(1422), - [anon_sym_errdefer] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_expand] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), - [anon_sym_orelse] = ACTIONS(1422), - [anon_sym_catch] = ACTIONS(1422), - [anon_sym_or] = ACTIONS(1422), - [anon_sym_and] = ACTIONS(1422), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [sym_none] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [sym_sink] = ACTIONS(1422), - [sym_integer] = ACTIONS(1422), - [sym_float] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_multiline_string] = ACTIONS(1420), - [sym_character] = ACTIONS(1420), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1420), + [sym__newline] = ACTIONS(447), }, [STATE(530)] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_test] = ACTIONS(1426), - [anon_sym_hide] = ACTIONS(1426), - [anon_sym_func] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1424), - [anon_sym_void] = ACTIONS(1426), - [anon_sym_anyopaque] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_int] = ACTIONS(1426), - [anon_sym_uint] = ACTIONS(1426), - [anon_sym_float] = ACTIONS(1426), - [anon_sym_range] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_c_char] = ACTIONS(1426), - [anon_sym_c_schar] = ACTIONS(1426), - [anon_sym_c_uchar] = ACTIONS(1426), - [anon_sym_c_short] = ACTIONS(1426), - [anon_sym_c_ushort] = ACTIONS(1426), - [anon_sym_c_int] = ACTIONS(1426), - [anon_sym_c_uint] = ACTIONS(1426), - [anon_sym_c_long] = ACTIONS(1426), - [anon_sym_c_ulong] = ACTIONS(1426), - [anon_sym_c_longlong] = ACTIONS(1426), - [anon_sym_c_ulonglong] = ACTIONS(1426), - [anon_sym_c_float] = ACTIONS(1426), - [anon_sym_c_double] = ACTIONS(1426), - [anon_sym_c_longdouble] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1424), - [anon_sym_DASH_EQ] = ACTIONS(1424), - [anon_sym_STAR_EQ] = ACTIONS(1424), - [anon_sym_SLASH_EQ] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_COLON] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_defer] = ACTIONS(1426), - [anon_sym_errdefer] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_else] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_expand] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), - [anon_sym_orelse] = ACTIONS(1426), - [anon_sym_catch] = ACTIONS(1426), - [anon_sym_or] = ACTIONS(1426), - [anon_sym_and] = ACTIONS(1426), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_none] = ACTIONS(1426), - [sym_undefined] = ACTIONS(1426), - [sym_sink] = ACTIONS(1426), - [sym_integer] = ACTIONS(1426), - [sym_float] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_multiline_string] = ACTIONS(1424), - [sym_character] = ACTIONS(1424), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1424), + [sym__newline] = ACTIONS(1499), }, [STATE(531)] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_test] = ACTIONS(1430), - [anon_sym_hide] = ACTIONS(1430), - [anon_sym_func] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_anyopaque] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_int] = ACTIONS(1430), - [anon_sym_uint] = ACTIONS(1430), - [anon_sym_float] = ACTIONS(1430), - [anon_sym_range] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_c_char] = ACTIONS(1430), - [anon_sym_c_schar] = ACTIONS(1430), - [anon_sym_c_uchar] = ACTIONS(1430), - [anon_sym_c_short] = ACTIONS(1430), - [anon_sym_c_ushort] = ACTIONS(1430), - [anon_sym_c_int] = ACTIONS(1430), - [anon_sym_c_uint] = ACTIONS(1430), - [anon_sym_c_long] = ACTIONS(1430), - [anon_sym_c_ulong] = ACTIONS(1430), - [anon_sym_c_longlong] = ACTIONS(1430), - [anon_sym_c_ulonglong] = ACTIONS(1430), - [anon_sym_c_float] = ACTIONS(1430), - [anon_sym_c_double] = ACTIONS(1430), - [anon_sym_c_longdouble] = ACTIONS(1430), - [anon_sym_PLUS_EQ] = ACTIONS(1428), - [anon_sym_DASH_EQ] = ACTIONS(1428), - [anon_sym_STAR_EQ] = ACTIONS(1428), - [anon_sym_SLASH_EQ] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_defer] = ACTIONS(1430), - [anon_sym_errdefer] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_expand] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), - [anon_sym_orelse] = ACTIONS(1430), - [anon_sym_catch] = ACTIONS(1430), - [anon_sym_or] = ACTIONS(1430), - [anon_sym_and] = ACTIONS(1430), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_none] = ACTIONS(1430), - [sym_undefined] = ACTIONS(1430), - [sym_sink] = ACTIONS(1430), - [sym_integer] = ACTIONS(1430), - [sym_float] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_multiline_string] = ACTIONS(1428), - [sym_character] = ACTIONS(1428), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1428), + [sym__newline] = ACTIONS(447), }, [STATE(532)] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_import] = ACTIONS(1434), - [anon_sym_test] = ACTIONS(1434), - [anon_sym_hide] = ACTIONS(1434), - [anon_sym_func] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_RBRACK] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1434), - [anon_sym_anyopaque] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_int] = ACTIONS(1434), - [anon_sym_uint] = ACTIONS(1434), - [anon_sym_float] = ACTIONS(1434), - [anon_sym_range] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_c_char] = ACTIONS(1434), - [anon_sym_c_schar] = ACTIONS(1434), - [anon_sym_c_uchar] = ACTIONS(1434), - [anon_sym_c_short] = ACTIONS(1434), - [anon_sym_c_ushort] = ACTIONS(1434), - [anon_sym_c_int] = ACTIONS(1434), - [anon_sym_c_uint] = ACTIONS(1434), - [anon_sym_c_long] = ACTIONS(1434), - [anon_sym_c_ulong] = ACTIONS(1434), - [anon_sym_c_longlong] = ACTIONS(1434), - [anon_sym_c_ulonglong] = ACTIONS(1434), - [anon_sym_c_float] = ACTIONS(1434), - [anon_sym_c_double] = ACTIONS(1434), - [anon_sym_c_longdouble] = ACTIONS(1434), - [anon_sym_PLUS_EQ] = ACTIONS(1432), - [anon_sym_DASH_EQ] = ACTIONS(1432), - [anon_sym_STAR_EQ] = ACTIONS(1432), - [anon_sym_SLASH_EQ] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_defer] = ACTIONS(1434), - [anon_sym_errdefer] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_expand] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_DOT_DOT] = ACTIONS(1434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1432), - [anon_sym_orelse] = ACTIONS(1434), - [anon_sym_catch] = ACTIONS(1434), - [anon_sym_or] = ACTIONS(1434), - [anon_sym_and] = ACTIONS(1434), - [anon_sym_EQ_EQ] = ACTIONS(1432), - [anon_sym_BANG_EQ] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_none] = ACTIONS(1434), - [sym_undefined] = ACTIONS(1434), - [sym_sink] = ACTIONS(1434), - [sym_integer] = ACTIONS(1434), - [sym_float] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_multiline_string] = ACTIONS(1432), - [sym_character] = ACTIONS(1432), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(533), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1432), + [sym__newline] = ACTIONS(1501), }, [STATE(533)] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_test] = ACTIONS(1438), - [anon_sym_hide] = ACTIONS(1438), - [anon_sym_func] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_void] = ACTIONS(1438), - [anon_sym_anyopaque] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_int] = ACTIONS(1438), - [anon_sym_uint] = ACTIONS(1438), - [anon_sym_float] = ACTIONS(1438), - [anon_sym_range] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_c_char] = ACTIONS(1438), - [anon_sym_c_schar] = ACTIONS(1438), - [anon_sym_c_uchar] = ACTIONS(1438), - [anon_sym_c_short] = ACTIONS(1438), - [anon_sym_c_ushort] = ACTIONS(1438), - [anon_sym_c_int] = ACTIONS(1438), - [anon_sym_c_uint] = ACTIONS(1438), - [anon_sym_c_long] = ACTIONS(1438), - [anon_sym_c_ulong] = ACTIONS(1438), - [anon_sym_c_longlong] = ACTIONS(1438), - [anon_sym_c_ulonglong] = ACTIONS(1438), - [anon_sym_c_float] = ACTIONS(1438), - [anon_sym_c_double] = ACTIONS(1438), - [anon_sym_c_longdouble] = ACTIONS(1438), - [anon_sym_PLUS_EQ] = ACTIONS(1436), - [anon_sym_DASH_EQ] = ACTIONS(1436), - [anon_sym_STAR_EQ] = ACTIONS(1436), - [anon_sym_SLASH_EQ] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_defer] = ACTIONS(1438), - [anon_sym_errdefer] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_expand] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1436), - [anon_sym_orelse] = ACTIONS(1438), - [anon_sym_catch] = ACTIONS(1438), - [anon_sym_or] = ACTIONS(1438), - [anon_sym_and] = ACTIONS(1438), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_none] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1438), - [sym_sink] = ACTIONS(1438), - [sym_integer] = ACTIONS(1438), - [sym_float] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1436), - [sym_multiline_string] = ACTIONS(1436), - [sym_character] = ACTIONS(1436), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2261), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(179), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(197), + [anon_sym_yield] = ACTIONS(199), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(201), + [anon_sym_errdefer] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(217), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1436), + [sym__newline] = ACTIONS(447), }, [STATE(534)] = { - [ts_builtin_sym_end] = ACTIONS(393), - [sym_identifier] = ACTIONS(391), - [anon_sym_import] = ACTIONS(391), - [anon_sym_test] = ACTIONS(391), - [anon_sym_hide] = ACTIONS(391), - [anon_sym_func] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_struct] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_COMMA] = ACTIONS(393), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_RBRACK] = ACTIONS(393), - [anon_sym_void] = ACTIONS(391), - [anon_sym_anyopaque] = ACTIONS(391), - [anon_sym_bool] = ACTIONS(391), - [anon_sym_int] = ACTIONS(391), - [anon_sym_uint] = ACTIONS(391), - [anon_sym_float] = ACTIONS(391), - [anon_sym_range] = ACTIONS(391), - [anon_sym_i8] = ACTIONS(391), - [anon_sym_i16] = ACTIONS(391), - [anon_sym_i32] = ACTIONS(391), - [anon_sym_i64] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(391), - [anon_sym_u16] = ACTIONS(391), - [anon_sym_u32] = ACTIONS(391), - [anon_sym_u64] = ACTIONS(391), - [anon_sym_isize] = ACTIONS(391), - [anon_sym_usize] = ACTIONS(391), - [anon_sym_f32] = ACTIONS(391), - [anon_sym_f64] = ACTIONS(391), - [anon_sym_c_char] = ACTIONS(391), - [anon_sym_c_schar] = ACTIONS(391), - [anon_sym_c_uchar] = ACTIONS(391), - [anon_sym_c_short] = ACTIONS(391), - [anon_sym_c_ushort] = ACTIONS(391), - [anon_sym_c_int] = ACTIONS(391), - [anon_sym_c_uint] = ACTIONS(391), - [anon_sym_c_long] = ACTIONS(391), - [anon_sym_c_ulong] = ACTIONS(391), - [anon_sym_c_longlong] = ACTIONS(391), - [anon_sym_c_ulonglong] = ACTIONS(391), - [anon_sym_c_float] = ACTIONS(391), - [anon_sym_c_double] = ACTIONS(391), - [anon_sym_c_longdouble] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(393), - [anon_sym_DASH_EQ] = ACTIONS(393), - [anon_sym_STAR_EQ] = ACTIONS(393), - [anon_sym_SLASH_EQ] = ACTIONS(393), - [anon_sym_return] = ACTIONS(391), - [anon_sym_yield] = ACTIONS(391), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_break] = ACTIONS(391), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_defer] = ACTIONS(391), - [anon_sym_errdefer] = ACTIONS(391), - [anon_sym_if] = ACTIONS(391), - [anon_sym_else] = ACTIONS(391), - [anon_sym_while] = ACTIONS(391), - [anon_sym_expand] = ACTIONS(391), - [anon_sym_for] = ACTIONS(391), - [anon_sym_match] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_orelse] = ACTIONS(391), - [anon_sym_catch] = ACTIONS(391), - [anon_sym_or] = ACTIONS(391), - [anon_sym_and] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(393), - [anon_sym_BANG_EQ] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(393), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_try] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_true] = ACTIONS(391), - [anon_sym_false] = ACTIONS(391), - [sym_none] = ACTIONS(391), - [sym_undefined] = ACTIONS(391), - [sym_sink] = ACTIONS(391), - [sym_integer] = ACTIONS(391), - [sym_float] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [sym_multiline_string] = ACTIONS(393), - [sym_character] = ACTIONS(393), + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(651), + [anon_sym_test] = ACTIONS(651), + [anon_sym_hide] = ACTIONS(651), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1113), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_uint] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(649), + [anon_sym_DASH_EQ] = ACTIONS(649), + [anon_sym_STAR_EQ] = ACTIONS(649), + [anon_sym_SLASH_EQ] = ACTIONS(649), + [anon_sym_AMP_EQ] = ACTIONS(649), + [anon_sym_PIPE_EQ] = ACTIONS(649), + [anon_sym_xor_EQ] = ACTIONS(649), + [anon_sym_LT_LT_EQ] = ACTIONS(649), + [anon_sym_GT_GT_EQ] = ACTIONS(649), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(649), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(651), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_expand] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1113), + [anon_sym_xor] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1113), + [anon_sym_GT_GT] = ACTIONS(1113), + [anon_sym_LT_LT_PIPE] = ACTIONS(1113), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(393), + [sym__newline] = ACTIONS(1111), }, [STATE(535)] = { - [ts_builtin_sym_end] = ACTIONS(249), - [sym_identifier] = ACTIONS(245), - [anon_sym_import] = ACTIONS(245), - [anon_sym_test] = ACTIONS(245), - [anon_sym_hide] = ACTIONS(245), - [anon_sym_func] = ACTIONS(245), - [anon_sym_BANG] = ACTIONS(245), - [anon_sym_EQ] = ACTIONS(245), - [anon_sym_struct] = ACTIONS(245), - [anon_sym_LPAREN] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_COMMA] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_DOLLAR] = ACTIONS(249), - [anon_sym_PIPE] = ACTIONS(249), - [anon_sym_QMARK] = ACTIONS(249), - [anon_sym_STAR] = ACTIONS(245), - [anon_sym_LBRACK] = ACTIONS(249), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_RBRACK] = ACTIONS(249), - [anon_sym_void] = ACTIONS(245), - [anon_sym_anyopaque] = ACTIONS(245), - [anon_sym_bool] = ACTIONS(245), - [anon_sym_int] = ACTIONS(245), - [anon_sym_uint] = ACTIONS(245), - [anon_sym_float] = ACTIONS(245), - [anon_sym_range] = ACTIONS(245), - [anon_sym_i8] = ACTIONS(245), - [anon_sym_i16] = ACTIONS(245), - [anon_sym_i32] = ACTIONS(245), - [anon_sym_i64] = ACTIONS(245), - [anon_sym_u8] = ACTIONS(245), - [anon_sym_u16] = ACTIONS(245), - [anon_sym_u32] = ACTIONS(245), - [anon_sym_u64] = ACTIONS(245), - [anon_sym_isize] = ACTIONS(245), - [anon_sym_usize] = ACTIONS(245), - [anon_sym_f32] = ACTIONS(245), - [anon_sym_f64] = ACTIONS(245), - [anon_sym_c_char] = ACTIONS(245), - [anon_sym_c_schar] = ACTIONS(245), - [anon_sym_c_uchar] = ACTIONS(245), - [anon_sym_c_short] = ACTIONS(245), - [anon_sym_c_ushort] = ACTIONS(245), - [anon_sym_c_int] = ACTIONS(245), - [anon_sym_c_uint] = ACTIONS(245), - [anon_sym_c_long] = ACTIONS(245), - [anon_sym_c_ulong] = ACTIONS(245), - [anon_sym_c_longlong] = ACTIONS(245), - [anon_sym_c_ulonglong] = ACTIONS(245), - [anon_sym_c_float] = ACTIONS(245), - [anon_sym_c_double] = ACTIONS(245), - [anon_sym_c_longdouble] = ACTIONS(245), - [anon_sym_PLUS_EQ] = ACTIONS(249), - [anon_sym_DASH_EQ] = ACTIONS(249), - [anon_sym_STAR_EQ] = ACTIONS(249), - [anon_sym_SLASH_EQ] = ACTIONS(249), - [anon_sym_return] = ACTIONS(245), - [anon_sym_yield] = ACTIONS(245), - [anon_sym_COLON] = ACTIONS(249), - [anon_sym_break] = ACTIONS(245), - [anon_sym_continue] = ACTIONS(245), - [anon_sym_defer] = ACTIONS(245), - [anon_sym_errdefer] = ACTIONS(245), - [anon_sym_if] = ACTIONS(245), - [anon_sym_else] = ACTIONS(245), - [anon_sym_while] = ACTIONS(245), - [anon_sym_expand] = ACTIONS(245), - [anon_sym_for] = ACTIONS(245), - [anon_sym_match] = ACTIONS(245), - [anon_sym_DOT_DOT] = ACTIONS(245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(249), - [anon_sym_orelse] = ACTIONS(245), - [anon_sym_catch] = ACTIONS(245), - [anon_sym_or] = ACTIONS(245), - [anon_sym_and] = ACTIONS(245), - [anon_sym_EQ_EQ] = ACTIONS(249), - [anon_sym_BANG_EQ] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(249), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_GT_EQ] = ACTIONS(249), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_SLASH] = ACTIONS(245), - [anon_sym_AMP] = ACTIONS(249), - [anon_sym_try] = ACTIONS(245), - [anon_sym_DOT] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(249), - [anon_sym_true] = ACTIONS(245), - [anon_sym_false] = ACTIONS(245), - [sym_none] = ACTIONS(245), - [sym_undefined] = ACTIONS(245), - [sym_sink] = ACTIONS(245), - [sym_integer] = ACTIONS(245), - [sym_float] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_multiline_string] = ACTIONS(249), - [sym_character] = ACTIONS(249), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2248), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(137), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(145), + [anon_sym_yield] = ACTIONS(147), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(149), + [anon_sym_errdefer] = ACTIONS(151), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(159), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(249), + [sym__newline] = ACTIONS(1503), }, [STATE(536)] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_test] = ACTIONS(1442), - [anon_sym_hide] = ACTIONS(1442), - [anon_sym_func] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_void] = ACTIONS(1442), - [anon_sym_anyopaque] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_int] = ACTIONS(1442), - [anon_sym_uint] = ACTIONS(1442), - [anon_sym_float] = ACTIONS(1442), - [anon_sym_range] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_c_char] = ACTIONS(1442), - [anon_sym_c_schar] = ACTIONS(1442), - [anon_sym_c_uchar] = ACTIONS(1442), - [anon_sym_c_short] = ACTIONS(1442), - [anon_sym_c_ushort] = ACTIONS(1442), - [anon_sym_c_int] = ACTIONS(1442), - [anon_sym_c_uint] = ACTIONS(1442), - [anon_sym_c_long] = ACTIONS(1442), - [anon_sym_c_ulong] = ACTIONS(1442), - [anon_sym_c_longlong] = ACTIONS(1442), - [anon_sym_c_ulonglong] = ACTIONS(1442), - [anon_sym_c_float] = ACTIONS(1442), - [anon_sym_c_double] = ACTIONS(1442), - [anon_sym_c_longdouble] = ACTIONS(1442), - [anon_sym_PLUS_EQ] = ACTIONS(1440), - [anon_sym_DASH_EQ] = ACTIONS(1440), - [anon_sym_STAR_EQ] = ACTIONS(1440), - [anon_sym_SLASH_EQ] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_COLON] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_defer] = ACTIONS(1442), - [anon_sym_errdefer] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_else] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_expand] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1440), - [anon_sym_orelse] = ACTIONS(1442), - [anon_sym_catch] = ACTIONS(1442), - [anon_sym_or] = ACTIONS(1442), - [anon_sym_and] = ACTIONS(1442), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_none] = ACTIONS(1442), - [sym_undefined] = ACTIONS(1442), - [sym_sink] = ACTIONS(1442), - [sym_integer] = ACTIONS(1442), - [sym_float] = ACTIONS(1440), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym_multiline_string] = ACTIONS(1440), - [sym_character] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(789), + [sym_identifier] = ACTIONS(1147), + [anon_sym_import] = ACTIONS(791), + [anon_sym_test] = ACTIONS(791), + [anon_sym_hide] = ACTIONS(791), + [anon_sym_func] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(791), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(1147), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1147), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1147), + [anon_sym_anyopaque] = ACTIONS(1147), + [anon_sym_bool] = ACTIONS(1147), + [anon_sym_int] = ACTIONS(1147), + [anon_sym_uint] = ACTIONS(1147), + [anon_sym_float] = ACTIONS(1147), + [anon_sym_range] = ACTIONS(1147), + [anon_sym_i8] = ACTIONS(1147), + [anon_sym_i16] = ACTIONS(1147), + [anon_sym_i32] = ACTIONS(1147), + [anon_sym_i64] = ACTIONS(1147), + [anon_sym_u8] = ACTIONS(1147), + [anon_sym_u16] = ACTIONS(1147), + [anon_sym_u32] = ACTIONS(1147), + [anon_sym_u64] = ACTIONS(1147), + [anon_sym_isize] = ACTIONS(1147), + [anon_sym_usize] = ACTIONS(1147), + [anon_sym_f32] = ACTIONS(1147), + [anon_sym_f64] = ACTIONS(1147), + [anon_sym_c_char] = ACTIONS(1147), + [anon_sym_c_schar] = ACTIONS(1147), + [anon_sym_c_uchar] = ACTIONS(1147), + [anon_sym_c_short] = ACTIONS(1147), + [anon_sym_c_ushort] = ACTIONS(1147), + [anon_sym_c_int] = ACTIONS(1147), + [anon_sym_c_uint] = ACTIONS(1147), + [anon_sym_c_long] = ACTIONS(1147), + [anon_sym_c_ulong] = ACTIONS(1147), + [anon_sym_c_longlong] = ACTIONS(1147), + [anon_sym_c_ulonglong] = ACTIONS(1147), + [anon_sym_c_float] = ACTIONS(1147), + [anon_sym_c_double] = ACTIONS(1147), + [anon_sym_c_longdouble] = ACTIONS(1147), + [anon_sym_PLUS_EQ] = ACTIONS(789), + [anon_sym_DASH_EQ] = ACTIONS(789), + [anon_sym_STAR_EQ] = ACTIONS(789), + [anon_sym_SLASH_EQ] = ACTIONS(789), + [anon_sym_AMP_EQ] = ACTIONS(789), + [anon_sym_PIPE_EQ] = ACTIONS(789), + [anon_sym_xor_EQ] = ACTIONS(789), + [anon_sym_LT_LT_EQ] = ACTIONS(789), + [anon_sym_GT_GT_EQ] = ACTIONS(789), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(789), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_yield] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_defer] = ACTIONS(1147), + [anon_sym_errdefer] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(791), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_expand] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [anon_sym_orelse] = ACTIONS(1147), + [anon_sym_catch] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1147), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1147), + [anon_sym_xor] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_LT_LT_PIPE] = ACTIONS(1147), + [anon_sym_PLUS] = ACTIONS(1147), + [anon_sym_SLASH] = ACTIONS(1147), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1147), + [anon_sym_false] = ACTIONS(1147), + [sym_none] = ACTIONS(1147), + [sym_undefined] = ACTIONS(1147), + [sym_sink] = ACTIONS(1147), + [sym_integer] = ACTIONS(1147), + [sym_float] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_multiline_string] = ACTIONS(1145), + [sym_character] = ACTIONS(1145), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1440), + [sym__newline] = ACTIONS(1145), }, [STATE(537)] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_import] = ACTIONS(1446), - [anon_sym_test] = ACTIONS(1446), - [anon_sym_hide] = ACTIONS(1446), - [anon_sym_func] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_RBRACK] = ACTIONS(1444), - [anon_sym_void] = ACTIONS(1446), - [anon_sym_anyopaque] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_int] = ACTIONS(1446), - [anon_sym_uint] = ACTIONS(1446), - [anon_sym_float] = ACTIONS(1446), - [anon_sym_range] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_c_char] = ACTIONS(1446), - [anon_sym_c_schar] = ACTIONS(1446), - [anon_sym_c_uchar] = ACTIONS(1446), - [anon_sym_c_short] = ACTIONS(1446), - [anon_sym_c_ushort] = ACTIONS(1446), - [anon_sym_c_int] = ACTIONS(1446), - [anon_sym_c_uint] = ACTIONS(1446), - [anon_sym_c_long] = ACTIONS(1446), - [anon_sym_c_ulong] = ACTIONS(1446), - [anon_sym_c_longlong] = ACTIONS(1446), - [anon_sym_c_ulonglong] = ACTIONS(1446), - [anon_sym_c_float] = ACTIONS(1446), - [anon_sym_c_double] = ACTIONS(1446), - [anon_sym_c_longdouble] = ACTIONS(1446), - [anon_sym_PLUS_EQ] = ACTIONS(1444), - [anon_sym_DASH_EQ] = ACTIONS(1444), - [anon_sym_STAR_EQ] = ACTIONS(1444), - [anon_sym_SLASH_EQ] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_defer] = ACTIONS(1446), - [anon_sym_errdefer] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_else] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_expand] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1444), - [anon_sym_orelse] = ACTIONS(1446), - [anon_sym_catch] = ACTIONS(1446), - [anon_sym_or] = ACTIONS(1446), - [anon_sym_and] = ACTIONS(1446), - [anon_sym_EQ_EQ] = ACTIONS(1444), - [anon_sym_BANG_EQ] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1444), - [anon_sym_GT] = ACTIONS(1446), - [anon_sym_GT_EQ] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_SLASH] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1446), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_none] = ACTIONS(1446), - [sym_undefined] = ACTIONS(1446), - [sym_sink] = ACTIONS(1446), - [sym_integer] = ACTIONS(1446), - [sym_float] = ACTIONS(1444), - [anon_sym_DQUOTE] = ACTIONS(1444), - [sym_multiline_string] = ACTIONS(1444), - [sym_character] = ACTIONS(1444), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1444), + [sym__newline] = ACTIONS(1505), }, [STATE(538)] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_import] = ACTIONS(1450), - [anon_sym_test] = ACTIONS(1450), - [anon_sym_hide] = ACTIONS(1450), - [anon_sym_func] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_void] = ACTIONS(1450), - [anon_sym_anyopaque] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_int] = ACTIONS(1450), - [anon_sym_uint] = ACTIONS(1450), - [anon_sym_float] = ACTIONS(1450), - [anon_sym_range] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_c_char] = ACTIONS(1450), - [anon_sym_c_schar] = ACTIONS(1450), - [anon_sym_c_uchar] = ACTIONS(1450), - [anon_sym_c_short] = ACTIONS(1450), - [anon_sym_c_ushort] = ACTIONS(1450), - [anon_sym_c_int] = ACTIONS(1450), - [anon_sym_c_uint] = ACTIONS(1450), - [anon_sym_c_long] = ACTIONS(1450), - [anon_sym_c_ulong] = ACTIONS(1450), - [anon_sym_c_longlong] = ACTIONS(1450), - [anon_sym_c_ulonglong] = ACTIONS(1450), - [anon_sym_c_float] = ACTIONS(1450), - [anon_sym_c_double] = ACTIONS(1450), - [anon_sym_c_longdouble] = ACTIONS(1450), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_STAR_EQ] = ACTIONS(1448), - [anon_sym_SLASH_EQ] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_COLON] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_defer] = ACTIONS(1450), - [anon_sym_errdefer] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_else] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_expand] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1448), - [anon_sym_orelse] = ACTIONS(1450), - [anon_sym_catch] = ACTIONS(1450), - [anon_sym_or] = ACTIONS(1450), - [anon_sym_and] = ACTIONS(1450), - [anon_sym_EQ_EQ] = ACTIONS(1448), - [anon_sym_BANG_EQ] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_none] = ACTIONS(1450), - [sym_undefined] = ACTIONS(1450), - [sym_sink] = ACTIONS(1450), - [sym_integer] = ACTIONS(1450), - [sym_float] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1448), - [sym_multiline_string] = ACTIONS(1448), - [sym_character] = ACTIONS(1448), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1448), + [sym__newline] = ACTIONS(447), }, [STATE(539)] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_import] = ACTIONS(1454), - [anon_sym_test] = ACTIONS(1454), - [anon_sym_hide] = ACTIONS(1454), - [anon_sym_func] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_void] = ACTIONS(1454), - [anon_sym_anyopaque] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_int] = ACTIONS(1454), - [anon_sym_uint] = ACTIONS(1454), - [anon_sym_float] = ACTIONS(1454), - [anon_sym_range] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_c_char] = ACTIONS(1454), - [anon_sym_c_schar] = ACTIONS(1454), - [anon_sym_c_uchar] = ACTIONS(1454), - [anon_sym_c_short] = ACTIONS(1454), - [anon_sym_c_ushort] = ACTIONS(1454), - [anon_sym_c_int] = ACTIONS(1454), - [anon_sym_c_uint] = ACTIONS(1454), - [anon_sym_c_long] = ACTIONS(1454), - [anon_sym_c_ulong] = ACTIONS(1454), - [anon_sym_c_longlong] = ACTIONS(1454), - [anon_sym_c_ulonglong] = ACTIONS(1454), - [anon_sym_c_float] = ACTIONS(1454), - [anon_sym_c_double] = ACTIONS(1454), - [anon_sym_c_longdouble] = ACTIONS(1454), - [anon_sym_PLUS_EQ] = ACTIONS(1452), - [anon_sym_DASH_EQ] = ACTIONS(1452), - [anon_sym_STAR_EQ] = ACTIONS(1452), - [anon_sym_SLASH_EQ] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_COLON] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_defer] = ACTIONS(1454), - [anon_sym_errdefer] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_expand] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1452), - [anon_sym_orelse] = ACTIONS(1454), - [anon_sym_catch] = ACTIONS(1454), - [anon_sym_or] = ACTIONS(1454), - [anon_sym_and] = ACTIONS(1454), - [anon_sym_EQ_EQ] = ACTIONS(1452), - [anon_sym_BANG_EQ] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_none] = ACTIONS(1454), - [sym_undefined] = ACTIONS(1454), - [sym_sink] = ACTIONS(1454), - [sym_integer] = ACTIONS(1454), - [sym_float] = ACTIONS(1452), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_multiline_string] = ACTIONS(1452), - [sym_character] = ACTIONS(1452), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1452), + [sym__newline] = ACTIONS(447), }, [STATE(540)] = { - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_import] = ACTIONS(1198), - [anon_sym_test] = ACTIONS(1198), - [anon_sym_hide] = ACTIONS(1198), - [anon_sym_func] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1196), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_void] = ACTIONS(1198), - [anon_sym_anyopaque] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_int] = ACTIONS(1198), - [anon_sym_uint] = ACTIONS(1198), - [anon_sym_float] = ACTIONS(1198), - [anon_sym_range] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_c_char] = ACTIONS(1198), - [anon_sym_c_schar] = ACTIONS(1198), - [anon_sym_c_uchar] = ACTIONS(1198), - [anon_sym_c_short] = ACTIONS(1198), - [anon_sym_c_ushort] = ACTIONS(1198), - [anon_sym_c_int] = ACTIONS(1198), - [anon_sym_c_uint] = ACTIONS(1198), - [anon_sym_c_long] = ACTIONS(1198), - [anon_sym_c_ulong] = ACTIONS(1198), - [anon_sym_c_longlong] = ACTIONS(1198), - [anon_sym_c_ulonglong] = ACTIONS(1198), - [anon_sym_c_float] = ACTIONS(1198), - [anon_sym_c_double] = ACTIONS(1198), - [anon_sym_c_longdouble] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_COLON] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_defer] = ACTIONS(1198), - [anon_sym_errdefer] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_expand] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_orelse] = ACTIONS(1198), - [anon_sym_catch] = ACTIONS(1198), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1196), - [anon_sym_try] = ACTIONS(1198), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [sym_none] = ACTIONS(1198), - [sym_undefined] = ACTIONS(1198), - [sym_sink] = ACTIONS(1198), - [sym_integer] = ACTIONS(1198), - [sym_float] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1196), - [sym_multiline_string] = ACTIONS(1196), - [sym_character] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1196), - }, - [STATE(541)] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_test] = ACTIONS(1458), - [anon_sym_hide] = ACTIONS(1458), - [anon_sym_func] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_void] = ACTIONS(1458), - [anon_sym_anyopaque] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_int] = ACTIONS(1458), - [anon_sym_uint] = ACTIONS(1458), - [anon_sym_float] = ACTIONS(1458), - [anon_sym_range] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_c_char] = ACTIONS(1458), - [anon_sym_c_schar] = ACTIONS(1458), - [anon_sym_c_uchar] = ACTIONS(1458), - [anon_sym_c_short] = ACTIONS(1458), - [anon_sym_c_ushort] = ACTIONS(1458), - [anon_sym_c_int] = ACTIONS(1458), - [anon_sym_c_uint] = ACTIONS(1458), - [anon_sym_c_long] = ACTIONS(1458), - [anon_sym_c_ulong] = ACTIONS(1458), - [anon_sym_c_longlong] = ACTIONS(1458), - [anon_sym_c_ulonglong] = ACTIONS(1458), - [anon_sym_c_float] = ACTIONS(1458), - [anon_sym_c_double] = ACTIONS(1458), - [anon_sym_c_longdouble] = ACTIONS(1458), - [anon_sym_PLUS_EQ] = ACTIONS(1456), - [anon_sym_DASH_EQ] = ACTIONS(1456), - [anon_sym_STAR_EQ] = ACTIONS(1456), - [anon_sym_SLASH_EQ] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_COLON] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_defer] = ACTIONS(1458), - [anon_sym_errdefer] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_else] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_expand] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1456), - [anon_sym_orelse] = ACTIONS(1458), - [anon_sym_catch] = ACTIONS(1458), - [anon_sym_or] = ACTIONS(1458), - [anon_sym_and] = ACTIONS(1458), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_none] = ACTIONS(1458), - [sym_undefined] = ACTIONS(1458), - [sym_sink] = ACTIONS(1458), - [sym_integer] = ACTIONS(1458), - [sym_float] = ACTIONS(1456), - [anon_sym_DQUOTE] = ACTIONS(1456), - [sym_multiline_string] = ACTIONS(1456), - [sym_character] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1456), - }, - [STATE(542)] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_test] = ACTIONS(1462), - [anon_sym_hide] = ACTIONS(1462), - [anon_sym_func] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_void] = ACTIONS(1462), - [anon_sym_anyopaque] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_int] = ACTIONS(1462), - [anon_sym_uint] = ACTIONS(1462), - [anon_sym_float] = ACTIONS(1462), - [anon_sym_range] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_c_char] = ACTIONS(1462), - [anon_sym_c_schar] = ACTIONS(1462), - [anon_sym_c_uchar] = ACTIONS(1462), - [anon_sym_c_short] = ACTIONS(1462), - [anon_sym_c_ushort] = ACTIONS(1462), - [anon_sym_c_int] = ACTIONS(1462), - [anon_sym_c_uint] = ACTIONS(1462), - [anon_sym_c_long] = ACTIONS(1462), - [anon_sym_c_ulong] = ACTIONS(1462), - [anon_sym_c_longlong] = ACTIONS(1462), - [anon_sym_c_ulonglong] = ACTIONS(1462), - [anon_sym_c_float] = ACTIONS(1462), - [anon_sym_c_double] = ACTIONS(1462), - [anon_sym_c_longdouble] = ACTIONS(1462), - [anon_sym_PLUS_EQ] = ACTIONS(1460), - [anon_sym_DASH_EQ] = ACTIONS(1460), - [anon_sym_STAR_EQ] = ACTIONS(1460), - [anon_sym_SLASH_EQ] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_COLON] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_defer] = ACTIONS(1462), - [anon_sym_errdefer] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_else] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_expand] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1460), - [anon_sym_orelse] = ACTIONS(1462), - [anon_sym_catch] = ACTIONS(1462), - [anon_sym_or] = ACTIONS(1462), - [anon_sym_and] = ACTIONS(1462), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_BANG_EQ] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1462), - [anon_sym_GT_EQ] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_SLASH] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_try] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1462), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_none] = ACTIONS(1462), - [sym_undefined] = ACTIONS(1462), - [sym_sink] = ACTIONS(1462), - [sym_integer] = ACTIONS(1462), - [sym_float] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1460), - [sym_multiline_string] = ACTIONS(1460), - [sym_character] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1460), - }, - [STATE(543)] = { - [sym_variant_payload] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_test] = ACTIONS(1466), - [anon_sym_hide] = ACTIONS(1466), - [anon_sym_func] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_void] = ACTIONS(1466), - [anon_sym_anyopaque] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_int] = ACTIONS(1466), - [anon_sym_uint] = ACTIONS(1466), - [anon_sym_float] = ACTIONS(1466), - [anon_sym_range] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_c_char] = ACTIONS(1466), - [anon_sym_c_schar] = ACTIONS(1466), - [anon_sym_c_uchar] = ACTIONS(1466), - [anon_sym_c_short] = ACTIONS(1466), - [anon_sym_c_ushort] = ACTIONS(1466), - [anon_sym_c_int] = ACTIONS(1466), - [anon_sym_c_uint] = ACTIONS(1466), - [anon_sym_c_long] = ACTIONS(1466), - [anon_sym_c_ulong] = ACTIONS(1466), - [anon_sym_c_longlong] = ACTIONS(1466), - [anon_sym_c_ulonglong] = ACTIONS(1466), - [anon_sym_c_float] = ACTIONS(1466), - [anon_sym_c_double] = ACTIONS(1466), - [anon_sym_c_longdouble] = ACTIONS(1466), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_COLON] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_defer] = ACTIONS(1466), - [anon_sym_errdefer] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_else] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_expand] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_DOT_DOT] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1464), - [anon_sym_orelse] = ACTIONS(1466), - [anon_sym_catch] = ACTIONS(1466), - [anon_sym_or] = ACTIONS(1466), - [anon_sym_and] = ACTIONS(1466), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_none] = ACTIONS(1466), - [sym_undefined] = ACTIONS(1466), - [sym_sink] = ACTIONS(1466), - [sym_integer] = ACTIONS(1466), - [sym_float] = ACTIONS(1464), - [anon_sym_DQUOTE] = ACTIONS(1464), - [sym_multiline_string] = ACTIONS(1464), - [sym_character] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1464), - }, - [STATE(544)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -69673,4494 +73573,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_errdefer] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(119), - [anon_sym_else] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(545)] = { - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1006), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_void] = ACTIONS(1006), - [anon_sym_anyopaque] = ACTIONS(1006), - [anon_sym_bool] = ACTIONS(1006), - [anon_sym_int] = ACTIONS(1006), - [anon_sym_uint] = ACTIONS(1006), - [anon_sym_float] = ACTIONS(1006), - [anon_sym_range] = ACTIONS(1006), - [anon_sym_i8] = ACTIONS(1006), - [anon_sym_i16] = ACTIONS(1006), - [anon_sym_i32] = ACTIONS(1006), - [anon_sym_i64] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1006), - [anon_sym_u16] = ACTIONS(1006), - [anon_sym_u32] = ACTIONS(1006), - [anon_sym_u64] = ACTIONS(1006), - [anon_sym_isize] = ACTIONS(1006), - [anon_sym_usize] = ACTIONS(1006), - [anon_sym_f32] = ACTIONS(1006), - [anon_sym_f64] = ACTIONS(1006), - [anon_sym_c_char] = ACTIONS(1006), - [anon_sym_c_schar] = ACTIONS(1006), - [anon_sym_c_uchar] = ACTIONS(1006), - [anon_sym_c_short] = ACTIONS(1006), - [anon_sym_c_ushort] = ACTIONS(1006), - [anon_sym_c_int] = ACTIONS(1006), - [anon_sym_c_uint] = ACTIONS(1006), - [anon_sym_c_long] = ACTIONS(1006), - [anon_sym_c_ulong] = ACTIONS(1006), - [anon_sym_c_longlong] = ACTIONS(1006), - [anon_sym_c_ulonglong] = ACTIONS(1006), - [anon_sym_c_float] = ACTIONS(1006), - [anon_sym_c_double] = ACTIONS(1006), - [anon_sym_c_longdouble] = ACTIONS(1006), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(546)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(1178), - [anon_sym_test] = ACTIONS(1178), - [anon_sym_hide] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(547)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(1178), - [anon_sym_test] = ACTIONS(1178), - [anon_sym_hide] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1178), - [anon_sym_and] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_BANG_EQ] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(548)] = { - [sym_variant_payload] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_test] = ACTIONS(1466), - [anon_sym_hide] = ACTIONS(1466), - [anon_sym_func] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_DOLLAR] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_anyopaque] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_int] = ACTIONS(1242), - [anon_sym_uint] = ACTIONS(1242), - [anon_sym_float] = ACTIONS(1242), - [anon_sym_range] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_c_char] = ACTIONS(1242), - [anon_sym_c_schar] = ACTIONS(1242), - [anon_sym_c_uchar] = ACTIONS(1242), - [anon_sym_c_short] = ACTIONS(1242), - [anon_sym_c_ushort] = ACTIONS(1242), - [anon_sym_c_int] = ACTIONS(1242), - [anon_sym_c_uint] = ACTIONS(1242), - [anon_sym_c_long] = ACTIONS(1242), - [anon_sym_c_ulong] = ACTIONS(1242), - [anon_sym_c_longlong] = ACTIONS(1242), - [anon_sym_c_ulonglong] = ACTIONS(1242), - [anon_sym_c_float] = ACTIONS(1242), - [anon_sym_c_double] = ACTIONS(1242), - [anon_sym_c_longdouble] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1464), - [anon_sym_DASH_EQ] = ACTIONS(1464), - [anon_sym_STAR_EQ] = ACTIONS(1464), - [anon_sym_SLASH_EQ] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_defer] = ACTIONS(1242), - [anon_sym_errdefer] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_expand] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_orelse] = ACTIONS(1242), - [anon_sym_catch] = ACTIONS(1242), - [anon_sym_or] = ACTIONS(1242), - [anon_sym_and] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_try] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_none] = ACTIONS(1242), - [sym_undefined] = ACTIONS(1242), - [sym_sink] = ACTIONS(1242), - [sym_integer] = ACTIONS(1242), - [sym_float] = ACTIONS(1240), - [anon_sym_DQUOTE] = ACTIONS(1240), - [sym_multiline_string] = ACTIONS(1240), - [sym_character] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1240), - }, - [STATE(549)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_yield] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_errdefer] = ACTIONS(1475), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(550)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(1178), - [anon_sym_test] = ACTIONS(1178), - [anon_sym_hide] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(551)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_import] = ACTIONS(1483), - [anon_sym_test] = ACTIONS(1483), - [anon_sym_hide] = ACTIONS(1483), - [anon_sym_func] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_anyopaque] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_range] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_c_char] = ACTIONS(1483), - [anon_sym_c_schar] = ACTIONS(1483), - [anon_sym_c_uchar] = ACTIONS(1483), - [anon_sym_c_short] = ACTIONS(1483), - [anon_sym_c_ushort] = ACTIONS(1483), - [anon_sym_c_int] = ACTIONS(1483), - [anon_sym_c_uint] = ACTIONS(1483), - [anon_sym_c_long] = ACTIONS(1483), - [anon_sym_c_ulong] = ACTIONS(1483), - [anon_sym_c_longlong] = ACTIONS(1483), - [anon_sym_c_ulonglong] = ACTIONS(1483), - [anon_sym_c_float] = ACTIONS(1483), - [anon_sym_c_double] = ACTIONS(1483), - [anon_sym_c_longdouble] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_errdefer] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_expand] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_orelse] = ACTIONS(1483), - [anon_sym_catch] = ACTIONS(1483), - [anon_sym_or] = ACTIONS(1483), - [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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [sym_none] = ACTIONS(1483), - [sym_undefined] = ACTIONS(1483), - [sym_sink] = ACTIONS(1483), - [sym_integer] = ACTIONS(1483), - [sym_float] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_multiline_string] = ACTIONS(1481), - [sym_character] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1481), - }, - [STATE(552)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1483), - [anon_sym_import] = ACTIONS(1483), - [anon_sym_test] = ACTIONS(1483), - [anon_sym_hide] = ACTIONS(1483), - [anon_sym_func] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_anyopaque] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_range] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_c_char] = ACTIONS(1483), - [anon_sym_c_schar] = ACTIONS(1483), - [anon_sym_c_uchar] = ACTIONS(1483), - [anon_sym_c_short] = ACTIONS(1483), - [anon_sym_c_ushort] = ACTIONS(1483), - [anon_sym_c_int] = ACTIONS(1483), - [anon_sym_c_uint] = ACTIONS(1483), - [anon_sym_c_long] = ACTIONS(1483), - [anon_sym_c_ulong] = ACTIONS(1483), - [anon_sym_c_longlong] = ACTIONS(1483), - [anon_sym_c_ulonglong] = ACTIONS(1483), - [anon_sym_c_float] = ACTIONS(1483), - [anon_sym_c_double] = ACTIONS(1483), - [anon_sym_c_longdouble] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_errdefer] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_expand] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_orelse] = ACTIONS(1483), - [anon_sym_catch] = ACTIONS(1483), - [anon_sym_or] = ACTIONS(1483), - [anon_sym_and] = ACTIONS(1483), - [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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [sym_none] = ACTIONS(1483), - [sym_undefined] = ACTIONS(1483), - [sym_sink] = ACTIONS(1483), - [sym_integer] = ACTIONS(1483), - [sym_float] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_multiline_string] = ACTIONS(1481), - [sym_character] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1481), - }, - [STATE(553)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(1190), - [anon_sym_test] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(554)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_identifier] = ACTIONS(1178), - [anon_sym_import] = ACTIONS(1178), - [anon_sym_test] = ACTIONS(1178), - [anon_sym_hide] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1178), - [anon_sym_and] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_BANG_EQ] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(555)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(1190), - [anon_sym_test] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(556)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(1487), - [anon_sym_test] = ACTIONS(1487), - [anon_sym_hide] = ACTIONS(1487), - [anon_sym_func] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_anyopaque] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_range] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_c_char] = ACTIONS(1487), - [anon_sym_c_schar] = ACTIONS(1487), - [anon_sym_c_uchar] = ACTIONS(1487), - [anon_sym_c_short] = ACTIONS(1487), - [anon_sym_c_ushort] = ACTIONS(1487), - [anon_sym_c_int] = ACTIONS(1487), - [anon_sym_c_uint] = ACTIONS(1487), - [anon_sym_c_long] = ACTIONS(1487), - [anon_sym_c_ulong] = ACTIONS(1487), - [anon_sym_c_longlong] = ACTIONS(1487), - [anon_sym_c_ulonglong] = ACTIONS(1487), - [anon_sym_c_float] = ACTIONS(1487), - [anon_sym_c_double] = ACTIONS(1487), - [anon_sym_c_longdouble] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_errdefer] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_expand] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_orelse] = ACTIONS(1487), - [anon_sym_catch] = ACTIONS(1487), - [anon_sym_or] = ACTIONS(1487), - [anon_sym_and] = ACTIONS(1487), - [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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_none] = ACTIONS(1487), - [sym_undefined] = ACTIONS(1487), - [sym_sink] = ACTIONS(1487), - [sym_integer] = ACTIONS(1487), - [sym_float] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_multiline_string] = ACTIONS(1485), - [sym_character] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1485), - }, - [STATE(557)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(1190), - [anon_sym_test] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(558)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_identifier] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(1190), - [anon_sym_test] = ACTIONS(1190), - [anon_sym_hide] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1188), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(559)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1485), - [sym_identifier] = ACTIONS(1487), - [anon_sym_import] = ACTIONS(1487), - [anon_sym_test] = ACTIONS(1487), - [anon_sym_hide] = ACTIONS(1487), - [anon_sym_func] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_anyopaque] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_range] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_c_char] = ACTIONS(1487), - [anon_sym_c_schar] = ACTIONS(1487), - [anon_sym_c_uchar] = ACTIONS(1487), - [anon_sym_c_short] = ACTIONS(1487), - [anon_sym_c_ushort] = ACTIONS(1487), - [anon_sym_c_int] = ACTIONS(1487), - [anon_sym_c_uint] = ACTIONS(1487), - [anon_sym_c_long] = ACTIONS(1487), - [anon_sym_c_ulong] = ACTIONS(1487), - [anon_sym_c_longlong] = ACTIONS(1487), - [anon_sym_c_ulonglong] = ACTIONS(1487), - [anon_sym_c_float] = ACTIONS(1487), - [anon_sym_c_double] = ACTIONS(1487), - [anon_sym_c_longdouble] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_errdefer] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_expand] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_orelse] = ACTIONS(1487), - [anon_sym_catch] = ACTIONS(1487), - [anon_sym_or] = ACTIONS(1487), - [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_PLUS] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_none] = ACTIONS(1487), - [sym_undefined] = ACTIONS(1487), - [sym_sink] = ACTIONS(1487), - [sym_integer] = ACTIONS(1487), - [sym_float] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_multiline_string] = ACTIONS(1485), - [sym_character] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1485), - }, - [STATE(560)] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1070), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_test] = ACTIONS(1330), - [anon_sym_hide] = ACTIONS(1330), - [anon_sym_func] = ACTIONS(1070), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1070), - [anon_sym_LBRACK] = ACTIONS(1068), - [anon_sym_void] = ACTIONS(1070), - [anon_sym_anyopaque] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_int] = ACTIONS(1070), - [anon_sym_uint] = ACTIONS(1070), - [anon_sym_float] = ACTIONS(1070), - [anon_sym_range] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_c_char] = ACTIONS(1070), - [anon_sym_c_schar] = ACTIONS(1070), - [anon_sym_c_uchar] = ACTIONS(1070), - [anon_sym_c_short] = ACTIONS(1070), - [anon_sym_c_ushort] = ACTIONS(1070), - [anon_sym_c_int] = ACTIONS(1070), - [anon_sym_c_uint] = ACTIONS(1070), - [anon_sym_c_long] = ACTIONS(1070), - [anon_sym_c_ulong] = ACTIONS(1070), - [anon_sym_c_longlong] = ACTIONS(1070), - [anon_sym_c_ulonglong] = ACTIONS(1070), - [anon_sym_c_float] = ACTIONS(1070), - [anon_sym_c_double] = ACTIONS(1070), - [anon_sym_c_longdouble] = ACTIONS(1070), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_yield] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_defer] = ACTIONS(1070), - [anon_sym_errdefer] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_expand] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), - [anon_sym_orelse] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_or] = ACTIONS(1070), - [anon_sym_and] = ACTIONS(1070), - [anon_sym_EQ_EQ] = ACTIONS(1068), - [anon_sym_BANG_EQ] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_LT_EQ] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_GT_EQ] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_SLASH] = ACTIONS(1070), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_DOT] = ACTIONS(1070), - [anon_sym_CARET] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [sym_none] = ACTIONS(1070), - [sym_undefined] = ACTIONS(1070), - [sym_sink] = ACTIONS(1070), - [sym_integer] = ACTIONS(1070), - [sym_float] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_multiline_string] = ACTIONS(1068), - [sym_character] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1068), - }, - [STATE(561)] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1036), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_test] = ACTIONS(1438), - [anon_sym_hide] = ACTIONS(1438), - [anon_sym_func] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1034), - [anon_sym_void] = ACTIONS(1036), - [anon_sym_anyopaque] = ACTIONS(1036), - [anon_sym_bool] = ACTIONS(1036), - [anon_sym_int] = ACTIONS(1036), - [anon_sym_uint] = ACTIONS(1036), - [anon_sym_float] = ACTIONS(1036), - [anon_sym_range] = ACTIONS(1036), - [anon_sym_i8] = ACTIONS(1036), - [anon_sym_i16] = ACTIONS(1036), - [anon_sym_i32] = ACTIONS(1036), - [anon_sym_i64] = ACTIONS(1036), - [anon_sym_u8] = ACTIONS(1036), - [anon_sym_u16] = ACTIONS(1036), - [anon_sym_u32] = ACTIONS(1036), - [anon_sym_u64] = ACTIONS(1036), - [anon_sym_isize] = ACTIONS(1036), - [anon_sym_usize] = ACTIONS(1036), - [anon_sym_f32] = ACTIONS(1036), - [anon_sym_f64] = ACTIONS(1036), - [anon_sym_c_char] = ACTIONS(1036), - [anon_sym_c_schar] = ACTIONS(1036), - [anon_sym_c_uchar] = ACTIONS(1036), - [anon_sym_c_short] = ACTIONS(1036), - [anon_sym_c_ushort] = ACTIONS(1036), - [anon_sym_c_int] = ACTIONS(1036), - [anon_sym_c_uint] = ACTIONS(1036), - [anon_sym_c_long] = ACTIONS(1036), - [anon_sym_c_ulong] = ACTIONS(1036), - [anon_sym_c_longlong] = ACTIONS(1036), - [anon_sym_c_ulonglong] = ACTIONS(1036), - [anon_sym_c_float] = ACTIONS(1036), - [anon_sym_c_double] = ACTIONS(1036), - [anon_sym_c_longdouble] = ACTIONS(1036), - [anon_sym_PLUS_EQ] = ACTIONS(1436), - [anon_sym_DASH_EQ] = ACTIONS(1436), - [anon_sym_STAR_EQ] = ACTIONS(1436), - [anon_sym_SLASH_EQ] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_yield] = ACTIONS(1036), - [anon_sym_break] = ACTIONS(1036), - [anon_sym_continue] = ACTIONS(1036), - [anon_sym_defer] = ACTIONS(1036), - [anon_sym_errdefer] = ACTIONS(1036), - [anon_sym_if] = ACTIONS(1036), - [anon_sym_else] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1036), - [anon_sym_expand] = ACTIONS(1036), - [anon_sym_for] = ACTIONS(1036), - [anon_sym_match] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_orelse] = ACTIONS(1036), - [anon_sym_catch] = ACTIONS(1036), - [anon_sym_or] = ACTIONS(1036), - [anon_sym_and] = ACTIONS(1036), - [anon_sym_EQ_EQ] = ACTIONS(1034), - [anon_sym_BANG_EQ] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1034), - [anon_sym_GT] = ACTIONS(1036), - [anon_sym_GT_EQ] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1036), - [anon_sym_SLASH] = ACTIONS(1036), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1036), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [sym_none] = ACTIONS(1036), - [sym_undefined] = ACTIONS(1036), - [sym_sink] = ACTIONS(1036), - [sym_integer] = ACTIONS(1036), - [sym_float] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym_multiline_string] = ACTIONS(1034), - [sym_character] = ACTIONS(1034), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1034), - }, - [STATE(562)] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1140), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_test] = ACTIONS(1402), - [anon_sym_hide] = ACTIONS(1402), - [anon_sym_func] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1138), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1138), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_DOLLAR] = ACTIONS(1138), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_QMARK] = ACTIONS(1138), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_void] = ACTIONS(1140), - [anon_sym_anyopaque] = ACTIONS(1140), - [anon_sym_bool] = ACTIONS(1140), - [anon_sym_int] = ACTIONS(1140), - [anon_sym_uint] = ACTIONS(1140), - [anon_sym_float] = ACTIONS(1140), - [anon_sym_range] = ACTIONS(1140), - [anon_sym_i8] = ACTIONS(1140), - [anon_sym_i16] = ACTIONS(1140), - [anon_sym_i32] = ACTIONS(1140), - [anon_sym_i64] = ACTIONS(1140), - [anon_sym_u8] = ACTIONS(1140), - [anon_sym_u16] = ACTIONS(1140), - [anon_sym_u32] = ACTIONS(1140), - [anon_sym_u64] = ACTIONS(1140), - [anon_sym_isize] = ACTIONS(1140), - [anon_sym_usize] = ACTIONS(1140), - [anon_sym_f32] = ACTIONS(1140), - [anon_sym_f64] = ACTIONS(1140), - [anon_sym_c_char] = ACTIONS(1140), - [anon_sym_c_schar] = ACTIONS(1140), - [anon_sym_c_uchar] = ACTIONS(1140), - [anon_sym_c_short] = ACTIONS(1140), - [anon_sym_c_ushort] = ACTIONS(1140), - [anon_sym_c_int] = ACTIONS(1140), - [anon_sym_c_uint] = ACTIONS(1140), - [anon_sym_c_long] = ACTIONS(1140), - [anon_sym_c_ulong] = ACTIONS(1140), - [anon_sym_c_longlong] = ACTIONS(1140), - [anon_sym_c_ulonglong] = ACTIONS(1140), - [anon_sym_c_float] = ACTIONS(1140), - [anon_sym_c_double] = ACTIONS(1140), - [anon_sym_c_longdouble] = ACTIONS(1140), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1140), - [anon_sym_yield] = ACTIONS(1140), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_defer] = ACTIONS(1140), - [anon_sym_errdefer] = ACTIONS(1140), - [anon_sym_if] = ACTIONS(1140), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_expand] = ACTIONS(1140), - [anon_sym_for] = ACTIONS(1140), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1138), - [anon_sym_orelse] = ACTIONS(1140), - [anon_sym_catch] = ACTIONS(1140), - [anon_sym_or] = ACTIONS(1140), - [anon_sym_and] = ACTIONS(1140), - [anon_sym_EQ_EQ] = ACTIONS(1138), - [anon_sym_BANG_EQ] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1140), - [anon_sym_LT_EQ] = ACTIONS(1138), - [anon_sym_GT] = ACTIONS(1140), - [anon_sym_GT_EQ] = ACTIONS(1138), - [anon_sym_PLUS] = ACTIONS(1140), - [anon_sym_SLASH] = ACTIONS(1140), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_try] = ACTIONS(1140), - [anon_sym_DOT] = ACTIONS(1140), - [anon_sym_CARET] = ACTIONS(1138), - [anon_sym_true] = ACTIONS(1140), - [anon_sym_false] = ACTIONS(1140), - [sym_none] = ACTIONS(1140), - [sym_undefined] = ACTIONS(1140), - [sym_sink] = ACTIONS(1140), - [sym_integer] = ACTIONS(1140), - [sym_float] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym_multiline_string] = ACTIONS(1138), - [sym_character] = ACTIONS(1138), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1138), - }, - [STATE(563)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(1475), - [anon_sym_test] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(564)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1194), - [anon_sym_import] = ACTIONS(1194), - [anon_sym_test] = ACTIONS(1194), - [anon_sym_hide] = ACTIONS(1194), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), - }, - [STATE(565)] = { - [sym_argument_list] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1184), - [sym_identifier] = ACTIONS(1186), - [anon_sym_import] = ACTIONS(1186), - [anon_sym_test] = ACTIONS(1186), - [anon_sym_hide] = ACTIONS(1186), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), - }, - [STATE(566)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1473), - [sym_identifier] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(1475), - [anon_sym_test] = ACTIONS(1475), - [anon_sym_hide] = ACTIONS(1475), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(567)] = { - [sym_type] = STATE(2236), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(568)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), - }, - [STATE(569)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(209), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(570)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1178), - [anon_sym_and] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_BANG_EQ] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(571)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(572)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1178), - [anon_sym_and] = ACTIONS(1178), - [anon_sym_EQ_EQ] = ACTIONS(1176), - [anon_sym_BANG_EQ] = ACTIONS(1176), - [anon_sym_LT] = ACTIONS(1178), - [anon_sym_LT_EQ] = ACTIONS(1176), - [anon_sym_GT] = ACTIONS(1178), - [anon_sym_GT_EQ] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(573)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1487), - [anon_sym_func] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_anyopaque] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_range] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_c_char] = ACTIONS(1487), - [anon_sym_c_schar] = ACTIONS(1487), - [anon_sym_c_uchar] = ACTIONS(1487), - [anon_sym_c_short] = ACTIONS(1487), - [anon_sym_c_ushort] = ACTIONS(1487), - [anon_sym_c_int] = ACTIONS(1487), - [anon_sym_c_uint] = ACTIONS(1487), - [anon_sym_c_long] = ACTIONS(1487), - [anon_sym_c_ulong] = ACTIONS(1487), - [anon_sym_c_longlong] = ACTIONS(1487), - [anon_sym_c_ulonglong] = ACTIONS(1487), - [anon_sym_c_float] = ACTIONS(1487), - [anon_sym_c_double] = ACTIONS(1487), - [anon_sym_c_longdouble] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_errdefer] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_expand] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_orelse] = ACTIONS(1487), - [anon_sym_catch] = ACTIONS(1487), - [anon_sym_or] = ACTIONS(1487), - [anon_sym_and] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_none] = ACTIONS(1487), - [sym_undefined] = ACTIONS(1487), - [sym_sink] = ACTIONS(1487), - [sym_integer] = ACTIONS(1487), - [sym_float] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_multiline_string] = ACTIONS(1485), - [sym_character] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1485), - }, - [STATE(574)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1186), - [anon_sym_func] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_anyopaque] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_range] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_c_char] = ACTIONS(1186), - [anon_sym_c_schar] = ACTIONS(1186), - [anon_sym_c_uchar] = ACTIONS(1186), - [anon_sym_c_short] = ACTIONS(1186), - [anon_sym_c_ushort] = ACTIONS(1186), - [anon_sym_c_int] = ACTIONS(1186), - [anon_sym_c_uint] = ACTIONS(1186), - [anon_sym_c_long] = ACTIONS(1186), - [anon_sym_c_ulong] = ACTIONS(1186), - [anon_sym_c_longlong] = ACTIONS(1186), - [anon_sym_c_ulonglong] = ACTIONS(1186), - [anon_sym_c_float] = ACTIONS(1186), - [anon_sym_c_double] = ACTIONS(1186), - [anon_sym_c_longdouble] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_none] = ACTIONS(1186), - [sym_undefined] = ACTIONS(1186), - [sym_sink] = ACTIONS(1186), - [sym_integer] = ACTIONS(1186), - [sym_float] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_multiline_string] = ACTIONS(1184), - [sym_character] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), - }, - [STATE(575)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1190), - [anon_sym_and] = ACTIONS(1190), - [anon_sym_EQ_EQ] = ACTIONS(1188), - [anon_sym_BANG_EQ] = ACTIONS(1188), - [anon_sym_LT] = ACTIONS(1190), - [anon_sym_LT_EQ] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1190), - [anon_sym_GT_EQ] = ACTIONS(1188), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(576)] = { - [sym_argument_list] = STATE(507), - [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(872), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = 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_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_none] = ACTIONS(1194), - [sym_undefined] = ACTIONS(1194), - [sym_sink] = ACTIONS(1194), - [sym_integer] = ACTIONS(1194), - [sym_float] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_multiline_string] = ACTIONS(1192), - [sym_character] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), - }, - [STATE(577)] = { - [sym_argument_list] = STATE(507), - [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(872), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1192), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = 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_return] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1194), - [anon_sym_defer] = ACTIONS(1194), - [anon_sym_errdefer] = ACTIONS(1194), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1194), - [anon_sym_expand] = ACTIONS(1194), - [anon_sym_for] = ACTIONS(1194), - [anon_sym_match] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_try] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1194), - [anon_sym_false] = ACTIONS(1194), - [sym_none] = ACTIONS(1194), - [sym_undefined] = ACTIONS(1194), - [sym_sink] = ACTIONS(1194), - [sym_integer] = ACTIONS(1194), - [sym_float] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_multiline_string] = ACTIONS(1192), - [sym_character] = ACTIONS(1192), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), - }, - [STATE(578)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_RPAREN] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), - }, - [STATE(579)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(580)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1190), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1188), - [anon_sym_COMMA] = ACTIONS(1188), - [anon_sym_RBRACE] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1188), - [anon_sym_DASH_EQ] = ACTIONS(1188), - [anon_sym_STAR_EQ] = ACTIONS(1188), - [anon_sym_SLASH_EQ] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1188), - [anon_sym_orelse] = ACTIONS(1190), - [anon_sym_catch] = ACTIONS(1190), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1188), - }, - [STATE(581)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1186), - [anon_sym_func] = ACTIONS(1186), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1186), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_RBRACE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1184), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1186), - [anon_sym_anyopaque] = ACTIONS(1186), - [anon_sym_bool] = ACTIONS(1186), - [anon_sym_int] = ACTIONS(1186), - [anon_sym_uint] = ACTIONS(1186), - [anon_sym_float] = ACTIONS(1186), - [anon_sym_range] = ACTIONS(1186), - [anon_sym_i8] = ACTIONS(1186), - [anon_sym_i16] = ACTIONS(1186), - [anon_sym_i32] = ACTIONS(1186), - [anon_sym_i64] = ACTIONS(1186), - [anon_sym_u8] = ACTIONS(1186), - [anon_sym_u16] = ACTIONS(1186), - [anon_sym_u32] = ACTIONS(1186), - [anon_sym_u64] = ACTIONS(1186), - [anon_sym_isize] = ACTIONS(1186), - [anon_sym_usize] = ACTIONS(1186), - [anon_sym_f32] = ACTIONS(1186), - [anon_sym_f64] = ACTIONS(1186), - [anon_sym_c_char] = ACTIONS(1186), - [anon_sym_c_schar] = ACTIONS(1186), - [anon_sym_c_uchar] = ACTIONS(1186), - [anon_sym_c_short] = ACTIONS(1186), - [anon_sym_c_ushort] = ACTIONS(1186), - [anon_sym_c_int] = ACTIONS(1186), - [anon_sym_c_uint] = ACTIONS(1186), - [anon_sym_c_long] = ACTIONS(1186), - [anon_sym_c_ulong] = ACTIONS(1186), - [anon_sym_c_longlong] = ACTIONS(1186), - [anon_sym_c_ulonglong] = ACTIONS(1186), - [anon_sym_c_float] = ACTIONS(1186), - [anon_sym_c_double] = ACTIONS(1186), - [anon_sym_c_longdouble] = ACTIONS(1186), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_yield] = ACTIONS(1186), - [anon_sym_break] = ACTIONS(1186), - [anon_sym_continue] = ACTIONS(1186), - [anon_sym_defer] = ACTIONS(1186), - [anon_sym_errdefer] = ACTIONS(1186), - [anon_sym_if] = ACTIONS(1186), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1186), - [anon_sym_expand] = ACTIONS(1186), - [anon_sym_for] = ACTIONS(1186), - [anon_sym_match] = ACTIONS(1186), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1184), - [anon_sym_try] = ACTIONS(1186), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [sym_none] = ACTIONS(1186), - [sym_undefined] = ACTIONS(1186), - [sym_sink] = ACTIONS(1186), - [sym_integer] = ACTIONS(1186), - [sym_float] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1184), - [sym_multiline_string] = ACTIONS(1184), - [sym_character] = ACTIONS(1184), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), - }, - [STATE(582)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1487), - [anon_sym_func] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_anyopaque] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_range] = ACTIONS(1487), - [anon_sym_i8] = ACTIONS(1487), - [anon_sym_i16] = ACTIONS(1487), - [anon_sym_i32] = ACTIONS(1487), - [anon_sym_i64] = ACTIONS(1487), - [anon_sym_u8] = ACTIONS(1487), - [anon_sym_u16] = ACTIONS(1487), - [anon_sym_u32] = ACTIONS(1487), - [anon_sym_u64] = ACTIONS(1487), - [anon_sym_isize] = ACTIONS(1487), - [anon_sym_usize] = ACTIONS(1487), - [anon_sym_f32] = ACTIONS(1487), - [anon_sym_f64] = ACTIONS(1487), - [anon_sym_c_char] = ACTIONS(1487), - [anon_sym_c_schar] = ACTIONS(1487), - [anon_sym_c_uchar] = ACTIONS(1487), - [anon_sym_c_short] = ACTIONS(1487), - [anon_sym_c_ushort] = ACTIONS(1487), - [anon_sym_c_int] = ACTIONS(1487), - [anon_sym_c_uint] = ACTIONS(1487), - [anon_sym_c_long] = ACTIONS(1487), - [anon_sym_c_ulong] = ACTIONS(1487), - [anon_sym_c_longlong] = ACTIONS(1487), - [anon_sym_c_ulonglong] = ACTIONS(1487), - [anon_sym_c_float] = ACTIONS(1487), - [anon_sym_c_double] = ACTIONS(1487), - [anon_sym_c_longdouble] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_yield] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_errdefer] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_expand] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_match] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1485), - [anon_sym_orelse] = ACTIONS(1487), - [anon_sym_catch] = ACTIONS(1487), - [anon_sym_or] = ACTIONS(1487), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1487), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [sym_none] = ACTIONS(1487), - [sym_undefined] = ACTIONS(1487), - [sym_sink] = ACTIONS(1487), - [sym_integer] = ACTIONS(1487), - [sym_float] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [sym_multiline_string] = ACTIONS(1485), - [sym_character] = ACTIONS(1485), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1485), - }, - [STATE(583)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(584)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_else] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(585)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1178), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_COMMA] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1176), - [anon_sym_DASH_EQ] = ACTIONS(1176), - [anon_sym_STAR_EQ] = ACTIONS(1176), - [anon_sym_SLASH_EQ] = ACTIONS(1176), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1178), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1176), - [anon_sym_orelse] = ACTIONS(1178), - [anon_sym_catch] = ACTIONS(1178), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1176), - }, - [STATE(586)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1483), - [anon_sym_func] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_anyopaque] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_range] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_c_char] = ACTIONS(1483), - [anon_sym_c_schar] = ACTIONS(1483), - [anon_sym_c_uchar] = ACTIONS(1483), - [anon_sym_c_short] = ACTIONS(1483), - [anon_sym_c_ushort] = ACTIONS(1483), - [anon_sym_c_int] = ACTIONS(1483), - [anon_sym_c_uint] = ACTIONS(1483), - [anon_sym_c_long] = ACTIONS(1483), - [anon_sym_c_ulong] = ACTIONS(1483), - [anon_sym_c_longlong] = ACTIONS(1483), - [anon_sym_c_ulonglong] = ACTIONS(1483), - [anon_sym_c_float] = ACTIONS(1483), - [anon_sym_c_double] = ACTIONS(1483), - [anon_sym_c_longdouble] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_errdefer] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_expand] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_orelse] = ACTIONS(1483), - [anon_sym_catch] = ACTIONS(1483), - [anon_sym_or] = ACTIONS(1483), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [sym_none] = ACTIONS(1483), - [sym_undefined] = ACTIONS(1483), - [sym_sink] = ACTIONS(1483), - [sym_integer] = ACTIONS(1483), - [sym_float] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_multiline_string] = ACTIONS(1481), - [sym_character] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1481), - }, - [STATE(587)] = { - [sym_type] = STATE(2236), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1489), - [anon_sym_func] = ACTIONS(1001), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_anyopaque] = ACTIONS(1022), - [anon_sym_bool] = ACTIONS(1022), - [anon_sym_int] = ACTIONS(1022), - [anon_sym_uint] = ACTIONS(1022), - [anon_sym_float] = ACTIONS(1022), - [anon_sym_range] = ACTIONS(1022), - [anon_sym_i8] = ACTIONS(1022), - [anon_sym_i16] = ACTIONS(1022), - [anon_sym_i32] = ACTIONS(1022), - [anon_sym_i64] = ACTIONS(1022), - [anon_sym_u8] = ACTIONS(1022), - [anon_sym_u16] = ACTIONS(1022), - [anon_sym_u32] = ACTIONS(1022), - [anon_sym_u64] = ACTIONS(1022), - [anon_sym_isize] = ACTIONS(1022), - [anon_sym_usize] = ACTIONS(1022), - [anon_sym_f32] = ACTIONS(1022), - [anon_sym_f64] = ACTIONS(1022), - [anon_sym_c_char] = ACTIONS(1022), - [anon_sym_c_schar] = ACTIONS(1022), - [anon_sym_c_uchar] = ACTIONS(1022), - [anon_sym_c_short] = ACTIONS(1022), - [anon_sym_c_ushort] = ACTIONS(1022), - [anon_sym_c_int] = ACTIONS(1022), - [anon_sym_c_uint] = ACTIONS(1022), - [anon_sym_c_long] = ACTIONS(1022), - [anon_sym_c_ulong] = ACTIONS(1022), - [anon_sym_c_longlong] = ACTIONS(1022), - [anon_sym_c_ulonglong] = ACTIONS(1022), - [anon_sym_c_float] = ACTIONS(1022), - [anon_sym_c_double] = ACTIONS(1022), - [anon_sym_c_longdouble] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(588)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1483), - [anon_sym_func] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_struct] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_anyopaque] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_range] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_c_char] = ACTIONS(1483), - [anon_sym_c_schar] = ACTIONS(1483), - [anon_sym_c_uchar] = ACTIONS(1483), - [anon_sym_c_short] = ACTIONS(1483), - [anon_sym_c_ushort] = ACTIONS(1483), - [anon_sym_c_int] = ACTIONS(1483), - [anon_sym_c_uint] = ACTIONS(1483), - [anon_sym_c_long] = ACTIONS(1483), - [anon_sym_c_ulong] = ACTIONS(1483), - [anon_sym_c_longlong] = ACTIONS(1483), - [anon_sym_c_ulonglong] = ACTIONS(1483), - [anon_sym_c_float] = ACTIONS(1483), - [anon_sym_c_double] = ACTIONS(1483), - [anon_sym_c_longdouble] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_yield] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_errdefer] = ACTIONS(1483), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_expand] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_match] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_orelse] = ACTIONS(1483), - [anon_sym_catch] = ACTIONS(1483), - [anon_sym_or] = ACTIONS(1483), - [anon_sym_and] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [sym_none] = ACTIONS(1483), - [sym_undefined] = ACTIONS(1483), - [sym_sink] = ACTIONS(1483), - [sym_integer] = ACTIONS(1483), - [sym_float] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_multiline_string] = ACTIONS(1481), - [sym_character] = ACTIONS(1481), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1481), - }, - [STATE(589)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1653), - [sym_labeled_block] = STATE(1653), - [sym_if_statement] = STATE(1653), - [sym_while_statement] = STATE(1653), - [sym_for_statement] = STATE(1653), - [sym_match_statement] = STATE(1653), - [sym__value] = STATE(1653), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(618), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1507), }, - [STATE(590)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), + [STATE(541)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -74194,163 +73684,972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(591)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_func] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_COMMA] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_anyopaque] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_range] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_c_char] = ACTIONS(1509), - [anon_sym_c_schar] = ACTIONS(1509), - [anon_sym_c_uchar] = ACTIONS(1509), - [anon_sym_c_short] = ACTIONS(1509), - [anon_sym_c_ushort] = ACTIONS(1509), - [anon_sym_c_int] = ACTIONS(1509), - [anon_sym_c_uint] = ACTIONS(1509), - [anon_sym_c_long] = ACTIONS(1509), - [anon_sym_c_ulong] = ACTIONS(1509), - [anon_sym_c_longlong] = ACTIONS(1509), - [anon_sym_c_ulonglong] = ACTIONS(1509), - [anon_sym_c_float] = ACTIONS(1509), - [anon_sym_c_double] = ACTIONS(1509), - [anon_sym_c_longdouble] = ACTIONS(1509), - [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_return] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_defer] = ACTIONS(1509), - [anon_sym_errdefer] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_expand] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [sym_none] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1509), - [sym_sink] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [sym_float] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_multiline_string] = ACTIONS(1513), - [sym_character] = ACTIONS(1513), + [STATE(542)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1509), + }, + [STATE(543)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(544)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1511), + }, + [STATE(545)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(546)] = { + [ts_builtin_sym_end] = ACTIONS(831), + [sym_identifier] = ACTIONS(1187), + [anon_sym_import] = ACTIONS(833), + [anon_sym_test] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_func] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(833), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(1187), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1187), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1187), + [anon_sym_anyopaque] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_int] = ACTIONS(1187), + [anon_sym_uint] = ACTIONS(1187), + [anon_sym_float] = ACTIONS(1187), + [anon_sym_range] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_c_char] = ACTIONS(1187), + [anon_sym_c_schar] = ACTIONS(1187), + [anon_sym_c_uchar] = ACTIONS(1187), + [anon_sym_c_short] = ACTIONS(1187), + [anon_sym_c_ushort] = ACTIONS(1187), + [anon_sym_c_int] = ACTIONS(1187), + [anon_sym_c_uint] = ACTIONS(1187), + [anon_sym_c_long] = ACTIONS(1187), + [anon_sym_c_ulong] = ACTIONS(1187), + [anon_sym_c_longlong] = ACTIONS(1187), + [anon_sym_c_ulonglong] = ACTIONS(1187), + [anon_sym_c_float] = ACTIONS(1187), + [anon_sym_c_double] = ACTIONS(1187), + [anon_sym_c_longdouble] = ACTIONS(1187), + [anon_sym_PLUS_EQ] = ACTIONS(831), + [anon_sym_DASH_EQ] = ACTIONS(831), + [anon_sym_STAR_EQ] = ACTIONS(831), + [anon_sym_SLASH_EQ] = ACTIONS(831), + [anon_sym_AMP_EQ] = ACTIONS(831), + [anon_sym_PIPE_EQ] = ACTIONS(831), + [anon_sym_xor_EQ] = ACTIONS(831), + [anon_sym_LT_LT_EQ] = ACTIONS(831), + [anon_sym_GT_GT_EQ] = ACTIONS(831), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(831), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_defer] = ACTIONS(1187), + [anon_sym_errdefer] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(833), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_expand] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), + [anon_sym_orelse] = ACTIONS(1187), + [anon_sym_catch] = ACTIONS(1187), + [anon_sym_or] = ACTIONS(1187), + [anon_sym_and] = ACTIONS(1187), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1187), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1187), + [anon_sym_xor] = ACTIONS(1187), + [anon_sym_LT_LT] = ACTIONS(1187), + [anon_sym_GT_GT] = ACTIONS(1187), + [anon_sym_LT_LT_PIPE] = ACTIONS(1187), + [anon_sym_PLUS] = ACTIONS(1187), + [anon_sym_SLASH] = ACTIONS(1187), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_try] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1187), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1187), + [anon_sym_false] = ACTIONS(1187), + [sym_none] = ACTIONS(1187), + [sym_undefined] = ACTIONS(1187), + [sym_sink] = ACTIONS(1187), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_multiline_string] = ACTIONS(1185), + [sym_character] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1185), + }, + [STATE(547)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2234), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(425), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(435), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(437), + [anon_sym_errdefer] = ACTIONS(439), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(445), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(548)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(549)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(550), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1513), }, - [STATE(592)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1649), - [sym_labeled_block] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_match_statement] = STATE(1649), - [sym__value] = STATE(1649), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(665), - [sym_identifier] = ACTIONS(1094), + [STATE(550)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -74384,68 +74683,861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(551)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(552), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1515), + }, + [STATE(552)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(553)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(604), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(518), + [sym_identifier] = ACTIONS(517), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(523), + [anon_sym_yield] = ACTIONS(525), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(527), + [anon_sym_errdefer] = ACTIONS(529), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(535), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1517), + }, + [STATE(554)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(571), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(573), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(577), + [anon_sym_errdefer] = ACTIONS(579), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(583), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1519), + }, + [STATE(555)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(556), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1521), + }, + [STATE(556)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(557)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(558), + [sym_identifier] = ACTIONS(227), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1523), }, - [STATE(593)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1664), - [sym_labeled_block] = STATE(1664), - [sym_if_statement] = STATE(1664), - [sym_while_statement] = STATE(1664), - [sym_for_statement] = STATE(1664), - [sym_match_statement] = STATE(1664), - [sym__value] = STATE(1664), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), + [STATE(558)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -74479,68 +75571,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(594)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1669), - [sym_labeled_block] = STATE(1669), - [sym_if_statement] = STATE(1669), - [sym_while_statement] = STATE(1669), - [sym_for_statement] = STATE(1669), - [sym_match_statement] = STATE(1669), - [sym__value] = STATE(1669), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), + [STATE(559)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(560), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -74574,353 +75682,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(595)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1629), - [sym_labeled_block] = STATE(1629), - [sym_if_statement] = STATE(1629), - [sym_while_statement] = STATE(1629), - [sym_for_statement] = STATE(1629), - [sym_match_statement] = STATE(1629), - [sym__value] = STATE(1629), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(596)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1634), - [sym_labeled_block] = STATE(1634), - [sym_if_statement] = STATE(1634), - [sym_while_statement] = STATE(1634), - [sym_for_statement] = STATE(1634), - [sym_match_statement] = STATE(1634), - [sym__value] = STATE(1634), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(597)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(599), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1525), }, - [STATE(598)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(602), - [sym_identifier] = ACTIONS(1094), + [STATE(560)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(751), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(227), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -74954,448 +75793,750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [anon_sym_return] = ACTIONS(231), + [anon_sym_yield] = ACTIONS(233), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(235), + [anon_sym_errdefer] = ACTIONS(237), + [anon_sym_if] = ACTIONS(239), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(243), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(561)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1554), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(562), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1527), }, - [STATE(599)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [STATE(562)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(600)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(603), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [STATE(563)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(564), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1529), }, - [STATE(601)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(604), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [STATE(564)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1684), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(565)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1685), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(566), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1531), }, - [STATE(602)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [STATE(566)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(2280), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(589), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(591), + [anon_sym_yield] = ACTIONS(593), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(595), + [anon_sym_errdefer] = ACTIONS(597), + [anon_sym_if] = ACTIONS(599), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(601), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, - [STATE(603)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), + [STATE(567)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(1645), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1645), + [sym_variable_declaration] = STATE(1645), + [sym_assignment_statement] = STATE(1645), + [sym_expression_statement] = STATE(1645), + [sym_return_statement] = STATE(1645), + [sym_yield_statement] = STATE(1645), + [sym_break_statement] = STATE(1645), + [sym_continue_statement] = STATE(1645), + [sym_defer_statement] = STATE(1645), + [sym_labeled_block] = STATE(1645), + [sym_if_statement] = STATE(1645), + [sym_while_statement] = STATE(1645), + [sym_for_statement] = STATE(1645), + [sym_match_statement] = STATE(1645), + [sym_expression] = STATE(597), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(107), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(129), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -75429,17162 +76570,30311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), + [anon_sym_return] = ACTIONS(117), + [anon_sym_yield] = ACTIONS(119), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_defer] = ACTIONS(121), + [anon_sym_errdefer] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(604)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(55), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(605)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(627), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(131), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1533), }, - [STATE(606)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(630), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), + [STATE(568)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(543), + [sym_identifier] = ACTIONS(545), + [anon_sym_import] = ACTIONS(545), + [anon_sym_test] = ACTIONS(545), + [anon_sym_hide] = ACTIONS(545), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(569)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_test] = ACTIONS(490), + [anon_sym_hide] = ACTIONS(490), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(570)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_test] = ACTIONS(490), + [anon_sym_hide] = ACTIONS(490), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(571)] = { + [sym_argument_list] = STATE(99), + [ts_builtin_sym_end] = ACTIONS(543), + [sym_identifier] = ACTIONS(545), + [anon_sym_import] = ACTIONS(545), + [anon_sym_test] = ACTIONS(545), + [anon_sym_hide] = ACTIONS(545), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(572)] = { + [sym_type] = STATE(3388), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_else] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(573)] = { + [sym_type] = STATE(3388), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_func] = ACTIONS(378), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(403), + [anon_sym_anyopaque] = ACTIONS(403), + [anon_sym_bool] = ACTIONS(403), + [anon_sym_int] = ACTIONS(403), + [anon_sym_uint] = ACTIONS(403), + [anon_sym_float] = ACTIONS(403), + [anon_sym_range] = ACTIONS(403), + [anon_sym_i8] = ACTIONS(403), + [anon_sym_i16] = ACTIONS(403), + [anon_sym_i32] = ACTIONS(403), + [anon_sym_i64] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(403), + [anon_sym_u16] = ACTIONS(403), + [anon_sym_u32] = ACTIONS(403), + [anon_sym_u64] = ACTIONS(403), + [anon_sym_isize] = ACTIONS(403), + [anon_sym_usize] = ACTIONS(403), + [anon_sym_f32] = ACTIONS(403), + [anon_sym_f64] = ACTIONS(403), + [anon_sym_c_char] = ACTIONS(403), + [anon_sym_c_schar] = ACTIONS(403), + [anon_sym_c_uchar] = ACTIONS(403), + [anon_sym_c_short] = ACTIONS(403), + [anon_sym_c_ushort] = ACTIONS(403), + [anon_sym_c_int] = ACTIONS(403), + [anon_sym_c_uint] = ACTIONS(403), + [anon_sym_c_long] = ACTIONS(403), + [anon_sym_c_ulong] = ACTIONS(403), + [anon_sym_c_longlong] = ACTIONS(403), + [anon_sym_c_ulonglong] = ACTIONS(403), + [anon_sym_c_float] = ACTIONS(403), + [anon_sym_c_double] = ACTIONS(403), + [anon_sym_c_longdouble] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_else] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(574)] = { + [sym_struct_type] = STATE(2384), + [sym_c_struct_type] = STATE(2575), + [sym_distinct_type] = STATE(2575), + [sym_alias_type] = STATE(2575), + [sym_union_type] = STATE(2575), + [sym_enum_type] = STATE(2575), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2593), + [sym_labeled_block] = STATE(2593), + [sym_if_statement] = STATE(2593), + [sym_while_statement] = STATE(2593), + [sym_for_statement] = STATE(2593), + [sym_match_statement] = STATE(2593), + [sym__value] = STATE(2593), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_import] = ACTIONS(1539), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_c_struct] = ACTIONS(1547), + [sym_opaque_type] = ACTIONS(1549), + [anon_sym_distinct] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1535), + [sym__newline] = ACTIONS(447), }, - [STATE(607)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1186), - [anon_sym_func] = ACTIONS(1190), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_EQ] = ACTIONS(1186), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_DOLLAR] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_anyopaque] = ACTIONS(1190), - [anon_sym_bool] = ACTIONS(1190), - [anon_sym_int] = ACTIONS(1190), - [anon_sym_uint] = ACTIONS(1190), - [anon_sym_float] = ACTIONS(1190), - [anon_sym_range] = ACTIONS(1190), - [anon_sym_i8] = ACTIONS(1190), - [anon_sym_i16] = ACTIONS(1190), - [anon_sym_i32] = ACTIONS(1190), - [anon_sym_i64] = ACTIONS(1190), - [anon_sym_u8] = ACTIONS(1190), - [anon_sym_u16] = ACTIONS(1190), - [anon_sym_u32] = ACTIONS(1190), - [anon_sym_u64] = ACTIONS(1190), - [anon_sym_isize] = ACTIONS(1190), - [anon_sym_usize] = ACTIONS(1190), - [anon_sym_f32] = ACTIONS(1190), - [anon_sym_f64] = ACTIONS(1190), - [anon_sym_c_char] = ACTIONS(1190), - [anon_sym_c_schar] = ACTIONS(1190), - [anon_sym_c_uchar] = ACTIONS(1190), - [anon_sym_c_short] = ACTIONS(1190), - [anon_sym_c_ushort] = ACTIONS(1190), - [anon_sym_c_int] = ACTIONS(1190), - [anon_sym_c_uint] = ACTIONS(1190), - [anon_sym_c_long] = ACTIONS(1190), - [anon_sym_c_ulong] = ACTIONS(1190), - [anon_sym_c_longlong] = ACTIONS(1190), - [anon_sym_c_ulonglong] = ACTIONS(1190), - [anon_sym_c_float] = ACTIONS(1190), - [anon_sym_c_double] = ACTIONS(1190), - [anon_sym_c_longdouble] = ACTIONS(1190), - [anon_sym_PLUS_EQ] = ACTIONS(1184), - [anon_sym_DASH_EQ] = ACTIONS(1184), - [anon_sym_STAR_EQ] = ACTIONS(1184), - [anon_sym_SLASH_EQ] = ACTIONS(1184), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_yield] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_defer] = ACTIONS(1190), - [anon_sym_errdefer] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1186), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_expand] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_match] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1186), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1184), - [anon_sym_orelse] = ACTIONS(1186), - [anon_sym_catch] = ACTIONS(1186), - [anon_sym_or] = ACTIONS(1186), - [anon_sym_and] = ACTIONS(1186), - [anon_sym_EQ_EQ] = ACTIONS(1184), - [anon_sym_BANG_EQ] = ACTIONS(1184), - [anon_sym_LT] = ACTIONS(1186), - [anon_sym_LT_EQ] = ACTIONS(1184), - [anon_sym_GT] = ACTIONS(1186), - [anon_sym_GT_EQ] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(1188), - [anon_sym_try] = ACTIONS(1190), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1190), - [anon_sym_false] = ACTIONS(1190), - [sym_none] = ACTIONS(1190), - [sym_undefined] = ACTIONS(1190), - [sym_sink] = ACTIONS(1190), - [sym_integer] = ACTIONS(1190), - [sym_float] = ACTIONS(1188), - [anon_sym_DQUOTE] = ACTIONS(1188), - [sym_multiline_string] = ACTIONS(1188), - [sym_character] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1184), - }, - [STATE(608)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1194), - [anon_sym_func] = ACTIONS(1178), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1176), - [anon_sym_PIPE] = ACTIONS(1176), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1194), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1178), - [anon_sym_anyopaque] = ACTIONS(1178), - [anon_sym_bool] = ACTIONS(1178), - [anon_sym_int] = ACTIONS(1178), - [anon_sym_uint] = ACTIONS(1178), - [anon_sym_float] = ACTIONS(1178), - [anon_sym_range] = ACTIONS(1178), - [anon_sym_i8] = ACTIONS(1178), - [anon_sym_i16] = ACTIONS(1178), - [anon_sym_i32] = ACTIONS(1178), - [anon_sym_i64] = ACTIONS(1178), - [anon_sym_u8] = ACTIONS(1178), - [anon_sym_u16] = ACTIONS(1178), - [anon_sym_u32] = ACTIONS(1178), - [anon_sym_u64] = ACTIONS(1178), - [anon_sym_isize] = ACTIONS(1178), - [anon_sym_usize] = ACTIONS(1178), - [anon_sym_f32] = ACTIONS(1178), - [anon_sym_f64] = ACTIONS(1178), - [anon_sym_c_char] = ACTIONS(1178), - [anon_sym_c_schar] = ACTIONS(1178), - [anon_sym_c_uchar] = ACTIONS(1178), - [anon_sym_c_short] = ACTIONS(1178), - [anon_sym_c_ushort] = ACTIONS(1178), - [anon_sym_c_int] = ACTIONS(1178), - [anon_sym_c_uint] = ACTIONS(1178), - [anon_sym_c_long] = ACTIONS(1178), - [anon_sym_c_ulong] = ACTIONS(1178), - [anon_sym_c_longlong] = ACTIONS(1178), - [anon_sym_c_ulonglong] = ACTIONS(1178), - [anon_sym_c_float] = ACTIONS(1178), - [anon_sym_c_double] = ACTIONS(1178), - [anon_sym_c_longdouble] = ACTIONS(1178), - [anon_sym_PLUS_EQ] = ACTIONS(1192), - [anon_sym_DASH_EQ] = ACTIONS(1192), - [anon_sym_STAR_EQ] = ACTIONS(1192), - [anon_sym_SLASH_EQ] = ACTIONS(1192), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_defer] = ACTIONS(1178), - [anon_sym_errdefer] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1194), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_expand] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_match] = ACTIONS(1178), - [anon_sym_DOT_DOT] = ACTIONS(1194), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1192), - [anon_sym_orelse] = ACTIONS(1194), - [anon_sym_catch] = ACTIONS(1194), - [anon_sym_or] = ACTIONS(1194), - [anon_sym_and] = ACTIONS(1194), - [anon_sym_EQ_EQ] = ACTIONS(1192), - [anon_sym_BANG_EQ] = ACTIONS(1192), - [anon_sym_LT] = ACTIONS(1194), - [anon_sym_LT_EQ] = ACTIONS(1192), - [anon_sym_GT] = ACTIONS(1194), - [anon_sym_GT_EQ] = ACTIONS(1192), - [anon_sym_PLUS] = ACTIONS(1194), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_try] = ACTIONS(1178), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1178), - [anon_sym_false] = ACTIONS(1178), - [sym_none] = ACTIONS(1178), - [sym_undefined] = ACTIONS(1178), - [sym_sink] = ACTIONS(1178), - [sym_integer] = ACTIONS(1178), - [sym_float] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_multiline_string] = ACTIONS(1176), - [sym_character] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1192), - }, - [STATE(609)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_else] = ACTIONS(1475), + [STATE(575)] = { + [sym_struct_type] = STATE(2357), + [sym_c_struct_type] = STATE(2550), + [sym_distinct_type] = STATE(2550), + [sym_alias_type] = STATE(2550), + [sym_union_type] = STATE(2550), + [sym_enum_type] = STATE(2550), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2566), + [sym_labeled_block] = STATE(2566), + [sym_if_statement] = STATE(2566), + [sym_while_statement] = STATE(2566), + [sym_for_statement] = STATE(2566), + [sym_match_statement] = STATE(2566), + [sym__value] = STATE(2566), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(574), + [sym_identifier] = ACTIONS(1537), + [anon_sym_import] = ACTIONS(1581), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_c_struct] = ACTIONS(1547), + [sym_opaque_type] = ACTIONS(1583), + [anon_sym_distinct] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), - }, - [STATE(610)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(612), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1537), - }, - [STATE(611)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(615), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1539), - }, - [STATE(612)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(613)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1541), - }, - [STATE(614)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(617), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1543), - }, - [STATE(615)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(616)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(617)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(618)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1676), - [sym_labeled_block] = STATE(1676), - [sym_if_statement] = STATE(1676), - [sym_while_statement] = STATE(1676), - [sym_for_statement] = STATE(1676), - [sym_match_statement] = STATE(1676), - [sym__value] = STATE(1676), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(619)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1545), - }, - [STATE(620)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(624), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1547), - }, - [STATE(621)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(622)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(625), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1549), - }, - [STATE(623)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(626), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1551), - }, - [STATE(624)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(625)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(626)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(627)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(628)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(668), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1553), - }, - [STATE(629)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(669), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1555), - }, - [STATE(630)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(631)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(633), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1557), - }, - [STATE(632)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(678), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1559), - }, - [STATE(633)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(634)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(637), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1561), - }, - [STATE(635)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(638), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1563), - }, - [STATE(636)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(637)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(638)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(639)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1641), - [sym_labeled_block] = STATE(1641), - [sym_if_statement] = STATE(1641), - [sym_while_statement] = STATE(1641), - [sym_for_statement] = STATE(1641), - [sym_match_statement] = STATE(1641), - [sym__value] = STATE(1641), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(593), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1565), - }, - [STATE(640)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1627), - [sym_labeled_block] = STATE(1627), - [sym_if_statement] = STATE(1627), - [sym_while_statement] = STATE(1627), - [sym_for_statement] = STATE(1627), - [sym_match_statement] = STATE(1627), - [sym__value] = STATE(1627), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(594), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1567), - }, - [STATE(641)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(643), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1569), - }, - [STATE(642)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(646), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1571), - }, - [STATE(643)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(644)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(647), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1573), - }, - [STATE(645)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(648), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1575), - }, - [STATE(646)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(647)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(648)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(649)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(651), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1577), - }, - [STATE(650)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(654), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1579), - }, - [STATE(651)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(652)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(655), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1581), - }, - [STATE(653)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(656), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1583), - }, - [STATE(654)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(655)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(656)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(657)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(659), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1585), }, - [STATE(658)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [STATE(576)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1587), + [sym__newline] = ACTIONS(543), }, - [STATE(659)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(209), + [STATE(577)] = { + [sym_struct_type] = STATE(2351), + [sym_c_struct_type] = STATE(2572), + [sym_distinct_type] = STATE(2572), + [sym_alias_type] = STATE(2572), + [sym_union_type] = STATE(2572), + [sym_enum_type] = STATE(2572), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2546), + [sym_labeled_block] = STATE(2546), + [sym_if_statement] = STATE(2546), + [sym_while_statement] = STATE(2546), + [sym_for_statement] = STATE(2546), + [sym_match_statement] = STATE(2546), + [sym__value] = STATE(2546), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_c_struct] = ACTIONS(1547), + [sym_opaque_type] = ACTIONS(1587), + [anon_sym_distinct] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(660)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(663), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1589), }, - [STATE(661)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(664), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(209), + [STATE(578)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(579)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(580)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_RPAREN] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(581)] = { + [sym_variant_payload] = STATE(2153), + [sym_identifier] = ACTIONS(775), + [anon_sym_func] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_EQ] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_void] = ACTIONS(775), + [anon_sym_anyopaque] = ACTIONS(775), + [anon_sym_bool] = ACTIONS(775), + [anon_sym_int] = ACTIONS(775), + [anon_sym_uint] = ACTIONS(775), + [anon_sym_float] = ACTIONS(775), + [anon_sym_range] = ACTIONS(775), + [anon_sym_i8] = ACTIONS(775), + [anon_sym_i16] = ACTIONS(775), + [anon_sym_i32] = ACTIONS(775), + [anon_sym_i64] = ACTIONS(775), + [anon_sym_u8] = ACTIONS(775), + [anon_sym_u16] = ACTIONS(775), + [anon_sym_u32] = ACTIONS(775), + [anon_sym_u64] = ACTIONS(775), + [anon_sym_isize] = ACTIONS(775), + [anon_sym_usize] = ACTIONS(775), + [anon_sym_f32] = ACTIONS(775), + [anon_sym_f64] = ACTIONS(775), + [anon_sym_c_char] = ACTIONS(775), + [anon_sym_c_schar] = ACTIONS(775), + [anon_sym_c_uchar] = ACTIONS(775), + [anon_sym_c_short] = ACTIONS(775), + [anon_sym_c_ushort] = ACTIONS(775), + [anon_sym_c_int] = ACTIONS(775), + [anon_sym_c_uint] = ACTIONS(775), + [anon_sym_c_long] = ACTIONS(775), + [anon_sym_c_ulong] = ACTIONS(775), + [anon_sym_c_longlong] = ACTIONS(775), + [anon_sym_c_ulonglong] = ACTIONS(775), + [anon_sym_c_float] = ACTIONS(775), + [anon_sym_c_double] = ACTIONS(775), + [anon_sym_c_longdouble] = ACTIONS(775), + [anon_sym_PLUS_EQ] = ACTIONS(481), + [anon_sym_DASH_EQ] = ACTIONS(481), + [anon_sym_STAR_EQ] = ACTIONS(481), + [anon_sym_SLASH_EQ] = ACTIONS(481), + [anon_sym_AMP_EQ] = ACTIONS(481), + [anon_sym_PIPE_EQ] = ACTIONS(481), + [anon_sym_xor_EQ] = ACTIONS(481), + [anon_sym_LT_LT_EQ] = ACTIONS(481), + [anon_sym_GT_GT_EQ] = ACTIONS(481), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(481), + [anon_sym_return] = ACTIONS(775), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_defer] = ACTIONS(775), + [anon_sym_errdefer] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_else] = ACTIONS(483), + [anon_sym_while] = ACTIONS(775), + [anon_sym_expand] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(773), + [anon_sym_orelse] = ACTIONS(775), + [anon_sym_catch] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_LT_LT_PIPE] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_try] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [sym_none] = ACTIONS(775), + [sym_undefined] = ACTIONS(775), + [sym_sink] = ACTIONS(775), + [sym_integer] = ACTIONS(775), + [sym_float] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_multiline_string] = ACTIONS(773), + [sym_character] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(773), + }, + [STATE(582)] = { + [sym_struct_type] = STATE(2360), + [sym_c_struct_type] = STATE(2564), + [sym_distinct_type] = STATE(2564), + [sym_alias_type] = STATE(2564), + [sym_union_type] = STATE(2564), + [sym_enum_type] = STATE(2564), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2595), + [sym_labeled_block] = STATE(2595), + [sym_if_statement] = STATE(2595), + [sym_while_statement] = STATE(2595), + [sym_for_statement] = STATE(2595), + [sym_match_statement] = STATE(2595), + [sym__value] = STATE(2595), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_c_struct] = ACTIONS(1547), + [sym_opaque_type] = ACTIONS(1591), + [anon_sym_distinct] = ACTIONS(1551), + [anon_sym_alias] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1591), + [sym__newline] = ACTIONS(447), + }, + [STATE(583)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_xor_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_errdefer] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(584)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(545), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_defer] = ACTIONS(545), + [anon_sym_errdefer] = ACTIONS(545), + [anon_sym_if] = ACTIONS(545), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(545), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(545), + [anon_sym_match] = ACTIONS(545), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(585)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(545), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_defer] = ACTIONS(545), + [anon_sym_errdefer] = ACTIONS(545), + [anon_sym_if] = ACTIONS(545), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(545), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(545), + [anon_sym_match] = ACTIONS(545), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(586)] = { + [sym_type] = STATE(627), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1607), + [anon_sym_func] = ACTIONS(1610), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_struct] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_DOLLAR] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(1628), + [anon_sym_anyopaque] = ACTIONS(1628), + [anon_sym_bool] = ACTIONS(1628), + [anon_sym_int] = ACTIONS(1628), + [anon_sym_uint] = ACTIONS(1628), + [anon_sym_float] = ACTIONS(1628), + [anon_sym_range] = ACTIONS(1628), + [anon_sym_i8] = ACTIONS(1628), + [anon_sym_i16] = ACTIONS(1628), + [anon_sym_i32] = ACTIONS(1628), + [anon_sym_i64] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1628), + [anon_sym_u16] = ACTIONS(1628), + [anon_sym_u32] = ACTIONS(1628), + [anon_sym_u64] = ACTIONS(1628), + [anon_sym_isize] = ACTIONS(1628), + [anon_sym_usize] = ACTIONS(1628), + [anon_sym_f32] = ACTIONS(1628), + [anon_sym_f64] = ACTIONS(1628), + [anon_sym_c_char] = ACTIONS(1628), + [anon_sym_c_schar] = ACTIONS(1628), + [anon_sym_c_uchar] = ACTIONS(1628), + [anon_sym_c_short] = ACTIONS(1628), + [anon_sym_c_ushort] = ACTIONS(1628), + [anon_sym_c_int] = ACTIONS(1628), + [anon_sym_c_uint] = ACTIONS(1628), + [anon_sym_c_long] = ACTIONS(1628), + [anon_sym_c_ulong] = ACTIONS(1628), + [anon_sym_c_longlong] = ACTIONS(1628), + [anon_sym_c_ulonglong] = ACTIONS(1628), + [anon_sym_c_float] = ACTIONS(1628), + [anon_sym_c_double] = ACTIONS(1628), + [anon_sym_c_longdouble] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(338), + [anon_sym_yield] = ACTIONS(338), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(338), + [anon_sym_defer] = ACTIONS(338), + [anon_sym_errdefer] = ACTIONS(338), + [anon_sym_if] = ACTIONS(338), + [anon_sym_else] = ACTIONS(338), + [anon_sym_while] = ACTIONS(338), + [anon_sym_expand] = ACTIONS(338), + [anon_sym_for] = ACTIONS(338), + [anon_sym_match] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_LT_LT_PIPE] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_TILDE] = ACTIONS(333), + [anon_sym_try] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [anon_sym_true] = ACTIONS(338), + [anon_sym_false] = ACTIONS(338), + [sym_none] = ACTIONS(338), + [sym_undefined] = ACTIONS(338), + [sym_sink] = ACTIONS(338), + [sym_integer] = ACTIONS(338), + [sym_float] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(333), + [sym_multiline_string] = ACTIONS(333), + [sym_character] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(333), + }, + [STATE(587)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_defer] = ACTIONS(490), + [anon_sym_errdefer] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(588)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_defer] = ACTIONS(490), + [anon_sym_errdefer] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(589)] = { + [sym_type] = STATE(622), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(1634), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_void] = ACTIONS(1648), + [anon_sym_anyopaque] = ACTIONS(1648), + [anon_sym_bool] = ACTIONS(1648), + [anon_sym_int] = ACTIONS(1648), + [anon_sym_uint] = ACTIONS(1648), + [anon_sym_float] = ACTIONS(1648), + [anon_sym_range] = ACTIONS(1648), + [anon_sym_i8] = ACTIONS(1648), + [anon_sym_i16] = ACTIONS(1648), + [anon_sym_i32] = ACTIONS(1648), + [anon_sym_i64] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1648), + [anon_sym_u16] = ACTIONS(1648), + [anon_sym_u32] = ACTIONS(1648), + [anon_sym_u64] = ACTIONS(1648), + [anon_sym_isize] = ACTIONS(1648), + [anon_sym_usize] = ACTIONS(1648), + [anon_sym_f32] = ACTIONS(1648), + [anon_sym_f64] = ACTIONS(1648), + [anon_sym_c_char] = ACTIONS(1648), + [anon_sym_c_schar] = ACTIONS(1648), + [anon_sym_c_uchar] = ACTIONS(1648), + [anon_sym_c_short] = ACTIONS(1648), + [anon_sym_c_ushort] = ACTIONS(1648), + [anon_sym_c_int] = ACTIONS(1648), + [anon_sym_c_uint] = ACTIONS(1648), + [anon_sym_c_long] = ACTIONS(1648), + [anon_sym_c_ulong] = ACTIONS(1648), + [anon_sym_c_longlong] = ACTIONS(1648), + [anon_sym_c_ulonglong] = ACTIONS(1648), + [anon_sym_c_float] = ACTIONS(1648), + [anon_sym_c_double] = ACTIONS(1648), + [anon_sym_c_longdouble] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_defer] = ACTIONS(310), + [anon_sym_errdefer] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_expand] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_try] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [sym_none] = ACTIONS(310), + [sym_undefined] = ACTIONS(310), + [sym_sink] = ACTIONS(310), + [sym_integer] = ACTIONS(310), + [sym_float] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_multiline_string] = ACTIONS(305), + [sym_character] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(590)] = { + [sym_type] = STATE(639), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1631), + [anon_sym_func] = ACTIONS(1634), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(310), + [anon_sym_struct] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_void] = ACTIONS(1648), + [anon_sym_anyopaque] = ACTIONS(1648), + [anon_sym_bool] = ACTIONS(1648), + [anon_sym_int] = ACTIONS(1648), + [anon_sym_uint] = ACTIONS(1648), + [anon_sym_float] = ACTIONS(1648), + [anon_sym_range] = ACTIONS(1648), + [anon_sym_i8] = ACTIONS(1648), + [anon_sym_i16] = ACTIONS(1648), + [anon_sym_i32] = ACTIONS(1648), + [anon_sym_i64] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1648), + [anon_sym_u16] = ACTIONS(1648), + [anon_sym_u32] = ACTIONS(1648), + [anon_sym_u64] = ACTIONS(1648), + [anon_sym_isize] = ACTIONS(1648), + [anon_sym_usize] = ACTIONS(1648), + [anon_sym_f32] = ACTIONS(1648), + [anon_sym_f64] = ACTIONS(1648), + [anon_sym_c_char] = ACTIONS(1648), + [anon_sym_c_schar] = ACTIONS(1648), + [anon_sym_c_uchar] = ACTIONS(1648), + [anon_sym_c_short] = ACTIONS(1648), + [anon_sym_c_ushort] = ACTIONS(1648), + [anon_sym_c_int] = ACTIONS(1648), + [anon_sym_c_uint] = ACTIONS(1648), + [anon_sym_c_long] = ACTIONS(1648), + [anon_sym_c_ulong] = ACTIONS(1648), + [anon_sym_c_longlong] = ACTIONS(1648), + [anon_sym_c_ulonglong] = ACTIONS(1648), + [anon_sym_c_float] = ACTIONS(1648), + [anon_sym_c_double] = ACTIONS(1648), + [anon_sym_c_longdouble] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(310), + [anon_sym_yield] = ACTIONS(310), + [anon_sym_break] = ACTIONS(310), + [anon_sym_continue] = ACTIONS(310), + [anon_sym_defer] = ACTIONS(310), + [anon_sym_errdefer] = ACTIONS(310), + [anon_sym_if] = ACTIONS(310), + [anon_sym_else] = ACTIONS(310), + [anon_sym_while] = ACTIONS(310), + [anon_sym_expand] = ACTIONS(310), + [anon_sym_for] = ACTIONS(310), + [anon_sym_match] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_try] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [anon_sym_true] = ACTIONS(310), + [anon_sym_false] = ACTIONS(310), + [sym_none] = ACTIONS(310), + [sym_undefined] = ACTIONS(310), + [sym_sink] = ACTIONS(310), + [sym_integer] = ACTIONS(310), + [sym_float] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [sym_multiline_string] = ACTIONS(305), + [sym_character] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(591)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_xor_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_errdefer] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(592)] = { + [sym_type] = STATE(611), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1655), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_anyopaque] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_int] = ACTIONS(1672), + [anon_sym_uint] = ACTIONS(1672), + [anon_sym_float] = ACTIONS(1672), + [anon_sym_range] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_c_char] = ACTIONS(1672), + [anon_sym_c_schar] = ACTIONS(1672), + [anon_sym_c_uchar] = ACTIONS(1672), + [anon_sym_c_short] = ACTIONS(1672), + [anon_sym_c_ushort] = ACTIONS(1672), + [anon_sym_c_int] = ACTIONS(1672), + [anon_sym_c_uint] = ACTIONS(1672), + [anon_sym_c_long] = ACTIONS(1672), + [anon_sym_c_ulong] = ACTIONS(1672), + [anon_sym_c_longlong] = ACTIONS(1672), + [anon_sym_c_ulonglong] = ACTIONS(1672), + [anon_sym_c_float] = ACTIONS(1672), + [anon_sym_c_double] = ACTIONS(1672), + [anon_sym_c_longdouble] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(593)] = { + [sym_type] = STATE(613), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1655), + [anon_sym_func] = ACTIONS(1658), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1672), + [anon_sym_anyopaque] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_int] = ACTIONS(1672), + [anon_sym_uint] = ACTIONS(1672), + [anon_sym_float] = ACTIONS(1672), + [anon_sym_range] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_c_char] = ACTIONS(1672), + [anon_sym_c_schar] = ACTIONS(1672), + [anon_sym_c_uchar] = ACTIONS(1672), + [anon_sym_c_short] = ACTIONS(1672), + [anon_sym_c_ushort] = ACTIONS(1672), + [anon_sym_c_int] = ACTIONS(1672), + [anon_sym_c_uint] = ACTIONS(1672), + [anon_sym_c_long] = ACTIONS(1672), + [anon_sym_c_ulong] = ACTIONS(1672), + [anon_sym_c_longlong] = ACTIONS(1672), + [anon_sym_c_ulonglong] = ACTIONS(1672), + [anon_sym_c_float] = ACTIONS(1672), + [anon_sym_c_double] = ACTIONS(1672), + [anon_sym_c_longdouble] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(594)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(595)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(596)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1677), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_xor_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_errdefer] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(597)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1679), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1681), + [anon_sym_DASH_EQ] = ACTIONS(1681), + [anon_sym_STAR_EQ] = ACTIONS(1681), + [anon_sym_SLASH_EQ] = ACTIONS(1681), + [anon_sym_AMP_EQ] = ACTIONS(1681), + [anon_sym_PIPE_EQ] = ACTIONS(1681), + [anon_sym_xor_EQ] = ACTIONS(1681), + [anon_sym_LT_LT_EQ] = ACTIONS(1681), + [anon_sym_GT_GT_EQ] = ACTIONS(1681), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_errdefer] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(598)] = { + [sym_type] = STATE(619), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [sym_identifier] = ACTIONS(1683), + [anon_sym_func] = ACTIONS(1686), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1700), + [anon_sym_anyopaque] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_int] = ACTIONS(1700), + [anon_sym_uint] = ACTIONS(1700), + [anon_sym_float] = ACTIONS(1700), + [anon_sym_range] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_c_char] = ACTIONS(1700), + [anon_sym_c_schar] = ACTIONS(1700), + [anon_sym_c_uchar] = ACTIONS(1700), + [anon_sym_c_short] = ACTIONS(1700), + [anon_sym_c_ushort] = ACTIONS(1700), + [anon_sym_c_int] = ACTIONS(1700), + [anon_sym_c_uint] = ACTIONS(1700), + [anon_sym_c_long] = ACTIONS(1700), + [anon_sym_c_ulong] = ACTIONS(1700), + [anon_sym_c_longlong] = ACTIONS(1700), + [anon_sym_c_ulonglong] = ACTIONS(1700), + [anon_sym_c_float] = ACTIONS(1700), + [anon_sym_c_double] = ACTIONS(1700), + [anon_sym_c_longdouble] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(286), + [anon_sym_break] = ACTIONS(286), + [anon_sym_continue] = ACTIONS(286), + [anon_sym_defer] = ACTIONS(286), + [anon_sym_errdefer] = ACTIONS(286), + [anon_sym_if] = ACTIONS(286), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_expand] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_LT_LT_PIPE] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_try] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [sym_none] = ACTIONS(286), + [sym_undefined] = ACTIONS(286), + [sym_sink] = ACTIONS(286), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(281), + [sym_multiline_string] = ACTIONS(281), + [sym_character] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(599)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(600)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(601)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(602)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(545), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(545), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(543), + [anon_sym_DASH_EQ] = ACTIONS(543), + [anon_sym_STAR_EQ] = ACTIONS(543), + [anon_sym_SLASH_EQ] = ACTIONS(543), + [anon_sym_AMP_EQ] = ACTIONS(543), + [anon_sym_PIPE_EQ] = ACTIONS(543), + [anon_sym_xor_EQ] = ACTIONS(543), + [anon_sym_LT_LT_EQ] = ACTIONS(543), + [anon_sym_GT_GT_EQ] = ACTIONS(543), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(543), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT_PIPE] = ACTIONS(545), + [anon_sym_PLUS] = ACTIONS(545), + [anon_sym_SLASH] = ACTIONS(545), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(603)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(604)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1595), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1601), + [anon_sym_DASH_EQ] = ACTIONS(1601), + [anon_sym_STAR_EQ] = ACTIONS(1601), + [anon_sym_SLASH_EQ] = ACTIONS(1601), + [anon_sym_AMP_EQ] = ACTIONS(1601), + [anon_sym_PIPE_EQ] = ACTIONS(1601), + [anon_sym_xor_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_EQ] = ACTIONS(1601), + [anon_sym_GT_GT_EQ] = ACTIONS(1601), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_errdefer] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(605)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(490), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_PLUS_EQ] = ACTIONS(488), + [anon_sym_DASH_EQ] = ACTIONS(488), + [anon_sym_STAR_EQ] = ACTIONS(488), + [anon_sym_SLASH_EQ] = ACTIONS(488), + [anon_sym_AMP_EQ] = ACTIONS(488), + [anon_sym_PIPE_EQ] = ACTIONS(488), + [anon_sym_xor_EQ] = ACTIONS(488), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_GT_GT_EQ] = ACTIONS(488), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(488), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(490), + [anon_sym_LT_LT_PIPE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(606)] = { + [ts_builtin_sym_end] = ACTIONS(1233), + [sym_identifier] = ACTIONS(1235), + [anon_sym_COLON_COLON] = ACTIONS(1233), + [anon_sym_import] = ACTIONS(1235), + [anon_sym_test] = ACTIONS(1235), + [anon_sym_hide] = ACTIONS(1235), + [anon_sym_func] = ACTIONS(1235), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_struct] = ACTIONS(1235), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1233), + [anon_sym_void] = ACTIONS(1235), + [anon_sym_anyopaque] = ACTIONS(1235), + [anon_sym_bool] = ACTIONS(1235), + [anon_sym_int] = ACTIONS(1235), + [anon_sym_uint] = ACTIONS(1235), + [anon_sym_float] = ACTIONS(1235), + [anon_sym_range] = ACTIONS(1235), + [anon_sym_i8] = ACTIONS(1235), + [anon_sym_i16] = ACTIONS(1235), + [anon_sym_i32] = ACTIONS(1235), + [anon_sym_i64] = ACTIONS(1235), + [anon_sym_u8] = ACTIONS(1235), + [anon_sym_u16] = ACTIONS(1235), + [anon_sym_u32] = ACTIONS(1235), + [anon_sym_u64] = ACTIONS(1235), + [anon_sym_isize] = ACTIONS(1235), + [anon_sym_usize] = ACTIONS(1235), + [anon_sym_f32] = ACTIONS(1235), + [anon_sym_f64] = ACTIONS(1235), + [anon_sym_c_char] = ACTIONS(1235), + [anon_sym_c_schar] = ACTIONS(1235), + [anon_sym_c_uchar] = ACTIONS(1235), + [anon_sym_c_short] = ACTIONS(1235), + [anon_sym_c_ushort] = ACTIONS(1235), + [anon_sym_c_int] = ACTIONS(1235), + [anon_sym_c_uint] = ACTIONS(1235), + [anon_sym_c_long] = ACTIONS(1235), + [anon_sym_c_ulong] = ACTIONS(1235), + [anon_sym_c_longlong] = ACTIONS(1235), + [anon_sym_c_ulonglong] = ACTIONS(1235), + [anon_sym_c_float] = ACTIONS(1235), + [anon_sym_c_double] = ACTIONS(1235), + [anon_sym_c_longdouble] = ACTIONS(1235), + [anon_sym_return] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1235), + [anon_sym_continue] = ACTIONS(1235), + [anon_sym_defer] = ACTIONS(1235), + [anon_sym_errdefer] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1235), + [anon_sym_while] = ACTIONS(1235), + [anon_sym_expand] = ACTIONS(1235), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), + [anon_sym_orelse] = ACTIONS(1235), + [anon_sym_catch] = ACTIONS(1235), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1235), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1233), + [anon_sym_xor] = ACTIONS(1235), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1233), + [anon_sym_LT_LT_PIPE] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_TILDE] = ACTIONS(1233), + [anon_sym_try] = ACTIONS(1235), + [anon_sym_DOT] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1233), + [anon_sym_true] = ACTIONS(1235), + [anon_sym_false] = ACTIONS(1235), + [sym_none] = ACTIONS(1235), + [sym_undefined] = ACTIONS(1235), + [sym_sink] = ACTIONS(1235), + [sym_integer] = ACTIONS(1235), + [sym_float] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1233), + [sym_multiline_string] = ACTIONS(1233), + [sym_character] = ACTIONS(1233), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1233), + }, + [STATE(607)] = { + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_identifier] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1217), + [anon_sym_import] = ACTIONS(1219), + [anon_sym_test] = ACTIONS(1219), + [anon_sym_hide] = ACTIONS(1219), + [anon_sym_func] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1219), + [anon_sym_struct] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1217), + [anon_sym_RPAREN] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_COMMA] = ACTIONS(1217), + [anon_sym_RBRACE] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_QMARK] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(1217), + [anon_sym_void] = ACTIONS(1219), + [anon_sym_anyopaque] = ACTIONS(1219), + [anon_sym_bool] = ACTIONS(1219), + [anon_sym_int] = ACTIONS(1219), + [anon_sym_uint] = ACTIONS(1219), + [anon_sym_float] = ACTIONS(1219), + [anon_sym_range] = ACTIONS(1219), + [anon_sym_i8] = ACTIONS(1219), + [anon_sym_i16] = ACTIONS(1219), + [anon_sym_i32] = ACTIONS(1219), + [anon_sym_i64] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1219), + [anon_sym_u16] = ACTIONS(1219), + [anon_sym_u32] = ACTIONS(1219), + [anon_sym_u64] = ACTIONS(1219), + [anon_sym_isize] = ACTIONS(1219), + [anon_sym_usize] = ACTIONS(1219), + [anon_sym_f32] = ACTIONS(1219), + [anon_sym_f64] = ACTIONS(1219), + [anon_sym_c_char] = ACTIONS(1219), + [anon_sym_c_schar] = ACTIONS(1219), + [anon_sym_c_uchar] = ACTIONS(1219), + [anon_sym_c_short] = ACTIONS(1219), + [anon_sym_c_ushort] = ACTIONS(1219), + [anon_sym_c_int] = ACTIONS(1219), + [anon_sym_c_uint] = ACTIONS(1219), + [anon_sym_c_long] = ACTIONS(1219), + [anon_sym_c_ulong] = ACTIONS(1219), + [anon_sym_c_longlong] = ACTIONS(1219), + [anon_sym_c_ulonglong] = ACTIONS(1219), + [anon_sym_c_float] = ACTIONS(1219), + [anon_sym_c_double] = ACTIONS(1219), + [anon_sym_c_longdouble] = ACTIONS(1219), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_yield] = ACTIONS(1219), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_break] = ACTIONS(1219), + [anon_sym_continue] = ACTIONS(1219), + [anon_sym_defer] = ACTIONS(1219), + [anon_sym_errdefer] = ACTIONS(1219), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_else] = ACTIONS(1219), + [anon_sym_while] = ACTIONS(1219), + [anon_sym_expand] = ACTIONS(1219), + [anon_sym_for] = ACTIONS(1219), + [anon_sym_match] = ACTIONS(1219), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1217), + [anon_sym_orelse] = ACTIONS(1219), + [anon_sym_catch] = ACTIONS(1219), + [anon_sym_or] = ACTIONS(1219), + [anon_sym_and] = ACTIONS(1219), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1219), + [anon_sym_GT_EQ] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_xor] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1217), + [anon_sym_LT_LT_PIPE] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1217), + [anon_sym_try] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(1219), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(1219), + [anon_sym_false] = ACTIONS(1219), + [sym_none] = ACTIONS(1219), + [sym_undefined] = ACTIONS(1219), + [sym_sink] = ACTIONS(1219), + [sym_integer] = ACTIONS(1219), + [sym_float] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1217), + [sym_multiline_string] = ACTIONS(1217), + [sym_character] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1217), + }, + [STATE(608)] = { + [ts_builtin_sym_end] = ACTIONS(1221), + [sym_identifier] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1221), + [anon_sym_import] = ACTIONS(1223), + [anon_sym_test] = ACTIONS(1223), + [anon_sym_hide] = ACTIONS(1223), + [anon_sym_func] = ACTIONS(1223), + [anon_sym_BANG] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_struct] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_LBRACE] = ACTIONS(1221), + [anon_sym_COMMA] = ACTIONS(1221), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1221), + [anon_sym_void] = ACTIONS(1223), + [anon_sym_anyopaque] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_int] = ACTIONS(1223), + [anon_sym_uint] = ACTIONS(1223), + [anon_sym_float] = ACTIONS(1223), + [anon_sym_range] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_c_char] = ACTIONS(1223), + [anon_sym_c_schar] = ACTIONS(1223), + [anon_sym_c_uchar] = ACTIONS(1223), + [anon_sym_c_short] = ACTIONS(1223), + [anon_sym_c_ushort] = ACTIONS(1223), + [anon_sym_c_int] = ACTIONS(1223), + [anon_sym_c_uint] = ACTIONS(1223), + [anon_sym_c_long] = ACTIONS(1223), + [anon_sym_c_ulong] = ACTIONS(1223), + [anon_sym_c_longlong] = ACTIONS(1223), + [anon_sym_c_ulonglong] = ACTIONS(1223), + [anon_sym_c_float] = ACTIONS(1223), + [anon_sym_c_double] = ACTIONS(1223), + [anon_sym_c_longdouble] = ACTIONS(1223), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_yield] = ACTIONS(1223), + [anon_sym_COLON] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_defer] = ACTIONS(1223), + [anon_sym_errdefer] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1223), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_while] = ACTIONS(1223), + [anon_sym_expand] = ACTIONS(1223), + [anon_sym_for] = ACTIONS(1223), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1221), + [anon_sym_orelse] = ACTIONS(1223), + [anon_sym_catch] = ACTIONS(1223), + [anon_sym_or] = ACTIONS(1223), + [anon_sym_and] = ACTIONS(1223), + [anon_sym_EQ_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1223), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_xor] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1223), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_LT_LT_PIPE] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_TILDE] = ACTIONS(1221), + [anon_sym_try] = ACTIONS(1223), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_true] = ACTIONS(1223), + [anon_sym_false] = ACTIONS(1223), + [sym_none] = ACTIONS(1223), + [sym_undefined] = ACTIONS(1223), + [sym_sink] = ACTIONS(1223), + [sym_integer] = ACTIONS(1223), + [sym_float] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1221), + [sym_multiline_string] = ACTIONS(1221), + [sym_character] = ACTIONS(1221), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1221), + }, + [STATE(609)] = { + [ts_builtin_sym_end] = ACTIONS(1225), + [sym_identifier] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1225), + [anon_sym_import] = ACTIONS(1227), + [anon_sym_test] = ACTIONS(1227), + [anon_sym_hide] = ACTIONS(1227), + [anon_sym_func] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1227), + [anon_sym_struct] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_LBRACE] = ACTIONS(1225), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1225), + [anon_sym_void] = ACTIONS(1227), + [anon_sym_anyopaque] = ACTIONS(1227), + [anon_sym_bool] = ACTIONS(1227), + [anon_sym_int] = ACTIONS(1227), + [anon_sym_uint] = ACTIONS(1227), + [anon_sym_float] = ACTIONS(1227), + [anon_sym_range] = ACTIONS(1227), + [anon_sym_i8] = ACTIONS(1227), + [anon_sym_i16] = ACTIONS(1227), + [anon_sym_i32] = ACTIONS(1227), + [anon_sym_i64] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1227), + [anon_sym_u16] = ACTIONS(1227), + [anon_sym_u32] = ACTIONS(1227), + [anon_sym_u64] = ACTIONS(1227), + [anon_sym_isize] = ACTIONS(1227), + [anon_sym_usize] = ACTIONS(1227), + [anon_sym_f32] = ACTIONS(1227), + [anon_sym_f64] = ACTIONS(1227), + [anon_sym_c_char] = ACTIONS(1227), + [anon_sym_c_schar] = ACTIONS(1227), + [anon_sym_c_uchar] = ACTIONS(1227), + [anon_sym_c_short] = ACTIONS(1227), + [anon_sym_c_ushort] = ACTIONS(1227), + [anon_sym_c_int] = ACTIONS(1227), + [anon_sym_c_uint] = ACTIONS(1227), + [anon_sym_c_long] = ACTIONS(1227), + [anon_sym_c_ulong] = ACTIONS(1227), + [anon_sym_c_longlong] = ACTIONS(1227), + [anon_sym_c_ulonglong] = ACTIONS(1227), + [anon_sym_c_float] = ACTIONS(1227), + [anon_sym_c_double] = ACTIONS(1227), + [anon_sym_c_longdouble] = ACTIONS(1227), + [anon_sym_return] = ACTIONS(1227), + [anon_sym_yield] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1227), + [anon_sym_break] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_defer] = ACTIONS(1227), + [anon_sym_errdefer] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1227), + [anon_sym_else] = ACTIONS(1227), + [anon_sym_while] = ACTIONS(1227), + [anon_sym_expand] = ACTIONS(1227), + [anon_sym_for] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1225), + [anon_sym_orelse] = ACTIONS(1227), + [anon_sym_catch] = ACTIONS(1227), + [anon_sym_or] = ACTIONS(1227), + [anon_sym_and] = ACTIONS(1227), + [anon_sym_EQ_EQ] = ACTIONS(1225), + [anon_sym_BANG_EQ] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_xor] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1227), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_LT_LT_PIPE] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_TILDE] = ACTIONS(1225), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_DOT] = ACTIONS(1227), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_true] = ACTIONS(1227), + [anon_sym_false] = ACTIONS(1227), + [sym_none] = ACTIONS(1227), + [sym_undefined] = ACTIONS(1227), + [sym_sink] = ACTIONS(1227), + [sym_integer] = ACTIONS(1227), + [sym_float] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1225), + [sym_multiline_string] = ACTIONS(1225), + [sym_character] = ACTIONS(1225), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1225), + }, + [STATE(610)] = { + [ts_builtin_sym_end] = ACTIONS(1129), + [sym_identifier] = ACTIONS(1131), + [anon_sym_COLON_COLON] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(1131), + [anon_sym_test] = ACTIONS(1131), + [anon_sym_hide] = ACTIONS(1131), + [anon_sym_func] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1131), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_struct] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(1129), + [anon_sym_RPAREN] = ACTIONS(1129), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_COMMA] = ACTIONS(1129), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_PIPE] = ACTIONS(1129), + [anon_sym_QMARK] = ACTIONS(1129), + [anon_sym_STAR] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1131), + [anon_sym_anyopaque] = ACTIONS(1131), + [anon_sym_bool] = ACTIONS(1131), + [anon_sym_int] = ACTIONS(1131), + [anon_sym_uint] = ACTIONS(1131), + [anon_sym_float] = ACTIONS(1131), + [anon_sym_range] = ACTIONS(1131), + [anon_sym_i8] = ACTIONS(1131), + [anon_sym_i16] = ACTIONS(1131), + [anon_sym_i32] = ACTIONS(1131), + [anon_sym_i64] = ACTIONS(1131), + [anon_sym_u8] = ACTIONS(1131), + [anon_sym_u16] = ACTIONS(1131), + [anon_sym_u32] = ACTIONS(1131), + [anon_sym_u64] = ACTIONS(1131), + [anon_sym_isize] = ACTIONS(1131), + [anon_sym_usize] = ACTIONS(1131), + [anon_sym_f32] = ACTIONS(1131), + [anon_sym_f64] = ACTIONS(1131), + [anon_sym_c_char] = ACTIONS(1131), + [anon_sym_c_schar] = ACTIONS(1131), + [anon_sym_c_uchar] = ACTIONS(1131), + [anon_sym_c_short] = ACTIONS(1131), + [anon_sym_c_ushort] = ACTIONS(1131), + [anon_sym_c_int] = ACTIONS(1131), + [anon_sym_c_uint] = ACTIONS(1131), + [anon_sym_c_long] = ACTIONS(1131), + [anon_sym_c_ulong] = ACTIONS(1131), + [anon_sym_c_longlong] = ACTIONS(1131), + [anon_sym_c_ulonglong] = ACTIONS(1131), + [anon_sym_c_float] = ACTIONS(1131), + [anon_sym_c_double] = ACTIONS(1131), + [anon_sym_c_longdouble] = ACTIONS(1131), + [anon_sym_return] = ACTIONS(1131), + [anon_sym_yield] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1131), + [anon_sym_defer] = ACTIONS(1131), + [anon_sym_errdefer] = ACTIONS(1131), + [anon_sym_if] = ACTIONS(1131), + [anon_sym_else] = ACTIONS(1131), + [anon_sym_while] = ACTIONS(1131), + [anon_sym_expand] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1131), + [anon_sym_match] = ACTIONS(1131), + [anon_sym_DOT_DOT] = ACTIONS(1131), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1129), + [anon_sym_orelse] = ACTIONS(1131), + [anon_sym_catch] = ACTIONS(1131), + [anon_sym_or] = ACTIONS(1131), + [anon_sym_and] = ACTIONS(1131), + [anon_sym_EQ_EQ] = ACTIONS(1129), + [anon_sym_BANG_EQ] = ACTIONS(1129), + [anon_sym_LT] = ACTIONS(1131), + [anon_sym_LT_EQ] = ACTIONS(1129), + [anon_sym_GT] = ACTIONS(1131), + [anon_sym_GT_EQ] = ACTIONS(1129), + [anon_sym_AMP] = ACTIONS(1129), + [anon_sym_xor] = ACTIONS(1131), + [anon_sym_LT_LT] = ACTIONS(1131), + [anon_sym_GT_GT] = ACTIONS(1129), + [anon_sym_LT_LT_PIPE] = ACTIONS(1129), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_try] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(1131), + [anon_sym_CARET] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(1131), + [anon_sym_false] = ACTIONS(1131), + [sym_none] = ACTIONS(1131), + [sym_undefined] = ACTIONS(1131), + [sym_sink] = ACTIONS(1131), + [sym_integer] = ACTIONS(1131), + [sym_float] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1129), + [sym_multiline_string] = ACTIONS(1129), + [sym_character] = ACTIONS(1129), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1129), + }, + [STATE(611)] = { + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_identifier] = ACTIONS(1135), + [anon_sym_COLON_COLON] = ACTIONS(1133), + [anon_sym_import] = ACTIONS(1135), + [anon_sym_test] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), + [anon_sym_func] = ACTIONS(1135), + [anon_sym_BANG] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_struct] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1133), + [anon_sym_RPAREN] = ACTIONS(1133), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1133), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_void] = ACTIONS(1135), + [anon_sym_anyopaque] = ACTIONS(1135), + [anon_sym_bool] = ACTIONS(1135), + [anon_sym_int] = ACTIONS(1135), + [anon_sym_uint] = ACTIONS(1135), + [anon_sym_float] = ACTIONS(1135), + [anon_sym_range] = ACTIONS(1135), + [anon_sym_i8] = ACTIONS(1135), + [anon_sym_i16] = ACTIONS(1135), + [anon_sym_i32] = ACTIONS(1135), + [anon_sym_i64] = ACTIONS(1135), + [anon_sym_u8] = ACTIONS(1135), + [anon_sym_u16] = ACTIONS(1135), + [anon_sym_u32] = ACTIONS(1135), + [anon_sym_u64] = ACTIONS(1135), + [anon_sym_isize] = ACTIONS(1135), + [anon_sym_usize] = ACTIONS(1135), + [anon_sym_f32] = ACTIONS(1135), + [anon_sym_f64] = ACTIONS(1135), + [anon_sym_c_char] = ACTIONS(1135), + [anon_sym_c_schar] = ACTIONS(1135), + [anon_sym_c_uchar] = ACTIONS(1135), + [anon_sym_c_short] = ACTIONS(1135), + [anon_sym_c_ushort] = ACTIONS(1135), + [anon_sym_c_int] = ACTIONS(1135), + [anon_sym_c_uint] = ACTIONS(1135), + [anon_sym_c_long] = ACTIONS(1135), + [anon_sym_c_ulong] = ACTIONS(1135), + [anon_sym_c_longlong] = ACTIONS(1135), + [anon_sym_c_ulonglong] = ACTIONS(1135), + [anon_sym_c_float] = ACTIONS(1135), + [anon_sym_c_double] = ACTIONS(1135), + [anon_sym_c_longdouble] = ACTIONS(1135), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_COLON] = ACTIONS(1135), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1135), + [anon_sym_defer] = ACTIONS(1135), + [anon_sym_errdefer] = ACTIONS(1135), + [anon_sym_if] = ACTIONS(1135), + [anon_sym_else] = ACTIONS(1135), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_expand] = ACTIONS(1135), + [anon_sym_for] = ACTIONS(1135), + [anon_sym_match] = ACTIONS(1135), + [anon_sym_DOT_DOT] = ACTIONS(1135), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1133), + [anon_sym_orelse] = ACTIONS(1135), + [anon_sym_catch] = ACTIONS(1135), + [anon_sym_or] = ACTIONS(1135), + [anon_sym_and] = ACTIONS(1135), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1133), + [anon_sym_GT] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_xor] = ACTIONS(1135), + [anon_sym_LT_LT] = ACTIONS(1135), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_LT_LT_PIPE] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_TILDE] = ACTIONS(1133), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_DOT] = ACTIONS(1135), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_true] = ACTIONS(1135), + [anon_sym_false] = ACTIONS(1135), + [sym_none] = ACTIONS(1135), + [sym_undefined] = ACTIONS(1135), + [sym_sink] = ACTIONS(1135), + [sym_integer] = ACTIONS(1135), + [sym_float] = ACTIONS(1133), + [anon_sym_DQUOTE] = ACTIONS(1133), + [sym_multiline_string] = ACTIONS(1133), + [sym_character] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1133), + }, + [STATE(612)] = { + [ts_builtin_sym_end] = ACTIONS(1137), + [sym_identifier] = ACTIONS(1139), + [anon_sym_COLON_COLON] = ACTIONS(1137), + [anon_sym_import] = ACTIONS(1139), + [anon_sym_test] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), + [anon_sym_func] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1139), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1137), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_COMMA] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1137), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1137), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1139), + [anon_sym_anyopaque] = ACTIONS(1139), + [anon_sym_bool] = ACTIONS(1139), + [anon_sym_int] = ACTIONS(1139), + [anon_sym_uint] = ACTIONS(1139), + [anon_sym_float] = ACTIONS(1139), + [anon_sym_range] = ACTIONS(1139), + [anon_sym_i8] = ACTIONS(1139), + [anon_sym_i16] = ACTIONS(1139), + [anon_sym_i32] = ACTIONS(1139), + [anon_sym_i64] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(1139), + [anon_sym_u16] = ACTIONS(1139), + [anon_sym_u32] = ACTIONS(1139), + [anon_sym_u64] = ACTIONS(1139), + [anon_sym_isize] = ACTIONS(1139), + [anon_sym_usize] = ACTIONS(1139), + [anon_sym_f32] = ACTIONS(1139), + [anon_sym_f64] = ACTIONS(1139), + [anon_sym_c_char] = ACTIONS(1139), + [anon_sym_c_schar] = ACTIONS(1139), + [anon_sym_c_uchar] = ACTIONS(1139), + [anon_sym_c_short] = ACTIONS(1139), + [anon_sym_c_ushort] = ACTIONS(1139), + [anon_sym_c_int] = ACTIONS(1139), + [anon_sym_c_uint] = ACTIONS(1139), + [anon_sym_c_long] = ACTIONS(1139), + [anon_sym_c_ulong] = ACTIONS(1139), + [anon_sym_c_longlong] = ACTIONS(1139), + [anon_sym_c_ulonglong] = ACTIONS(1139), + [anon_sym_c_float] = ACTIONS(1139), + [anon_sym_c_double] = ACTIONS(1139), + [anon_sym_c_longdouble] = ACTIONS(1139), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1139), + [anon_sym_COLON] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_defer] = ACTIONS(1139), + [anon_sym_errdefer] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1139), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_expand] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), + [anon_sym_orelse] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_xor] = ACTIONS(1139), + [anon_sym_LT_LT] = ACTIONS(1139), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_LT_LT_PIPE] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1137), + [anon_sym_SLASH] = ACTIONS(1137), + [anon_sym_TILDE] = ACTIONS(1137), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_DOT] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [sym_none] = ACTIONS(1139), + [sym_undefined] = ACTIONS(1139), + [sym_sink] = ACTIONS(1139), + [sym_integer] = ACTIONS(1139), + [sym_float] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_multiline_string] = ACTIONS(1137), + [sym_character] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1137), + }, + [STATE(613)] = { + [ts_builtin_sym_end] = ACTIONS(1141), + [sym_identifier] = ACTIONS(1143), + [anon_sym_COLON_COLON] = ACTIONS(1141), + [anon_sym_import] = ACTIONS(1143), + [anon_sym_test] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), + [anon_sym_func] = ACTIONS(1143), + [anon_sym_BANG] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1143), + [anon_sym_struct] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_LBRACE] = ACTIONS(1141), + [anon_sym_COMMA] = ACTIONS(1141), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_DASH] = ACTIONS(1141), + [anon_sym_DOLLAR] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_QMARK] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_void] = ACTIONS(1143), + [anon_sym_anyopaque] = ACTIONS(1143), + [anon_sym_bool] = ACTIONS(1143), + [anon_sym_int] = ACTIONS(1143), + [anon_sym_uint] = ACTIONS(1143), + [anon_sym_float] = ACTIONS(1143), + [anon_sym_range] = ACTIONS(1143), + [anon_sym_i8] = ACTIONS(1143), + [anon_sym_i16] = ACTIONS(1143), + [anon_sym_i32] = ACTIONS(1143), + [anon_sym_i64] = ACTIONS(1143), + [anon_sym_u8] = ACTIONS(1143), + [anon_sym_u16] = ACTIONS(1143), + [anon_sym_u32] = ACTIONS(1143), + [anon_sym_u64] = ACTIONS(1143), + [anon_sym_isize] = ACTIONS(1143), + [anon_sym_usize] = ACTIONS(1143), + [anon_sym_f32] = ACTIONS(1143), + [anon_sym_f64] = ACTIONS(1143), + [anon_sym_c_char] = ACTIONS(1143), + [anon_sym_c_schar] = ACTIONS(1143), + [anon_sym_c_uchar] = ACTIONS(1143), + [anon_sym_c_short] = ACTIONS(1143), + [anon_sym_c_ushort] = ACTIONS(1143), + [anon_sym_c_int] = ACTIONS(1143), + [anon_sym_c_uint] = ACTIONS(1143), + [anon_sym_c_long] = ACTIONS(1143), + [anon_sym_c_ulong] = ACTIONS(1143), + [anon_sym_c_longlong] = ACTIONS(1143), + [anon_sym_c_ulonglong] = ACTIONS(1143), + [anon_sym_c_float] = ACTIONS(1143), + [anon_sym_c_double] = ACTIONS(1143), + [anon_sym_c_longdouble] = ACTIONS(1143), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_yield] = ACTIONS(1143), + [anon_sym_COLON] = ACTIONS(1143), + [anon_sym_break] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1143), + [anon_sym_defer] = ACTIONS(1143), + [anon_sym_errdefer] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1143), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(1143), + [anon_sym_expand] = ACTIONS(1143), + [anon_sym_for] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1143), + [anon_sym_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1141), + [anon_sym_orelse] = ACTIONS(1143), + [anon_sym_catch] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1143), + [anon_sym_and] = ACTIONS(1143), + [anon_sym_EQ_EQ] = ACTIONS(1141), + [anon_sym_BANG_EQ] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_LT_EQ] = ACTIONS(1141), + [anon_sym_GT] = ACTIONS(1143), + [anon_sym_GT_EQ] = ACTIONS(1141), + [anon_sym_AMP] = ACTIONS(1141), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1143), + [anon_sym_GT_GT] = ACTIONS(1141), + [anon_sym_LT_LT_PIPE] = ACTIONS(1141), + [anon_sym_PLUS] = ACTIONS(1141), + [anon_sym_SLASH] = ACTIONS(1141), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_try] = ACTIONS(1143), + [anon_sym_DOT] = ACTIONS(1143), + [anon_sym_CARET] = ACTIONS(1141), + [anon_sym_true] = ACTIONS(1143), + [anon_sym_false] = ACTIONS(1143), + [sym_none] = ACTIONS(1143), + [sym_undefined] = ACTIONS(1143), + [sym_sink] = ACTIONS(1143), + [sym_integer] = ACTIONS(1143), + [sym_float] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1141), + [sym_multiline_string] = ACTIONS(1141), + [sym_character] = ACTIONS(1141), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1141), + }, + [STATE(614)] = { + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1147), + [anon_sym_COLON_COLON] = ACTIONS(1145), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_test] = ACTIONS(1147), + [anon_sym_hide] = ACTIONS(1147), + [anon_sym_func] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1147), + [anon_sym_EQ] = ACTIONS(1147), + [anon_sym_struct] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_COMMA] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_PIPE] = ACTIONS(1145), + [anon_sym_QMARK] = ACTIONS(1145), + [anon_sym_STAR] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_void] = ACTIONS(1147), + [anon_sym_anyopaque] = ACTIONS(1147), + [anon_sym_bool] = ACTIONS(1147), + [anon_sym_int] = ACTIONS(1147), + [anon_sym_uint] = ACTIONS(1147), + [anon_sym_float] = ACTIONS(1147), + [anon_sym_range] = ACTIONS(1147), + [anon_sym_i8] = ACTIONS(1147), + [anon_sym_i16] = ACTIONS(1147), + [anon_sym_i32] = ACTIONS(1147), + [anon_sym_i64] = ACTIONS(1147), + [anon_sym_u8] = ACTIONS(1147), + [anon_sym_u16] = ACTIONS(1147), + [anon_sym_u32] = ACTIONS(1147), + [anon_sym_u64] = ACTIONS(1147), + [anon_sym_isize] = ACTIONS(1147), + [anon_sym_usize] = ACTIONS(1147), + [anon_sym_f32] = ACTIONS(1147), + [anon_sym_f64] = ACTIONS(1147), + [anon_sym_c_char] = ACTIONS(1147), + [anon_sym_c_schar] = ACTIONS(1147), + [anon_sym_c_uchar] = ACTIONS(1147), + [anon_sym_c_short] = ACTIONS(1147), + [anon_sym_c_ushort] = ACTIONS(1147), + [anon_sym_c_int] = ACTIONS(1147), + [anon_sym_c_uint] = ACTIONS(1147), + [anon_sym_c_long] = ACTIONS(1147), + [anon_sym_c_ulong] = ACTIONS(1147), + [anon_sym_c_longlong] = ACTIONS(1147), + [anon_sym_c_ulonglong] = ACTIONS(1147), + [anon_sym_c_float] = ACTIONS(1147), + [anon_sym_c_double] = ACTIONS(1147), + [anon_sym_c_longdouble] = ACTIONS(1147), + [anon_sym_return] = ACTIONS(1147), + [anon_sym_yield] = ACTIONS(1147), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_defer] = ACTIONS(1147), + [anon_sym_errdefer] = ACTIONS(1147), + [anon_sym_if] = ACTIONS(1147), + [anon_sym_else] = ACTIONS(1147), + [anon_sym_while] = ACTIONS(1147), + [anon_sym_expand] = ACTIONS(1147), + [anon_sym_for] = ACTIONS(1147), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_DOT_DOT] = ACTIONS(1147), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [anon_sym_orelse] = ACTIONS(1147), + [anon_sym_catch] = ACTIONS(1147), + [anon_sym_or] = ACTIONS(1147), + [anon_sym_and] = ACTIONS(1147), + [anon_sym_EQ_EQ] = ACTIONS(1145), + [anon_sym_BANG_EQ] = ACTIONS(1145), + [anon_sym_LT] = ACTIONS(1147), + [anon_sym_LT_EQ] = ACTIONS(1145), + [anon_sym_GT] = ACTIONS(1147), + [anon_sym_GT_EQ] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(1145), + [anon_sym_xor] = ACTIONS(1147), + [anon_sym_LT_LT] = ACTIONS(1147), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_LT_LT_PIPE] = ACTIONS(1145), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_TILDE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1147), + [anon_sym_DOT] = ACTIONS(1147), + [anon_sym_CARET] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1147), + [anon_sym_false] = ACTIONS(1147), + [sym_none] = ACTIONS(1147), + [sym_undefined] = ACTIONS(1147), + [sym_sink] = ACTIONS(1147), + [sym_integer] = ACTIONS(1147), + [sym_float] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym_multiline_string] = ACTIONS(1145), + [sym_character] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1145), + }, + [STATE(615)] = { + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_identifier] = ACTIONS(1171), + [anon_sym_COLON_COLON] = ACTIONS(1169), + [anon_sym_import] = ACTIONS(1171), + [anon_sym_test] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), + [anon_sym_func] = ACTIONS(1171), + [anon_sym_BANG] = ACTIONS(1171), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_struct] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1169), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1169), + [anon_sym_COMMA] = ACTIONS(1169), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1169), + [anon_sym_QMARK] = ACTIONS(1169), + [anon_sym_STAR] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1169), + [anon_sym_void] = ACTIONS(1171), + [anon_sym_anyopaque] = ACTIONS(1171), + [anon_sym_bool] = ACTIONS(1171), + [anon_sym_int] = ACTIONS(1171), + [anon_sym_uint] = ACTIONS(1171), + [anon_sym_float] = ACTIONS(1171), + [anon_sym_range] = ACTIONS(1171), + [anon_sym_i8] = ACTIONS(1171), + [anon_sym_i16] = ACTIONS(1171), + [anon_sym_i32] = ACTIONS(1171), + [anon_sym_i64] = ACTIONS(1171), + [anon_sym_u8] = ACTIONS(1171), + [anon_sym_u16] = ACTIONS(1171), + [anon_sym_u32] = ACTIONS(1171), + [anon_sym_u64] = ACTIONS(1171), + [anon_sym_isize] = ACTIONS(1171), + [anon_sym_usize] = ACTIONS(1171), + [anon_sym_f32] = ACTIONS(1171), + [anon_sym_f64] = ACTIONS(1171), + [anon_sym_c_char] = ACTIONS(1171), + [anon_sym_c_schar] = ACTIONS(1171), + [anon_sym_c_uchar] = ACTIONS(1171), + [anon_sym_c_short] = ACTIONS(1171), + [anon_sym_c_ushort] = ACTIONS(1171), + [anon_sym_c_int] = ACTIONS(1171), + [anon_sym_c_uint] = ACTIONS(1171), + [anon_sym_c_long] = ACTIONS(1171), + [anon_sym_c_ulong] = ACTIONS(1171), + [anon_sym_c_longlong] = ACTIONS(1171), + [anon_sym_c_ulonglong] = ACTIONS(1171), + [anon_sym_c_float] = ACTIONS(1171), + [anon_sym_c_double] = ACTIONS(1171), + [anon_sym_c_longdouble] = ACTIONS(1171), + [anon_sym_return] = ACTIONS(1171), + [anon_sym_yield] = ACTIONS(1171), + [anon_sym_COLON] = ACTIONS(1171), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_defer] = ACTIONS(1171), + [anon_sym_errdefer] = ACTIONS(1171), + [anon_sym_if] = ACTIONS(1171), + [anon_sym_else] = ACTIONS(1171), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_expand] = ACTIONS(1171), + [anon_sym_for] = ACTIONS(1171), + [anon_sym_match] = ACTIONS(1171), + [anon_sym_DOT_DOT] = ACTIONS(1171), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1169), + [anon_sym_orelse] = ACTIONS(1171), + [anon_sym_catch] = ACTIONS(1171), + [anon_sym_or] = ACTIONS(1171), + [anon_sym_and] = ACTIONS(1171), + [anon_sym_EQ_EQ] = ACTIONS(1169), + [anon_sym_BANG_EQ] = ACTIONS(1169), + [anon_sym_LT] = ACTIONS(1171), + [anon_sym_LT_EQ] = ACTIONS(1169), + [anon_sym_GT] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(1169), + [anon_sym_AMP] = ACTIONS(1169), + [anon_sym_xor] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1171), + [anon_sym_GT_GT] = ACTIONS(1169), + [anon_sym_LT_LT_PIPE] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(1169), + [anon_sym_SLASH] = ACTIONS(1169), + [anon_sym_TILDE] = ACTIONS(1169), + [anon_sym_try] = ACTIONS(1171), + [anon_sym_DOT] = ACTIONS(1171), + [anon_sym_CARET] = ACTIONS(1169), + [anon_sym_true] = ACTIONS(1171), + [anon_sym_false] = ACTIONS(1171), + [sym_none] = ACTIONS(1171), + [sym_undefined] = ACTIONS(1171), + [sym_sink] = ACTIONS(1171), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1169), + [anon_sym_DQUOTE] = ACTIONS(1169), + [sym_multiline_string] = ACTIONS(1169), + [sym_character] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1169), + }, + [STATE(616)] = { + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(1203), + [anon_sym_COLON_COLON] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(1203), + [anon_sym_test] = ACTIONS(1203), + [anon_sym_hide] = ACTIONS(1203), + [anon_sym_func] = ACTIONS(1203), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_EQ] = ACTIONS(1203), + [anon_sym_struct] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_RPAREN] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1201), + [anon_sym_DASH] = ACTIONS(1201), + [anon_sym_DOLLAR] = ACTIONS(1201), + [anon_sym_PIPE] = ACTIONS(1201), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_anyopaque] = ACTIONS(1203), + [anon_sym_bool] = ACTIONS(1203), + [anon_sym_int] = ACTIONS(1203), + [anon_sym_uint] = ACTIONS(1203), + [anon_sym_float] = ACTIONS(1203), + [anon_sym_range] = ACTIONS(1203), + [anon_sym_i8] = ACTIONS(1203), + [anon_sym_i16] = ACTIONS(1203), + [anon_sym_i32] = ACTIONS(1203), + [anon_sym_i64] = ACTIONS(1203), + [anon_sym_u8] = ACTIONS(1203), + [anon_sym_u16] = ACTIONS(1203), + [anon_sym_u32] = ACTIONS(1203), + [anon_sym_u64] = ACTIONS(1203), + [anon_sym_isize] = ACTIONS(1203), + [anon_sym_usize] = ACTIONS(1203), + [anon_sym_f32] = ACTIONS(1203), + [anon_sym_f64] = ACTIONS(1203), + [anon_sym_c_char] = ACTIONS(1203), + [anon_sym_c_schar] = ACTIONS(1203), + [anon_sym_c_uchar] = ACTIONS(1203), + [anon_sym_c_short] = ACTIONS(1203), + [anon_sym_c_ushort] = ACTIONS(1203), + [anon_sym_c_int] = ACTIONS(1203), + [anon_sym_c_uint] = ACTIONS(1203), + [anon_sym_c_long] = ACTIONS(1203), + [anon_sym_c_ulong] = ACTIONS(1203), + [anon_sym_c_longlong] = ACTIONS(1203), + [anon_sym_c_ulonglong] = ACTIONS(1203), + [anon_sym_c_float] = ACTIONS(1203), + [anon_sym_c_double] = ACTIONS(1203), + [anon_sym_c_longdouble] = ACTIONS(1203), + [anon_sym_return] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1203), + [anon_sym_continue] = ACTIONS(1203), + [anon_sym_defer] = ACTIONS(1203), + [anon_sym_errdefer] = ACTIONS(1203), + [anon_sym_if] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_while] = ACTIONS(1203), + [anon_sym_expand] = ACTIONS(1203), + [anon_sym_for] = ACTIONS(1203), + [anon_sym_match] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1201), + [anon_sym_orelse] = ACTIONS(1203), + [anon_sym_catch] = ACTIONS(1203), + [anon_sym_or] = ACTIONS(1203), + [anon_sym_and] = ACTIONS(1203), + [anon_sym_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_LT_EQ] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_AMP] = ACTIONS(1201), + [anon_sym_xor] = ACTIONS(1203), + [anon_sym_LT_LT] = ACTIONS(1203), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT_PIPE] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1201), + [anon_sym_SLASH] = ACTIONS(1201), + [anon_sym_TILDE] = ACTIONS(1201), + [anon_sym_try] = ACTIONS(1203), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1203), + [anon_sym_false] = ACTIONS(1203), + [sym_none] = ACTIONS(1203), + [sym_undefined] = ACTIONS(1203), + [sym_sink] = ACTIONS(1203), + [sym_integer] = ACTIONS(1203), + [sym_float] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1201), + [sym_multiline_string] = ACTIONS(1201), + [sym_character] = ACTIONS(1201), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1201), + }, + [STATE(617)] = { + [ts_builtin_sym_end] = ACTIONS(1173), + [sym_identifier] = ACTIONS(1175), + [anon_sym_COLON_COLON] = ACTIONS(1173), + [anon_sym_import] = ACTIONS(1175), + [anon_sym_test] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), + [anon_sym_func] = ACTIONS(1175), + [anon_sym_BANG] = ACTIONS(1175), + [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_struct] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1173), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_COMMA] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_DASH] = ACTIONS(1173), + [anon_sym_DOLLAR] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1173), + [anon_sym_QMARK] = ACTIONS(1173), + [anon_sym_STAR] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1173), + [anon_sym_void] = ACTIONS(1175), + [anon_sym_anyopaque] = ACTIONS(1175), + [anon_sym_bool] = ACTIONS(1175), + [anon_sym_int] = ACTIONS(1175), + [anon_sym_uint] = ACTIONS(1175), + [anon_sym_float] = ACTIONS(1175), + [anon_sym_range] = ACTIONS(1175), + [anon_sym_i8] = ACTIONS(1175), + [anon_sym_i16] = ACTIONS(1175), + [anon_sym_i32] = ACTIONS(1175), + [anon_sym_i64] = ACTIONS(1175), + [anon_sym_u8] = ACTIONS(1175), + [anon_sym_u16] = ACTIONS(1175), + [anon_sym_u32] = ACTIONS(1175), + [anon_sym_u64] = ACTIONS(1175), + [anon_sym_isize] = ACTIONS(1175), + [anon_sym_usize] = ACTIONS(1175), + [anon_sym_f32] = ACTIONS(1175), + [anon_sym_f64] = ACTIONS(1175), + [anon_sym_c_char] = ACTIONS(1175), + [anon_sym_c_schar] = ACTIONS(1175), + [anon_sym_c_uchar] = ACTIONS(1175), + [anon_sym_c_short] = ACTIONS(1175), + [anon_sym_c_ushort] = ACTIONS(1175), + [anon_sym_c_int] = ACTIONS(1175), + [anon_sym_c_uint] = ACTIONS(1175), + [anon_sym_c_long] = ACTIONS(1175), + [anon_sym_c_ulong] = ACTIONS(1175), + [anon_sym_c_longlong] = ACTIONS(1175), + [anon_sym_c_ulonglong] = ACTIONS(1175), + [anon_sym_c_float] = ACTIONS(1175), + [anon_sym_c_double] = ACTIONS(1175), + [anon_sym_c_longdouble] = ACTIONS(1175), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_yield] = ACTIONS(1175), + [anon_sym_COLON] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1175), + [anon_sym_continue] = ACTIONS(1175), + [anon_sym_defer] = ACTIONS(1175), + [anon_sym_errdefer] = ACTIONS(1175), + [anon_sym_if] = ACTIONS(1175), + [anon_sym_else] = ACTIONS(1175), + [anon_sym_while] = ACTIONS(1175), + [anon_sym_expand] = ACTIONS(1175), + [anon_sym_for] = ACTIONS(1175), + [anon_sym_match] = ACTIONS(1175), + [anon_sym_DOT_DOT] = ACTIONS(1175), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1173), + [anon_sym_orelse] = ACTIONS(1175), + [anon_sym_catch] = ACTIONS(1175), + [anon_sym_or] = ACTIONS(1175), + [anon_sym_and] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1173), + [anon_sym_BANG_EQ] = ACTIONS(1173), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1173), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1173), + [anon_sym_AMP] = ACTIONS(1173), + [anon_sym_xor] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(1175), + [anon_sym_GT_GT] = ACTIONS(1173), + [anon_sym_LT_LT_PIPE] = ACTIONS(1173), + [anon_sym_PLUS] = ACTIONS(1173), + [anon_sym_SLASH] = ACTIONS(1173), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_try] = ACTIONS(1175), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_CARET] = ACTIONS(1173), + [anon_sym_true] = ACTIONS(1175), + [anon_sym_false] = ACTIONS(1175), + [sym_none] = ACTIONS(1175), + [sym_undefined] = ACTIONS(1175), + [sym_sink] = ACTIONS(1175), + [sym_integer] = ACTIONS(1175), + [sym_float] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(1173), + [sym_multiline_string] = ACTIONS(1173), + [sym_character] = ACTIONS(1173), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1173), + }, + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(1207), + [anon_sym_COLON_COLON] = ACTIONS(1205), + [anon_sym_import] = ACTIONS(1207), + [anon_sym_test] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), + [anon_sym_func] = ACTIONS(1207), + [anon_sym_BANG] = ACTIONS(1207), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [anon_sym_RPAREN] = ACTIONS(1205), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1205), + [anon_sym_PIPE] = ACTIONS(1205), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1205), + [anon_sym_void] = ACTIONS(1207), + [anon_sym_anyopaque] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_int] = ACTIONS(1207), + [anon_sym_uint] = ACTIONS(1207), + [anon_sym_float] = ACTIONS(1207), + [anon_sym_range] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_c_char] = ACTIONS(1207), + [anon_sym_c_schar] = ACTIONS(1207), + [anon_sym_c_uchar] = ACTIONS(1207), + [anon_sym_c_short] = ACTIONS(1207), + [anon_sym_c_ushort] = ACTIONS(1207), + [anon_sym_c_int] = ACTIONS(1207), + [anon_sym_c_uint] = ACTIONS(1207), + [anon_sym_c_long] = ACTIONS(1207), + [anon_sym_c_ulong] = ACTIONS(1207), + [anon_sym_c_longlong] = ACTIONS(1207), + [anon_sym_c_ulonglong] = ACTIONS(1207), + [anon_sym_c_float] = ACTIONS(1207), + [anon_sym_c_double] = ACTIONS(1207), + [anon_sym_c_longdouble] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_COLON] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_defer] = ACTIONS(1207), + [anon_sym_errdefer] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_expand] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_match] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1205), + [anon_sym_orelse] = ACTIONS(1207), + [anon_sym_catch] = ACTIONS(1207), + [anon_sym_or] = ACTIONS(1207), + [anon_sym_and] = ACTIONS(1207), + [anon_sym_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_xor] = ACTIONS(1207), + [anon_sym_LT_LT] = ACTIONS(1207), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT_PIPE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_true] = ACTIONS(1207), + [anon_sym_false] = ACTIONS(1207), + [sym_none] = ACTIONS(1207), + [sym_undefined] = ACTIONS(1207), + [sym_sink] = ACTIONS(1207), + [sym_integer] = ACTIONS(1207), + [sym_float] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1205), + [sym_multiline_string] = ACTIONS(1205), + [sym_character] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1205), + }, + [STATE(619)] = { + [ts_builtin_sym_end] = ACTIONS(1177), + [sym_identifier] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(1177), + [anon_sym_import] = ACTIONS(1179), + [anon_sym_test] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), + [anon_sym_func] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_struct] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(1177), + [anon_sym_COMMA] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1177), + [anon_sym_STAR] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_void] = ACTIONS(1179), + [anon_sym_anyopaque] = ACTIONS(1179), + [anon_sym_bool] = ACTIONS(1179), + [anon_sym_int] = ACTIONS(1179), + [anon_sym_uint] = ACTIONS(1179), + [anon_sym_float] = ACTIONS(1179), + [anon_sym_range] = ACTIONS(1179), + [anon_sym_i8] = ACTIONS(1179), + [anon_sym_i16] = ACTIONS(1179), + [anon_sym_i32] = ACTIONS(1179), + [anon_sym_i64] = ACTIONS(1179), + [anon_sym_u8] = ACTIONS(1179), + [anon_sym_u16] = ACTIONS(1179), + [anon_sym_u32] = ACTIONS(1179), + [anon_sym_u64] = ACTIONS(1179), + [anon_sym_isize] = ACTIONS(1179), + [anon_sym_usize] = ACTIONS(1179), + [anon_sym_f32] = ACTIONS(1179), + [anon_sym_f64] = ACTIONS(1179), + [anon_sym_c_char] = ACTIONS(1179), + [anon_sym_c_schar] = ACTIONS(1179), + [anon_sym_c_uchar] = ACTIONS(1179), + [anon_sym_c_short] = ACTIONS(1179), + [anon_sym_c_ushort] = ACTIONS(1179), + [anon_sym_c_int] = ACTIONS(1179), + [anon_sym_c_uint] = ACTIONS(1179), + [anon_sym_c_long] = ACTIONS(1179), + [anon_sym_c_ulong] = ACTIONS(1179), + [anon_sym_c_longlong] = ACTIONS(1179), + [anon_sym_c_ulonglong] = ACTIONS(1179), + [anon_sym_c_float] = ACTIONS(1179), + [anon_sym_c_double] = ACTIONS(1179), + [anon_sym_c_longdouble] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1179), + [anon_sym_yield] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_break] = ACTIONS(1179), + [anon_sym_continue] = ACTIONS(1179), + [anon_sym_defer] = ACTIONS(1179), + [anon_sym_errdefer] = ACTIONS(1179), + [anon_sym_if] = ACTIONS(1179), + [anon_sym_else] = ACTIONS(1179), + [anon_sym_while] = ACTIONS(1179), + [anon_sym_expand] = ACTIONS(1179), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_match] = ACTIONS(1179), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1177), + [anon_sym_orelse] = ACTIONS(1179), + [anon_sym_catch] = ACTIONS(1179), + [anon_sym_or] = ACTIONS(1179), + [anon_sym_and] = ACTIONS(1179), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP] = ACTIONS(1177), + [anon_sym_xor] = ACTIONS(1179), + [anon_sym_LT_LT] = ACTIONS(1179), + [anon_sym_GT_GT] = ACTIONS(1177), + [anon_sym_LT_LT_PIPE] = ACTIONS(1177), + [anon_sym_PLUS] = ACTIONS(1177), + [anon_sym_SLASH] = ACTIONS(1177), + [anon_sym_TILDE] = ACTIONS(1177), + [anon_sym_try] = ACTIONS(1179), + [anon_sym_DOT] = ACTIONS(1179), + [anon_sym_CARET] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(1179), + [anon_sym_false] = ACTIONS(1179), + [sym_none] = ACTIONS(1179), + [sym_undefined] = ACTIONS(1179), + [sym_sink] = ACTIONS(1179), + [sym_integer] = ACTIONS(1179), + [sym_float] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1177), + [sym_multiline_string] = ACTIONS(1177), + [sym_character] = ACTIONS(1177), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1177), + }, + [STATE(620)] = { + [ts_builtin_sym_end] = ACTIONS(1017), + [sym_identifier] = ACTIONS(1019), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym_import] = ACTIONS(1019), + [anon_sym_test] = ACTIONS(1019), + [anon_sym_hide] = ACTIONS(1019), + [anon_sym_func] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_PIPE] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_void] = ACTIONS(1019), + [anon_sym_anyopaque] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_int] = ACTIONS(1019), + [anon_sym_uint] = ACTIONS(1019), + [anon_sym_float] = ACTIONS(1019), + [anon_sym_range] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_c_char] = ACTIONS(1019), + [anon_sym_c_schar] = ACTIONS(1019), + [anon_sym_c_uchar] = ACTIONS(1019), + [anon_sym_c_short] = ACTIONS(1019), + [anon_sym_c_ushort] = ACTIONS(1019), + [anon_sym_c_int] = ACTIONS(1019), + [anon_sym_c_uint] = ACTIONS(1019), + [anon_sym_c_long] = ACTIONS(1019), + [anon_sym_c_ulong] = ACTIONS(1019), + [anon_sym_c_longlong] = ACTIONS(1019), + [anon_sym_c_ulonglong] = ACTIONS(1019), + [anon_sym_c_float] = ACTIONS(1019), + [anon_sym_c_double] = ACTIONS(1019), + [anon_sym_c_longdouble] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_yield] = ACTIONS(1019), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_defer] = ACTIONS(1019), + [anon_sym_errdefer] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_else] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_expand] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_orelse] = ACTIONS(1019), + [anon_sym_catch] = ACTIONS(1019), + [anon_sym_or] = ACTIONS(1019), + [anon_sym_and] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_xor] = ACTIONS(1019), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1017), + [anon_sym_LT_LT_PIPE] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1017), + [anon_sym_TILDE] = ACTIONS(1017), + [anon_sym_try] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [sym_none] = ACTIONS(1019), + [sym_undefined] = ACTIONS(1019), + [sym_sink] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1017), + [sym_multiline_string] = ACTIONS(1017), + [sym_character] = ACTIONS(1017), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1017), + }, + [STATE(621)] = { + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_identifier] = ACTIONS(1231), + [anon_sym_COLON_COLON] = ACTIONS(1229), + [anon_sym_import] = ACTIONS(1231), + [anon_sym_test] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), + [anon_sym_func] = ACTIONS(1231), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_struct] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1229), + [anon_sym_void] = ACTIONS(1231), + [anon_sym_anyopaque] = ACTIONS(1231), + [anon_sym_bool] = ACTIONS(1231), + [anon_sym_int] = ACTIONS(1231), + [anon_sym_uint] = ACTIONS(1231), + [anon_sym_float] = ACTIONS(1231), + [anon_sym_range] = ACTIONS(1231), + [anon_sym_i8] = ACTIONS(1231), + [anon_sym_i16] = ACTIONS(1231), + [anon_sym_i32] = ACTIONS(1231), + [anon_sym_i64] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1231), + [anon_sym_u16] = ACTIONS(1231), + [anon_sym_u32] = ACTIONS(1231), + [anon_sym_u64] = ACTIONS(1231), + [anon_sym_isize] = ACTIONS(1231), + [anon_sym_usize] = ACTIONS(1231), + [anon_sym_f32] = ACTIONS(1231), + [anon_sym_f64] = ACTIONS(1231), + [anon_sym_c_char] = ACTIONS(1231), + [anon_sym_c_schar] = ACTIONS(1231), + [anon_sym_c_uchar] = ACTIONS(1231), + [anon_sym_c_short] = ACTIONS(1231), + [anon_sym_c_ushort] = ACTIONS(1231), + [anon_sym_c_int] = ACTIONS(1231), + [anon_sym_c_uint] = ACTIONS(1231), + [anon_sym_c_long] = ACTIONS(1231), + [anon_sym_c_ulong] = ACTIONS(1231), + [anon_sym_c_longlong] = ACTIONS(1231), + [anon_sym_c_ulonglong] = ACTIONS(1231), + [anon_sym_c_float] = ACTIONS(1231), + [anon_sym_c_double] = ACTIONS(1231), + [anon_sym_c_longdouble] = ACTIONS(1231), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_yield] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(1231), + [anon_sym_defer] = ACTIONS(1231), + [anon_sym_errdefer] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1231), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_expand] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1231), + [anon_sym_match] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1229), + [anon_sym_orelse] = ACTIONS(1231), + [anon_sym_catch] = ACTIONS(1231), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1231), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_xor] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE] = ACTIONS(1229), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1229), + [anon_sym_try] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(1231), + [anon_sym_false] = ACTIONS(1231), + [sym_none] = ACTIONS(1231), + [sym_undefined] = ACTIONS(1231), + [sym_sink] = ACTIONS(1231), + [sym_integer] = ACTIONS(1231), + [sym_float] = ACTIONS(1229), + [anon_sym_DQUOTE] = ACTIONS(1229), + [sym_multiline_string] = ACTIONS(1229), + [sym_character] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1229), + }, + [STATE(622)] = { + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1109), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1109), + [anon_sym_test] = ACTIONS(1109), + [anon_sym_hide] = ACTIONS(1109), + [anon_sym_func] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1107), + [anon_sym_DOLLAR] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_void] = ACTIONS(1109), + [anon_sym_anyopaque] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_int] = ACTIONS(1109), + [anon_sym_uint] = ACTIONS(1109), + [anon_sym_float] = ACTIONS(1109), + [anon_sym_range] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_c_char] = ACTIONS(1109), + [anon_sym_c_schar] = ACTIONS(1109), + [anon_sym_c_uchar] = ACTIONS(1109), + [anon_sym_c_short] = ACTIONS(1109), + [anon_sym_c_ushort] = ACTIONS(1109), + [anon_sym_c_int] = ACTIONS(1109), + [anon_sym_c_uint] = ACTIONS(1109), + [anon_sym_c_long] = ACTIONS(1109), + [anon_sym_c_ulong] = ACTIONS(1109), + [anon_sym_c_longlong] = ACTIONS(1109), + [anon_sym_c_ulonglong] = ACTIONS(1109), + [anon_sym_c_float] = ACTIONS(1109), + [anon_sym_c_double] = ACTIONS(1109), + [anon_sym_c_longdouble] = ACTIONS(1109), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_COLON] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_defer] = ACTIONS(1109), + [anon_sym_errdefer] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_expand] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1109), + [anon_sym_DOT_DOT] = ACTIONS(1109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1107), + [anon_sym_orelse] = ACTIONS(1109), + [anon_sym_catch] = ACTIONS(1109), + [anon_sym_or] = ACTIONS(1109), + [anon_sym_and] = ACTIONS(1109), + [anon_sym_EQ_EQ] = ACTIONS(1107), + [anon_sym_BANG_EQ] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_xor] = ACTIONS(1109), + [anon_sym_LT_LT] = ACTIONS(1109), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_LT_LT_PIPE] = ACTIONS(1107), + [anon_sym_PLUS] = ACTIONS(1107), + [anon_sym_SLASH] = ACTIONS(1107), + [anon_sym_TILDE] = ACTIONS(1107), + [anon_sym_try] = ACTIONS(1109), + [anon_sym_DOT] = ACTIONS(1109), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_true] = ACTIONS(1109), + [anon_sym_false] = ACTIONS(1109), + [sym_none] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1109), + [sym_integer] = ACTIONS(1109), + [sym_float] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_multiline_string] = ACTIONS(1107), + [sym_character] = ACTIONS(1107), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1107), + }, + [STATE(623)] = { + [ts_builtin_sym_end] = ACTIONS(1165), + [sym_identifier] = ACTIONS(1167), + [anon_sym_COLON_COLON] = ACTIONS(1165), + [anon_sym_import] = ACTIONS(1167), + [anon_sym_test] = ACTIONS(1167), + [anon_sym_hide] = ACTIONS(1167), + [anon_sym_func] = ACTIONS(1167), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_struct] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_RPAREN] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(1165), + [anon_sym_COMMA] = ACTIONS(1165), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_DASH] = ACTIONS(1165), + [anon_sym_DOLLAR] = ACTIONS(1165), + [anon_sym_PIPE] = ACTIONS(1165), + [anon_sym_QMARK] = ACTIONS(1165), + [anon_sym_STAR] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1165), + [anon_sym_void] = ACTIONS(1167), + [anon_sym_anyopaque] = ACTIONS(1167), + [anon_sym_bool] = ACTIONS(1167), + [anon_sym_int] = ACTIONS(1167), + [anon_sym_uint] = ACTIONS(1167), + [anon_sym_float] = ACTIONS(1167), + [anon_sym_range] = ACTIONS(1167), + [anon_sym_i8] = ACTIONS(1167), + [anon_sym_i16] = ACTIONS(1167), + [anon_sym_i32] = ACTIONS(1167), + [anon_sym_i64] = ACTIONS(1167), + [anon_sym_u8] = ACTIONS(1167), + [anon_sym_u16] = ACTIONS(1167), + [anon_sym_u32] = ACTIONS(1167), + [anon_sym_u64] = ACTIONS(1167), + [anon_sym_isize] = ACTIONS(1167), + [anon_sym_usize] = ACTIONS(1167), + [anon_sym_f32] = ACTIONS(1167), + [anon_sym_f64] = ACTIONS(1167), + [anon_sym_c_char] = ACTIONS(1167), + [anon_sym_c_schar] = ACTIONS(1167), + [anon_sym_c_uchar] = ACTIONS(1167), + [anon_sym_c_short] = ACTIONS(1167), + [anon_sym_c_ushort] = ACTIONS(1167), + [anon_sym_c_int] = ACTIONS(1167), + [anon_sym_c_uint] = ACTIONS(1167), + [anon_sym_c_long] = ACTIONS(1167), + [anon_sym_c_ulong] = ACTIONS(1167), + [anon_sym_c_longlong] = ACTIONS(1167), + [anon_sym_c_ulonglong] = ACTIONS(1167), + [anon_sym_c_float] = ACTIONS(1167), + [anon_sym_c_double] = ACTIONS(1167), + [anon_sym_c_longdouble] = ACTIONS(1167), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_yield] = ACTIONS(1167), + [anon_sym_COLON] = ACTIONS(1167), + [anon_sym_break] = ACTIONS(1167), + [anon_sym_continue] = ACTIONS(1167), + [anon_sym_defer] = ACTIONS(1167), + [anon_sym_errdefer] = ACTIONS(1167), + [anon_sym_if] = ACTIONS(1167), + [anon_sym_else] = ACTIONS(1167), + [anon_sym_while] = ACTIONS(1167), + [anon_sym_expand] = ACTIONS(1167), + [anon_sym_for] = ACTIONS(1167), + [anon_sym_match] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(1167), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1165), + [anon_sym_orelse] = ACTIONS(1167), + [anon_sym_catch] = ACTIONS(1167), + [anon_sym_or] = ACTIONS(1167), + [anon_sym_and] = ACTIONS(1167), + [anon_sym_EQ_EQ] = ACTIONS(1165), + [anon_sym_BANG_EQ] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1167), + [anon_sym_LT_EQ] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1167), + [anon_sym_GT_EQ] = ACTIONS(1165), + [anon_sym_AMP] = ACTIONS(1165), + [anon_sym_xor] = ACTIONS(1167), + [anon_sym_LT_LT] = ACTIONS(1167), + [anon_sym_GT_GT] = ACTIONS(1165), + [anon_sym_LT_LT_PIPE] = ACTIONS(1165), + [anon_sym_PLUS] = ACTIONS(1165), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1165), + [anon_sym_try] = ACTIONS(1167), + [anon_sym_DOT] = ACTIONS(1167), + [anon_sym_CARET] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(1167), + [anon_sym_false] = ACTIONS(1167), + [sym_none] = ACTIONS(1167), + [sym_undefined] = ACTIONS(1167), + [sym_sink] = ACTIONS(1167), + [sym_integer] = ACTIONS(1167), + [sym_float] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1165), + [sym_multiline_string] = ACTIONS(1165), + [sym_character] = ACTIONS(1165), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1165), + }, + [STATE(624)] = { + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_identifier] = ACTIONS(1183), + [anon_sym_COLON_COLON] = ACTIONS(1181), + [anon_sym_import] = ACTIONS(1183), + [anon_sym_test] = ACTIONS(1183), + [anon_sym_hide] = ACTIONS(1183), + [anon_sym_func] = ACTIONS(1183), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_struct] = ACTIONS(1183), + [anon_sym_LPAREN] = ACTIONS(1181), + [anon_sym_RPAREN] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COMMA] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_DASH] = ACTIONS(1181), + [anon_sym_DOLLAR] = ACTIONS(1181), + [anon_sym_PIPE] = ACTIONS(1181), + [anon_sym_QMARK] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1181), + [anon_sym_void] = ACTIONS(1183), + [anon_sym_anyopaque] = ACTIONS(1183), + [anon_sym_bool] = ACTIONS(1183), + [anon_sym_int] = ACTIONS(1183), + [anon_sym_uint] = ACTIONS(1183), + [anon_sym_float] = ACTIONS(1183), + [anon_sym_range] = ACTIONS(1183), + [anon_sym_i8] = ACTIONS(1183), + [anon_sym_i16] = ACTIONS(1183), + [anon_sym_i32] = ACTIONS(1183), + [anon_sym_i64] = ACTIONS(1183), + [anon_sym_u8] = ACTIONS(1183), + [anon_sym_u16] = ACTIONS(1183), + [anon_sym_u32] = ACTIONS(1183), + [anon_sym_u64] = ACTIONS(1183), + [anon_sym_isize] = ACTIONS(1183), + [anon_sym_usize] = ACTIONS(1183), + [anon_sym_f32] = ACTIONS(1183), + [anon_sym_f64] = ACTIONS(1183), + [anon_sym_c_char] = ACTIONS(1183), + [anon_sym_c_schar] = ACTIONS(1183), + [anon_sym_c_uchar] = ACTIONS(1183), + [anon_sym_c_short] = ACTIONS(1183), + [anon_sym_c_ushort] = ACTIONS(1183), + [anon_sym_c_int] = ACTIONS(1183), + [anon_sym_c_uint] = ACTIONS(1183), + [anon_sym_c_long] = ACTIONS(1183), + [anon_sym_c_ulong] = ACTIONS(1183), + [anon_sym_c_longlong] = ACTIONS(1183), + [anon_sym_c_ulonglong] = ACTIONS(1183), + [anon_sym_c_float] = ACTIONS(1183), + [anon_sym_c_double] = ACTIONS(1183), + [anon_sym_c_longdouble] = ACTIONS(1183), + [anon_sym_return] = ACTIONS(1183), + [anon_sym_yield] = ACTIONS(1183), + [anon_sym_COLON] = ACTIONS(1183), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_defer] = ACTIONS(1183), + [anon_sym_errdefer] = ACTIONS(1183), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_else] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1183), + [anon_sym_expand] = ACTIONS(1183), + [anon_sym_for] = ACTIONS(1183), + [anon_sym_match] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1183), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1181), + [anon_sym_orelse] = ACTIONS(1183), + [anon_sym_catch] = ACTIONS(1183), + [anon_sym_or] = ACTIONS(1183), + [anon_sym_and] = ACTIONS(1183), + [anon_sym_EQ_EQ] = ACTIONS(1181), + [anon_sym_BANG_EQ] = ACTIONS(1181), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1181), + [anon_sym_GT] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1181), + [anon_sym_AMP] = ACTIONS(1181), + [anon_sym_xor] = ACTIONS(1183), + [anon_sym_LT_LT] = ACTIONS(1183), + [anon_sym_GT_GT] = ACTIONS(1181), + [anon_sym_LT_LT_PIPE] = ACTIONS(1181), + [anon_sym_PLUS] = ACTIONS(1181), + [anon_sym_SLASH] = ACTIONS(1181), + [anon_sym_TILDE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1183), + [anon_sym_DOT] = ACTIONS(1183), + [anon_sym_CARET] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(1183), + [anon_sym_false] = ACTIONS(1183), + [sym_none] = ACTIONS(1183), + [sym_undefined] = ACTIONS(1183), + [sym_sink] = ACTIONS(1183), + [sym_integer] = ACTIONS(1183), + [sym_float] = ACTIONS(1181), + [anon_sym_DQUOTE] = ACTIONS(1181), + [sym_multiline_string] = ACTIONS(1181), + [sym_character] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1181), + }, + [STATE(625)] = { + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1239), + [anon_sym_COLON_COLON] = ACTIONS(1237), + [anon_sym_import] = ACTIONS(1239), + [anon_sym_test] = ACTIONS(1239), + [anon_sym_hide] = ACTIONS(1239), + [anon_sym_func] = ACTIONS(1239), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DASH] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1237), + [anon_sym_QMARK] = ACTIONS(1237), + [anon_sym_STAR] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_void] = ACTIONS(1239), + [anon_sym_anyopaque] = ACTIONS(1239), + [anon_sym_bool] = ACTIONS(1239), + [anon_sym_int] = ACTIONS(1239), + [anon_sym_uint] = ACTIONS(1239), + [anon_sym_float] = ACTIONS(1239), + [anon_sym_range] = ACTIONS(1239), + [anon_sym_i8] = ACTIONS(1239), + [anon_sym_i16] = ACTIONS(1239), + [anon_sym_i32] = ACTIONS(1239), + [anon_sym_i64] = ACTIONS(1239), + [anon_sym_u8] = ACTIONS(1239), + [anon_sym_u16] = ACTIONS(1239), + [anon_sym_u32] = ACTIONS(1239), + [anon_sym_u64] = ACTIONS(1239), + [anon_sym_isize] = ACTIONS(1239), + [anon_sym_usize] = ACTIONS(1239), + [anon_sym_f32] = ACTIONS(1239), + [anon_sym_f64] = ACTIONS(1239), + [anon_sym_c_char] = ACTIONS(1239), + [anon_sym_c_schar] = ACTIONS(1239), + [anon_sym_c_uchar] = ACTIONS(1239), + [anon_sym_c_short] = ACTIONS(1239), + [anon_sym_c_ushort] = ACTIONS(1239), + [anon_sym_c_int] = ACTIONS(1239), + [anon_sym_c_uint] = ACTIONS(1239), + [anon_sym_c_long] = ACTIONS(1239), + [anon_sym_c_ulong] = ACTIONS(1239), + [anon_sym_c_longlong] = ACTIONS(1239), + [anon_sym_c_ulonglong] = ACTIONS(1239), + [anon_sym_c_float] = ACTIONS(1239), + [anon_sym_c_double] = ACTIONS(1239), + [anon_sym_c_longdouble] = ACTIONS(1239), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1239), + [anon_sym_break] = ACTIONS(1239), + [anon_sym_continue] = ACTIONS(1239), + [anon_sym_defer] = ACTIONS(1239), + [anon_sym_errdefer] = ACTIONS(1239), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1239), + [anon_sym_expand] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1239), + [anon_sym_DOT_DOT] = ACTIONS(1239), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1237), + [anon_sym_orelse] = ACTIONS(1239), + [anon_sym_catch] = ACTIONS(1239), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1239), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1237), + [anon_sym_xor] = ACTIONS(1239), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1237), + [anon_sym_LT_LT_PIPE] = ACTIONS(1237), + [anon_sym_PLUS] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1237), + [anon_sym_TILDE] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1237), + [anon_sym_true] = ACTIONS(1239), + [anon_sym_false] = ACTIONS(1239), + [sym_none] = ACTIONS(1239), + [sym_undefined] = ACTIONS(1239), + [sym_sink] = ACTIONS(1239), + [sym_integer] = ACTIONS(1239), + [sym_float] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1237), + [sym_multiline_string] = ACTIONS(1237), + [sym_character] = ACTIONS(1237), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1237), + }, + [STATE(626)] = { + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_identifier] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1241), + [anon_sym_import] = ACTIONS(1243), + [anon_sym_test] = ACTIONS(1243), + [anon_sym_hide] = ACTIONS(1243), + [anon_sym_func] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_struct] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DASH] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1241), + [anon_sym_void] = ACTIONS(1243), + [anon_sym_anyopaque] = ACTIONS(1243), + [anon_sym_bool] = ACTIONS(1243), + [anon_sym_int] = ACTIONS(1243), + [anon_sym_uint] = ACTIONS(1243), + [anon_sym_float] = ACTIONS(1243), + [anon_sym_range] = ACTIONS(1243), + [anon_sym_i8] = ACTIONS(1243), + [anon_sym_i16] = ACTIONS(1243), + [anon_sym_i32] = ACTIONS(1243), + [anon_sym_i64] = ACTIONS(1243), + [anon_sym_u8] = ACTIONS(1243), + [anon_sym_u16] = ACTIONS(1243), + [anon_sym_u32] = ACTIONS(1243), + [anon_sym_u64] = ACTIONS(1243), + [anon_sym_isize] = ACTIONS(1243), + [anon_sym_usize] = ACTIONS(1243), + [anon_sym_f32] = ACTIONS(1243), + [anon_sym_f64] = ACTIONS(1243), + [anon_sym_c_char] = ACTIONS(1243), + [anon_sym_c_schar] = ACTIONS(1243), + [anon_sym_c_uchar] = ACTIONS(1243), + [anon_sym_c_short] = ACTIONS(1243), + [anon_sym_c_ushort] = ACTIONS(1243), + [anon_sym_c_int] = ACTIONS(1243), + [anon_sym_c_uint] = ACTIONS(1243), + [anon_sym_c_long] = ACTIONS(1243), + [anon_sym_c_ulong] = ACTIONS(1243), + [anon_sym_c_longlong] = ACTIONS(1243), + [anon_sym_c_ulonglong] = ACTIONS(1243), + [anon_sym_c_float] = ACTIONS(1243), + [anon_sym_c_double] = ACTIONS(1243), + [anon_sym_c_longdouble] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(1243), + [anon_sym_yield] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_defer] = ACTIONS(1243), + [anon_sym_errdefer] = ACTIONS(1243), + [anon_sym_if] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1243), + [anon_sym_expand] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(1243), + [anon_sym_match] = ACTIONS(1243), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1241), + [anon_sym_orelse] = ACTIONS(1243), + [anon_sym_catch] = ACTIONS(1243), + [anon_sym_or] = ACTIONS(1243), + [anon_sym_and] = ACTIONS(1243), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1241), + [anon_sym_xor] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_LT_LT_PIPE] = ACTIONS(1241), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1241), + [anon_sym_TILDE] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(1243), + [anon_sym_false] = ACTIONS(1243), + [sym_none] = ACTIONS(1243), + [sym_undefined] = ACTIONS(1243), + [sym_sink] = ACTIONS(1243), + [sym_integer] = ACTIONS(1243), + [sym_float] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_multiline_string] = ACTIONS(1241), + [sym_character] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1241), + }, + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(1065), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_test] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1067), + [anon_sym_BANG] = ACTIONS(1067), + [anon_sym_EQ] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_void] = ACTIONS(1067), + [anon_sym_anyopaque] = ACTIONS(1067), + [anon_sym_bool] = ACTIONS(1067), + [anon_sym_int] = ACTIONS(1067), + [anon_sym_uint] = ACTIONS(1067), + [anon_sym_float] = ACTIONS(1067), + [anon_sym_range] = ACTIONS(1067), + [anon_sym_i8] = ACTIONS(1067), + [anon_sym_i16] = ACTIONS(1067), + [anon_sym_i32] = ACTIONS(1067), + [anon_sym_i64] = ACTIONS(1067), + [anon_sym_u8] = ACTIONS(1067), + [anon_sym_u16] = ACTIONS(1067), + [anon_sym_u32] = ACTIONS(1067), + [anon_sym_u64] = ACTIONS(1067), + [anon_sym_isize] = ACTIONS(1067), + [anon_sym_usize] = ACTIONS(1067), + [anon_sym_f32] = ACTIONS(1067), + [anon_sym_f64] = ACTIONS(1067), + [anon_sym_c_char] = ACTIONS(1067), + [anon_sym_c_schar] = ACTIONS(1067), + [anon_sym_c_uchar] = ACTIONS(1067), + [anon_sym_c_short] = ACTIONS(1067), + [anon_sym_c_ushort] = ACTIONS(1067), + [anon_sym_c_int] = ACTIONS(1067), + [anon_sym_c_uint] = ACTIONS(1067), + [anon_sym_c_long] = ACTIONS(1067), + [anon_sym_c_ulong] = ACTIONS(1067), + [anon_sym_c_longlong] = ACTIONS(1067), + [anon_sym_c_ulonglong] = ACTIONS(1067), + [anon_sym_c_float] = ACTIONS(1067), + [anon_sym_c_double] = ACTIONS(1067), + [anon_sym_c_longdouble] = ACTIONS(1067), + [anon_sym_return] = ACTIONS(1067), + [anon_sym_yield] = ACTIONS(1067), + [anon_sym_COLON] = ACTIONS(1067), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_defer] = ACTIONS(1067), + [anon_sym_errdefer] = ACTIONS(1067), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1067), + [anon_sym_expand] = ACTIONS(1067), + [anon_sym_for] = ACTIONS(1067), + [anon_sym_match] = ACTIONS(1067), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1065), + [anon_sym_orelse] = ACTIONS(1067), + [anon_sym_catch] = ACTIONS(1067), + [anon_sym_or] = ACTIONS(1067), + [anon_sym_and] = ACTIONS(1067), + [anon_sym_EQ_EQ] = ACTIONS(1065), + [anon_sym_BANG_EQ] = ACTIONS(1065), + [anon_sym_LT] = ACTIONS(1067), + [anon_sym_LT_EQ] = ACTIONS(1065), + [anon_sym_GT] = ACTIONS(1067), + [anon_sym_GT_EQ] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_xor] = ACTIONS(1067), + [anon_sym_LT_LT] = ACTIONS(1067), + [anon_sym_GT_GT] = ACTIONS(1065), + [anon_sym_LT_LT_PIPE] = ACTIONS(1065), + [anon_sym_PLUS] = ACTIONS(1065), + [anon_sym_SLASH] = ACTIONS(1065), + [anon_sym_TILDE] = ACTIONS(1065), + [anon_sym_try] = ACTIONS(1067), + [anon_sym_DOT] = ACTIONS(1067), + [anon_sym_CARET] = ACTIONS(1065), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [sym_none] = ACTIONS(1067), + [sym_undefined] = ACTIONS(1067), + [sym_sink] = ACTIONS(1067), + [sym_integer] = ACTIONS(1067), + [sym_float] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_multiline_string] = ACTIONS(1065), + [sym_character] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + }, + [STATE(628)] = { + [ts_builtin_sym_end] = ACTIONS(1185), + [sym_identifier] = ACTIONS(1187), + [anon_sym_COLON_COLON] = ACTIONS(1185), + [anon_sym_import] = ACTIONS(1187), + [anon_sym_test] = ACTIONS(1187), + [anon_sym_hide] = ACTIONS(1187), + [anon_sym_func] = ACTIONS(1187), + [anon_sym_BANG] = ACTIONS(1187), + [anon_sym_EQ] = ACTIONS(1187), + [anon_sym_struct] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1185), + [anon_sym_COMMA] = ACTIONS(1185), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_DASH] = ACTIONS(1185), + [anon_sym_DOLLAR] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1185), + [anon_sym_QMARK] = ACTIONS(1185), + [anon_sym_STAR] = ACTIONS(1185), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_void] = ACTIONS(1187), + [anon_sym_anyopaque] = ACTIONS(1187), + [anon_sym_bool] = ACTIONS(1187), + [anon_sym_int] = ACTIONS(1187), + [anon_sym_uint] = ACTIONS(1187), + [anon_sym_float] = ACTIONS(1187), + [anon_sym_range] = ACTIONS(1187), + [anon_sym_i8] = ACTIONS(1187), + [anon_sym_i16] = ACTIONS(1187), + [anon_sym_i32] = ACTIONS(1187), + [anon_sym_i64] = ACTIONS(1187), + [anon_sym_u8] = ACTIONS(1187), + [anon_sym_u16] = ACTIONS(1187), + [anon_sym_u32] = ACTIONS(1187), + [anon_sym_u64] = ACTIONS(1187), + [anon_sym_isize] = ACTIONS(1187), + [anon_sym_usize] = ACTIONS(1187), + [anon_sym_f32] = ACTIONS(1187), + [anon_sym_f64] = ACTIONS(1187), + [anon_sym_c_char] = ACTIONS(1187), + [anon_sym_c_schar] = ACTIONS(1187), + [anon_sym_c_uchar] = ACTIONS(1187), + [anon_sym_c_short] = ACTIONS(1187), + [anon_sym_c_ushort] = ACTIONS(1187), + [anon_sym_c_int] = ACTIONS(1187), + [anon_sym_c_uint] = ACTIONS(1187), + [anon_sym_c_long] = ACTIONS(1187), + [anon_sym_c_ulong] = ACTIONS(1187), + [anon_sym_c_longlong] = ACTIONS(1187), + [anon_sym_c_ulonglong] = ACTIONS(1187), + [anon_sym_c_float] = ACTIONS(1187), + [anon_sym_c_double] = ACTIONS(1187), + [anon_sym_c_longdouble] = ACTIONS(1187), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_yield] = ACTIONS(1187), + [anon_sym_COLON] = ACTIONS(1187), + [anon_sym_break] = ACTIONS(1187), + [anon_sym_continue] = ACTIONS(1187), + [anon_sym_defer] = ACTIONS(1187), + [anon_sym_errdefer] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1187), + [anon_sym_else] = ACTIONS(1187), + [anon_sym_while] = ACTIONS(1187), + [anon_sym_expand] = ACTIONS(1187), + [anon_sym_for] = ACTIONS(1187), + [anon_sym_match] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1185), + [anon_sym_orelse] = ACTIONS(1187), + [anon_sym_catch] = ACTIONS(1187), + [anon_sym_or] = ACTIONS(1187), + [anon_sym_and] = ACTIONS(1187), + [anon_sym_EQ_EQ] = ACTIONS(1185), + [anon_sym_BANG_EQ] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1187), + [anon_sym_LT_EQ] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1187), + [anon_sym_GT_EQ] = ACTIONS(1185), + [anon_sym_AMP] = ACTIONS(1185), + [anon_sym_xor] = ACTIONS(1187), + [anon_sym_LT_LT] = ACTIONS(1187), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_LT_LT_PIPE] = ACTIONS(1185), + [anon_sym_PLUS] = ACTIONS(1185), + [anon_sym_SLASH] = ACTIONS(1185), + [anon_sym_TILDE] = ACTIONS(1185), + [anon_sym_try] = ACTIONS(1187), + [anon_sym_DOT] = ACTIONS(1187), + [anon_sym_CARET] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(1187), + [anon_sym_false] = ACTIONS(1187), + [sym_none] = ACTIONS(1187), + [sym_undefined] = ACTIONS(1187), + [sym_sink] = ACTIONS(1187), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1185), + [anon_sym_DQUOTE] = ACTIONS(1185), + [sym_multiline_string] = ACTIONS(1185), + [sym_character] = ACTIONS(1185), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1185), + }, + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_identifier] = ACTIONS(1075), + [anon_sym_COLON_COLON] = ACTIONS(1073), + [anon_sym_import] = ACTIONS(1075), + [anon_sym_test] = ACTIONS(1075), + [anon_sym_hide] = ACTIONS(1075), + [anon_sym_func] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_EQ] = ACTIONS(1075), + [anon_sym_struct] = ACTIONS(1075), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_COMMA] = ACTIONS(1073), + [anon_sym_RBRACE] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1073), + [anon_sym_DOLLAR] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1073), + [anon_sym_QMARK] = ACTIONS(1073), + [anon_sym_STAR] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1073), + [anon_sym_void] = ACTIONS(1075), + [anon_sym_anyopaque] = ACTIONS(1075), + [anon_sym_bool] = ACTIONS(1075), + [anon_sym_int] = ACTIONS(1075), + [anon_sym_uint] = ACTIONS(1075), + [anon_sym_float] = ACTIONS(1075), + [anon_sym_range] = ACTIONS(1075), + [anon_sym_i8] = ACTIONS(1075), + [anon_sym_i16] = ACTIONS(1075), + [anon_sym_i32] = ACTIONS(1075), + [anon_sym_i64] = ACTIONS(1075), + [anon_sym_u8] = ACTIONS(1075), + [anon_sym_u16] = ACTIONS(1075), + [anon_sym_u32] = ACTIONS(1075), + [anon_sym_u64] = ACTIONS(1075), + [anon_sym_isize] = ACTIONS(1075), + [anon_sym_usize] = ACTIONS(1075), + [anon_sym_f32] = ACTIONS(1075), + [anon_sym_f64] = ACTIONS(1075), + [anon_sym_c_char] = ACTIONS(1075), + [anon_sym_c_schar] = ACTIONS(1075), + [anon_sym_c_uchar] = ACTIONS(1075), + [anon_sym_c_short] = ACTIONS(1075), + [anon_sym_c_ushort] = ACTIONS(1075), + [anon_sym_c_int] = ACTIONS(1075), + [anon_sym_c_uint] = ACTIONS(1075), + [anon_sym_c_long] = ACTIONS(1075), + [anon_sym_c_ulong] = ACTIONS(1075), + [anon_sym_c_longlong] = ACTIONS(1075), + [anon_sym_c_ulonglong] = ACTIONS(1075), + [anon_sym_c_float] = ACTIONS(1075), + [anon_sym_c_double] = ACTIONS(1075), + [anon_sym_c_longdouble] = ACTIONS(1075), + [anon_sym_return] = ACTIONS(1075), + [anon_sym_yield] = ACTIONS(1075), + [anon_sym_COLON] = ACTIONS(1075), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_defer] = ACTIONS(1075), + [anon_sym_errdefer] = ACTIONS(1075), + [anon_sym_if] = ACTIONS(1075), + [anon_sym_else] = ACTIONS(1075), + [anon_sym_while] = ACTIONS(1075), + [anon_sym_expand] = ACTIONS(1075), + [anon_sym_for] = ACTIONS(1075), + [anon_sym_match] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1073), + [anon_sym_orelse] = ACTIONS(1075), + [anon_sym_catch] = ACTIONS(1075), + [anon_sym_or] = ACTIONS(1075), + [anon_sym_and] = ACTIONS(1075), + [anon_sym_EQ_EQ] = ACTIONS(1073), + [anon_sym_BANG_EQ] = ACTIONS(1073), + [anon_sym_LT] = ACTIONS(1075), + [anon_sym_LT_EQ] = ACTIONS(1073), + [anon_sym_GT] = ACTIONS(1075), + [anon_sym_GT_EQ] = ACTIONS(1073), + [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_xor] = ACTIONS(1075), + [anon_sym_LT_LT] = ACTIONS(1075), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LT_LT_PIPE] = ACTIONS(1073), + [anon_sym_PLUS] = ACTIONS(1073), + [anon_sym_SLASH] = ACTIONS(1073), + [anon_sym_TILDE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1075), + [anon_sym_DOT] = ACTIONS(1075), + [anon_sym_CARET] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [sym_none] = ACTIONS(1075), + [sym_undefined] = ACTIONS(1075), + [sym_sink] = ACTIONS(1075), + [sym_integer] = ACTIONS(1075), + [sym_float] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1073), + [sym_multiline_string] = ACTIONS(1073), + [sym_character] = ACTIONS(1073), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1073), + }, + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(1209), + [sym_identifier] = ACTIONS(1211), + [anon_sym_COLON_COLON] = ACTIONS(1209), + [anon_sym_import] = ACTIONS(1211), + [anon_sym_test] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), + [anon_sym_func] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1211), + [anon_sym_struct] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_RPAREN] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_COMMA] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_DOLLAR] = ACTIONS(1209), + [anon_sym_PIPE] = ACTIONS(1209), + [anon_sym_QMARK] = ACTIONS(1209), + [anon_sym_STAR] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_void] = ACTIONS(1211), + [anon_sym_anyopaque] = ACTIONS(1211), + [anon_sym_bool] = ACTIONS(1211), + [anon_sym_int] = ACTIONS(1211), + [anon_sym_uint] = ACTIONS(1211), + [anon_sym_float] = ACTIONS(1211), + [anon_sym_range] = ACTIONS(1211), + [anon_sym_i8] = ACTIONS(1211), + [anon_sym_i16] = ACTIONS(1211), + [anon_sym_i32] = ACTIONS(1211), + [anon_sym_i64] = ACTIONS(1211), + [anon_sym_u8] = ACTIONS(1211), + [anon_sym_u16] = ACTIONS(1211), + [anon_sym_u32] = ACTIONS(1211), + [anon_sym_u64] = ACTIONS(1211), + [anon_sym_isize] = ACTIONS(1211), + [anon_sym_usize] = ACTIONS(1211), + [anon_sym_f32] = ACTIONS(1211), + [anon_sym_f64] = ACTIONS(1211), + [anon_sym_c_char] = ACTIONS(1211), + [anon_sym_c_schar] = ACTIONS(1211), + [anon_sym_c_uchar] = ACTIONS(1211), + [anon_sym_c_short] = ACTIONS(1211), + [anon_sym_c_ushort] = ACTIONS(1211), + [anon_sym_c_int] = ACTIONS(1211), + [anon_sym_c_uint] = ACTIONS(1211), + [anon_sym_c_long] = ACTIONS(1211), + [anon_sym_c_ulong] = ACTIONS(1211), + [anon_sym_c_longlong] = ACTIONS(1211), + [anon_sym_c_ulonglong] = ACTIONS(1211), + [anon_sym_c_float] = ACTIONS(1211), + [anon_sym_c_double] = ACTIONS(1211), + [anon_sym_c_longdouble] = ACTIONS(1211), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(1211), + [anon_sym_COLON] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1211), + [anon_sym_continue] = ACTIONS(1211), + [anon_sym_defer] = ACTIONS(1211), + [anon_sym_errdefer] = ACTIONS(1211), + [anon_sym_if] = ACTIONS(1211), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_expand] = ACTIONS(1211), + [anon_sym_for] = ACTIONS(1211), + [anon_sym_match] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1209), + [anon_sym_orelse] = ACTIONS(1211), + [anon_sym_catch] = ACTIONS(1211), + [anon_sym_or] = ACTIONS(1211), + [anon_sym_and] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1209), + [anon_sym_BANG_EQ] = ACTIONS(1209), + [anon_sym_LT] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1211), + [anon_sym_GT_EQ] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1209), + [anon_sym_xor] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1209), + [anon_sym_LT_LT_PIPE] = ACTIONS(1209), + [anon_sym_PLUS] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1209), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_try] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_CARET] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1211), + [anon_sym_false] = ACTIONS(1211), + [sym_none] = ACTIONS(1211), + [sym_undefined] = ACTIONS(1211), + [sym_sink] = ACTIONS(1211), + [sym_integer] = ACTIONS(1211), + [sym_float] = ACTIONS(1209), + [anon_sym_DQUOTE] = ACTIONS(1209), + [sym_multiline_string] = ACTIONS(1209), + [sym_character] = ACTIONS(1209), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1209), + }, + [STATE(631)] = { + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_COLON_COLON] = ACTIONS(1111), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_test] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(1111), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_LBRACK] = ACTIONS(1111), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_uint] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_expand] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_xor] = ACTIONS(1113), + [anon_sym_LT_LT] = ACTIONS(1113), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_LT_LT_PIPE] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1111), + [anon_sym_TILDE] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(632)] = { + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [anon_sym_COLON_COLON] = ACTIONS(1115), + [anon_sym_import] = ACTIONS(1117), + [anon_sym_test] = ACTIONS(1117), + [anon_sym_hide] = ACTIONS(1117), + [anon_sym_func] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1115), + [anon_sym_DOLLAR] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1115), + [anon_sym_QMARK] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_void] = ACTIONS(1117), + [anon_sym_anyopaque] = ACTIONS(1117), + [anon_sym_bool] = ACTIONS(1117), + [anon_sym_int] = ACTIONS(1117), + [anon_sym_uint] = ACTIONS(1117), + [anon_sym_float] = ACTIONS(1117), + [anon_sym_range] = ACTIONS(1117), + [anon_sym_i8] = ACTIONS(1117), + [anon_sym_i16] = ACTIONS(1117), + [anon_sym_i32] = ACTIONS(1117), + [anon_sym_i64] = ACTIONS(1117), + [anon_sym_u8] = ACTIONS(1117), + [anon_sym_u16] = ACTIONS(1117), + [anon_sym_u32] = ACTIONS(1117), + [anon_sym_u64] = ACTIONS(1117), + [anon_sym_isize] = ACTIONS(1117), + [anon_sym_usize] = ACTIONS(1117), + [anon_sym_f32] = ACTIONS(1117), + [anon_sym_f64] = ACTIONS(1117), + [anon_sym_c_char] = ACTIONS(1117), + [anon_sym_c_schar] = ACTIONS(1117), + [anon_sym_c_uchar] = ACTIONS(1117), + [anon_sym_c_short] = ACTIONS(1117), + [anon_sym_c_ushort] = ACTIONS(1117), + [anon_sym_c_int] = ACTIONS(1117), + [anon_sym_c_uint] = ACTIONS(1117), + [anon_sym_c_long] = ACTIONS(1117), + [anon_sym_c_ulong] = ACTIONS(1117), + [anon_sym_c_longlong] = ACTIONS(1117), + [anon_sym_c_ulonglong] = ACTIONS(1117), + [anon_sym_c_float] = ACTIONS(1117), + [anon_sym_c_double] = ACTIONS(1117), + [anon_sym_c_longdouble] = ACTIONS(1117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_defer] = ACTIONS(1117), + [anon_sym_errdefer] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_expand] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), + [anon_sym_orelse] = ACTIONS(1117), + [anon_sym_catch] = ACTIONS(1117), + [anon_sym_or] = ACTIONS(1117), + [anon_sym_and] = ACTIONS(1117), + [anon_sym_EQ_EQ] = ACTIONS(1115), + [anon_sym_BANG_EQ] = ACTIONS(1115), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_xor] = ACTIONS(1117), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(1115), + [anon_sym_LT_LT_PIPE] = ACTIONS(1115), + [anon_sym_PLUS] = ACTIONS(1115), + [anon_sym_SLASH] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1115), + [anon_sym_try] = ACTIONS(1117), + [anon_sym_DOT] = ACTIONS(1117), + [anon_sym_CARET] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1117), + [anon_sym_false] = ACTIONS(1117), + [sym_none] = ACTIONS(1117), + [sym_undefined] = ACTIONS(1117), + [sym_sink] = ACTIONS(1117), + [sym_integer] = ACTIONS(1117), + [sym_float] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_multiline_string] = ACTIONS(1115), + [sym_character] = ACTIONS(1115), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1115), + }, + [STATE(633)] = { + [ts_builtin_sym_end] = ACTIONS(1161), + [sym_identifier] = ACTIONS(1163), + [anon_sym_COLON_COLON] = ACTIONS(1161), + [anon_sym_import] = ACTIONS(1163), + [anon_sym_test] = ACTIONS(1163), + [anon_sym_hide] = ACTIONS(1163), + [anon_sym_func] = ACTIONS(1163), + [anon_sym_BANG] = ACTIONS(1163), + [anon_sym_EQ] = ACTIONS(1163), + [anon_sym_struct] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1161), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1161), + [anon_sym_COMMA] = ACTIONS(1161), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_DASH] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1161), + [anon_sym_QMARK] = ACTIONS(1161), + [anon_sym_STAR] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_void] = ACTIONS(1163), + [anon_sym_anyopaque] = ACTIONS(1163), + [anon_sym_bool] = ACTIONS(1163), + [anon_sym_int] = ACTIONS(1163), + [anon_sym_uint] = ACTIONS(1163), + [anon_sym_float] = ACTIONS(1163), + [anon_sym_range] = ACTIONS(1163), + [anon_sym_i8] = ACTIONS(1163), + [anon_sym_i16] = ACTIONS(1163), + [anon_sym_i32] = ACTIONS(1163), + [anon_sym_i64] = ACTIONS(1163), + [anon_sym_u8] = ACTIONS(1163), + [anon_sym_u16] = ACTIONS(1163), + [anon_sym_u32] = ACTIONS(1163), + [anon_sym_u64] = ACTIONS(1163), + [anon_sym_isize] = ACTIONS(1163), + [anon_sym_usize] = ACTIONS(1163), + [anon_sym_f32] = ACTIONS(1163), + [anon_sym_f64] = ACTIONS(1163), + [anon_sym_c_char] = ACTIONS(1163), + [anon_sym_c_schar] = ACTIONS(1163), + [anon_sym_c_uchar] = ACTIONS(1163), + [anon_sym_c_short] = ACTIONS(1163), + [anon_sym_c_ushort] = ACTIONS(1163), + [anon_sym_c_int] = ACTIONS(1163), + [anon_sym_c_uint] = ACTIONS(1163), + [anon_sym_c_long] = ACTIONS(1163), + [anon_sym_c_ulong] = ACTIONS(1163), + [anon_sym_c_longlong] = ACTIONS(1163), + [anon_sym_c_ulonglong] = ACTIONS(1163), + [anon_sym_c_float] = ACTIONS(1163), + [anon_sym_c_double] = ACTIONS(1163), + [anon_sym_c_longdouble] = ACTIONS(1163), + [anon_sym_return] = ACTIONS(1163), + [anon_sym_yield] = ACTIONS(1163), + [anon_sym_COLON] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1163), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_defer] = ACTIONS(1163), + [anon_sym_errdefer] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1163), + [anon_sym_else] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_expand] = ACTIONS(1163), + [anon_sym_for] = ACTIONS(1163), + [anon_sym_match] = ACTIONS(1163), + [anon_sym_DOT_DOT] = ACTIONS(1163), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1161), + [anon_sym_orelse] = ACTIONS(1163), + [anon_sym_catch] = ACTIONS(1163), + [anon_sym_or] = ACTIONS(1163), + [anon_sym_and] = ACTIONS(1163), + [anon_sym_EQ_EQ] = ACTIONS(1161), + [anon_sym_BANG_EQ] = ACTIONS(1161), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_LT_EQ] = ACTIONS(1161), + [anon_sym_GT] = ACTIONS(1163), + [anon_sym_GT_EQ] = ACTIONS(1161), + [anon_sym_AMP] = ACTIONS(1161), + [anon_sym_xor] = ACTIONS(1163), + [anon_sym_LT_LT] = ACTIONS(1163), + [anon_sym_GT_GT] = ACTIONS(1161), + [anon_sym_LT_LT_PIPE] = ACTIONS(1161), + [anon_sym_PLUS] = ACTIONS(1161), + [anon_sym_SLASH] = ACTIONS(1161), + [anon_sym_TILDE] = ACTIONS(1161), + [anon_sym_try] = ACTIONS(1163), + [anon_sym_DOT] = ACTIONS(1163), + [anon_sym_CARET] = ACTIONS(1161), + [anon_sym_true] = ACTIONS(1163), + [anon_sym_false] = ACTIONS(1163), + [sym_none] = ACTIONS(1163), + [sym_undefined] = ACTIONS(1163), + [sym_sink] = ACTIONS(1163), + [sym_integer] = ACTIONS(1163), + [sym_float] = ACTIONS(1161), + [anon_sym_DQUOTE] = ACTIONS(1161), + [sym_multiline_string] = ACTIONS(1161), + [sym_character] = ACTIONS(1161), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1161), + }, + [STATE(634)] = { + [ts_builtin_sym_end] = ACTIONS(1077), + [sym_identifier] = ACTIONS(1079), + [anon_sym_COLON_COLON] = ACTIONS(1077), + [anon_sym_import] = ACTIONS(1079), + [anon_sym_test] = ACTIONS(1079), + [anon_sym_hide] = ACTIONS(1079), + [anon_sym_func] = ACTIONS(1079), + [anon_sym_BANG] = ACTIONS(1079), + [anon_sym_EQ] = ACTIONS(1079), + [anon_sym_struct] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1077), + [anon_sym_RPAREN] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1077), + [anon_sym_COMMA] = ACTIONS(1077), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_DASH] = ACTIONS(1077), + [anon_sym_DOLLAR] = ACTIONS(1077), + [anon_sym_PIPE] = ACTIONS(1077), + [anon_sym_QMARK] = ACTIONS(1077), + [anon_sym_STAR] = ACTIONS(1077), + [anon_sym_LBRACK] = ACTIONS(1077), + [anon_sym_void] = ACTIONS(1079), + [anon_sym_anyopaque] = ACTIONS(1079), + [anon_sym_bool] = ACTIONS(1079), + [anon_sym_int] = ACTIONS(1079), + [anon_sym_uint] = ACTIONS(1079), + [anon_sym_float] = ACTIONS(1079), + [anon_sym_range] = ACTIONS(1079), + [anon_sym_i8] = ACTIONS(1079), + [anon_sym_i16] = ACTIONS(1079), + [anon_sym_i32] = ACTIONS(1079), + [anon_sym_i64] = ACTIONS(1079), + [anon_sym_u8] = ACTIONS(1079), + [anon_sym_u16] = ACTIONS(1079), + [anon_sym_u32] = ACTIONS(1079), + [anon_sym_u64] = ACTIONS(1079), + [anon_sym_isize] = ACTIONS(1079), + [anon_sym_usize] = ACTIONS(1079), + [anon_sym_f32] = ACTIONS(1079), + [anon_sym_f64] = ACTIONS(1079), + [anon_sym_c_char] = ACTIONS(1079), + [anon_sym_c_schar] = ACTIONS(1079), + [anon_sym_c_uchar] = ACTIONS(1079), + [anon_sym_c_short] = ACTIONS(1079), + [anon_sym_c_ushort] = ACTIONS(1079), + [anon_sym_c_int] = ACTIONS(1079), + [anon_sym_c_uint] = ACTIONS(1079), + [anon_sym_c_long] = ACTIONS(1079), + [anon_sym_c_ulong] = ACTIONS(1079), + [anon_sym_c_longlong] = ACTIONS(1079), + [anon_sym_c_ulonglong] = ACTIONS(1079), + [anon_sym_c_float] = ACTIONS(1079), + [anon_sym_c_double] = ACTIONS(1079), + [anon_sym_c_longdouble] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_yield] = ACTIONS(1079), + [anon_sym_COLON] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1079), + [anon_sym_continue] = ACTIONS(1079), + [anon_sym_defer] = ACTIONS(1079), + [anon_sym_errdefer] = ACTIONS(1079), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_else] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1079), + [anon_sym_expand] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1079), + [anon_sym_match] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1077), + [anon_sym_orelse] = ACTIONS(1079), + [anon_sym_catch] = ACTIONS(1079), + [anon_sym_or] = ACTIONS(1079), + [anon_sym_and] = ACTIONS(1079), + [anon_sym_EQ_EQ] = ACTIONS(1077), + [anon_sym_BANG_EQ] = ACTIONS(1077), + [anon_sym_LT] = ACTIONS(1079), + [anon_sym_LT_EQ] = ACTIONS(1077), + [anon_sym_GT] = ACTIONS(1079), + [anon_sym_GT_EQ] = ACTIONS(1077), + [anon_sym_AMP] = ACTIONS(1077), + [anon_sym_xor] = ACTIONS(1079), + [anon_sym_LT_LT] = ACTIONS(1079), + [anon_sym_GT_GT] = ACTIONS(1077), + [anon_sym_LT_LT_PIPE] = ACTIONS(1077), + [anon_sym_PLUS] = ACTIONS(1077), + [anon_sym_SLASH] = ACTIONS(1077), + [anon_sym_TILDE] = ACTIONS(1077), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_DOT] = ACTIONS(1079), + [anon_sym_CARET] = ACTIONS(1077), + [anon_sym_true] = ACTIONS(1079), + [anon_sym_false] = ACTIONS(1079), + [sym_none] = ACTIONS(1079), + [sym_undefined] = ACTIONS(1079), + [sym_sink] = ACTIONS(1079), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1077), + [anon_sym_DQUOTE] = ACTIONS(1077), + [sym_multiline_string] = ACTIONS(1077), + [sym_character] = ACTIONS(1077), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1077), + }, + [STATE(635)] = { + [ts_builtin_sym_end] = ACTIONS(1213), + [sym_identifier] = ACTIONS(1215), + [anon_sym_COLON_COLON] = ACTIONS(1213), + [anon_sym_import] = ACTIONS(1215), + [anon_sym_test] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), + [anon_sym_func] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_struct] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1213), + [anon_sym_RPAREN] = ACTIONS(1213), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_COMMA] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_DASH] = ACTIONS(1213), + [anon_sym_DOLLAR] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_QMARK] = ACTIONS(1213), + [anon_sym_STAR] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1213), + [anon_sym_void] = ACTIONS(1215), + [anon_sym_anyopaque] = ACTIONS(1215), + [anon_sym_bool] = ACTIONS(1215), + [anon_sym_int] = ACTIONS(1215), + [anon_sym_uint] = ACTIONS(1215), + [anon_sym_float] = ACTIONS(1215), + [anon_sym_range] = ACTIONS(1215), + [anon_sym_i8] = ACTIONS(1215), + [anon_sym_i16] = ACTIONS(1215), + [anon_sym_i32] = ACTIONS(1215), + [anon_sym_i64] = ACTIONS(1215), + [anon_sym_u8] = ACTIONS(1215), + [anon_sym_u16] = ACTIONS(1215), + [anon_sym_u32] = ACTIONS(1215), + [anon_sym_u64] = ACTIONS(1215), + [anon_sym_isize] = ACTIONS(1215), + [anon_sym_usize] = ACTIONS(1215), + [anon_sym_f32] = ACTIONS(1215), + [anon_sym_f64] = ACTIONS(1215), + [anon_sym_c_char] = ACTIONS(1215), + [anon_sym_c_schar] = ACTIONS(1215), + [anon_sym_c_uchar] = ACTIONS(1215), + [anon_sym_c_short] = ACTIONS(1215), + [anon_sym_c_ushort] = ACTIONS(1215), + [anon_sym_c_int] = ACTIONS(1215), + [anon_sym_c_uint] = ACTIONS(1215), + [anon_sym_c_long] = ACTIONS(1215), + [anon_sym_c_ulong] = ACTIONS(1215), + [anon_sym_c_longlong] = ACTIONS(1215), + [anon_sym_c_ulonglong] = ACTIONS(1215), + [anon_sym_c_float] = ACTIONS(1215), + [anon_sym_c_double] = ACTIONS(1215), + [anon_sym_c_longdouble] = ACTIONS(1215), + [anon_sym_return] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(1215), + [anon_sym_COLON] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1215), + [anon_sym_continue] = ACTIONS(1215), + [anon_sym_defer] = ACTIONS(1215), + [anon_sym_errdefer] = ACTIONS(1215), + [anon_sym_if] = ACTIONS(1215), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_while] = ACTIONS(1215), + [anon_sym_expand] = ACTIONS(1215), + [anon_sym_for] = ACTIONS(1215), + [anon_sym_match] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1213), + [anon_sym_orelse] = ACTIONS(1215), + [anon_sym_catch] = ACTIONS(1215), + [anon_sym_or] = ACTIONS(1215), + [anon_sym_and] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1213), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_xor] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_LT_LT_PIPE] = ACTIONS(1213), + [anon_sym_PLUS] = ACTIONS(1213), + [anon_sym_SLASH] = ACTIONS(1213), + [anon_sym_TILDE] = ACTIONS(1213), + [anon_sym_try] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1215), + [anon_sym_CARET] = ACTIONS(1213), + [anon_sym_true] = ACTIONS(1215), + [anon_sym_false] = ACTIONS(1215), + [sym_none] = ACTIONS(1215), + [sym_undefined] = ACTIONS(1215), + [sym_sink] = ACTIONS(1215), + [sym_integer] = ACTIONS(1215), + [sym_float] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1213), + [sym_multiline_string] = ACTIONS(1213), + [sym_character] = ACTIONS(1213), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1213), + }, + [STATE(636)] = { + [ts_builtin_sym_end] = ACTIONS(1245), + [sym_identifier] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(1245), + [anon_sym_import] = ACTIONS(1247), + [anon_sym_test] = ACTIONS(1247), + [anon_sym_hide] = ACTIONS(1247), + [anon_sym_func] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_struct] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DASH] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_void] = ACTIONS(1247), + [anon_sym_anyopaque] = ACTIONS(1247), + [anon_sym_bool] = ACTIONS(1247), + [anon_sym_int] = ACTIONS(1247), + [anon_sym_uint] = ACTIONS(1247), + [anon_sym_float] = ACTIONS(1247), + [anon_sym_range] = ACTIONS(1247), + [anon_sym_i8] = ACTIONS(1247), + [anon_sym_i16] = ACTIONS(1247), + [anon_sym_i32] = ACTIONS(1247), + [anon_sym_i64] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1247), + [anon_sym_u16] = ACTIONS(1247), + [anon_sym_u32] = ACTIONS(1247), + [anon_sym_u64] = ACTIONS(1247), + [anon_sym_isize] = ACTIONS(1247), + [anon_sym_usize] = ACTIONS(1247), + [anon_sym_f32] = ACTIONS(1247), + [anon_sym_f64] = ACTIONS(1247), + [anon_sym_c_char] = ACTIONS(1247), + [anon_sym_c_schar] = ACTIONS(1247), + [anon_sym_c_uchar] = ACTIONS(1247), + [anon_sym_c_short] = ACTIONS(1247), + [anon_sym_c_ushort] = ACTIONS(1247), + [anon_sym_c_int] = ACTIONS(1247), + [anon_sym_c_uint] = ACTIONS(1247), + [anon_sym_c_long] = ACTIONS(1247), + [anon_sym_c_ulong] = ACTIONS(1247), + [anon_sym_c_longlong] = ACTIONS(1247), + [anon_sym_c_ulonglong] = ACTIONS(1247), + [anon_sym_c_float] = ACTIONS(1247), + [anon_sym_c_double] = ACTIONS(1247), + [anon_sym_c_longdouble] = ACTIONS(1247), + [anon_sym_return] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1247), + [anon_sym_continue] = ACTIONS(1247), + [anon_sym_defer] = ACTIONS(1247), + [anon_sym_errdefer] = ACTIONS(1247), + [anon_sym_if] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_expand] = ACTIONS(1247), + [anon_sym_for] = ACTIONS(1247), + [anon_sym_match] = ACTIONS(1247), + [anon_sym_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), + [anon_sym_orelse] = ACTIONS(1247), + [anon_sym_catch] = ACTIONS(1247), + [anon_sym_or] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(1247), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1245), + [anon_sym_xor] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_LT_LT_PIPE] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1245), + [anon_sym_try] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1245), + [anon_sym_true] = ACTIONS(1247), + [anon_sym_false] = ACTIONS(1247), + [sym_none] = ACTIONS(1247), + [sym_undefined] = ACTIONS(1247), + [sym_sink] = ACTIONS(1247), + [sym_integer] = ACTIONS(1247), + [sym_float] = ACTIONS(1245), + [anon_sym_DQUOTE] = ACTIONS(1245), + [sym_multiline_string] = ACTIONS(1245), + [sym_character] = ACTIONS(1245), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1245), + }, + [STATE(637)] = { + [ts_builtin_sym_end] = ACTIONS(1249), + [sym_identifier] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1249), + [anon_sym_import] = ACTIONS(1251), + [anon_sym_test] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), + [anon_sym_func] = ACTIONS(1251), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_struct] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_void] = ACTIONS(1251), + [anon_sym_anyopaque] = ACTIONS(1251), + [anon_sym_bool] = ACTIONS(1251), + [anon_sym_int] = ACTIONS(1251), + [anon_sym_uint] = ACTIONS(1251), + [anon_sym_float] = ACTIONS(1251), + [anon_sym_range] = ACTIONS(1251), + [anon_sym_i8] = ACTIONS(1251), + [anon_sym_i16] = ACTIONS(1251), + [anon_sym_i32] = ACTIONS(1251), + [anon_sym_i64] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1251), + [anon_sym_u16] = ACTIONS(1251), + [anon_sym_u32] = ACTIONS(1251), + [anon_sym_u64] = ACTIONS(1251), + [anon_sym_isize] = ACTIONS(1251), + [anon_sym_usize] = ACTIONS(1251), + [anon_sym_f32] = ACTIONS(1251), + [anon_sym_f64] = ACTIONS(1251), + [anon_sym_c_char] = ACTIONS(1251), + [anon_sym_c_schar] = ACTIONS(1251), + [anon_sym_c_uchar] = ACTIONS(1251), + [anon_sym_c_short] = ACTIONS(1251), + [anon_sym_c_ushort] = ACTIONS(1251), + [anon_sym_c_int] = ACTIONS(1251), + [anon_sym_c_uint] = ACTIONS(1251), + [anon_sym_c_long] = ACTIONS(1251), + [anon_sym_c_ulong] = ACTIONS(1251), + [anon_sym_c_longlong] = ACTIONS(1251), + [anon_sym_c_ulonglong] = ACTIONS(1251), + [anon_sym_c_float] = ACTIONS(1251), + [anon_sym_c_double] = ACTIONS(1251), + [anon_sym_c_longdouble] = ACTIONS(1251), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1251), + [anon_sym_break] = ACTIONS(1251), + [anon_sym_continue] = ACTIONS(1251), + [anon_sym_defer] = ACTIONS(1251), + [anon_sym_errdefer] = ACTIONS(1251), + [anon_sym_if] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_while] = ACTIONS(1251), + [anon_sym_expand] = ACTIONS(1251), + [anon_sym_for] = ACTIONS(1251), + [anon_sym_match] = ACTIONS(1251), + [anon_sym_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [anon_sym_orelse] = ACTIONS(1251), + [anon_sym_catch] = ACTIONS(1251), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1251), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_xor] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE] = ACTIONS(1249), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_TILDE] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1251), + [anon_sym_false] = ACTIONS(1251), + [sym_none] = ACTIONS(1251), + [sym_undefined] = ACTIONS(1251), + [sym_sink] = ACTIONS(1251), + [sym_integer] = ACTIONS(1251), + [sym_float] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym_multiline_string] = ACTIONS(1249), + [sym_character] = ACTIONS(1249), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1249), + }, + [STATE(638)] = { + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_import] = ACTIONS(1255), + [anon_sym_test] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), + [anon_sym_func] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_void] = ACTIONS(1255), + [anon_sym_anyopaque] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_int] = ACTIONS(1255), + [anon_sym_uint] = ACTIONS(1255), + [anon_sym_float] = ACTIONS(1255), + [anon_sym_range] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_c_char] = ACTIONS(1255), + [anon_sym_c_schar] = ACTIONS(1255), + [anon_sym_c_uchar] = ACTIONS(1255), + [anon_sym_c_short] = ACTIONS(1255), + [anon_sym_c_ushort] = ACTIONS(1255), + [anon_sym_c_int] = ACTIONS(1255), + [anon_sym_c_uint] = ACTIONS(1255), + [anon_sym_c_long] = ACTIONS(1255), + [anon_sym_c_ulong] = ACTIONS(1255), + [anon_sym_c_longlong] = ACTIONS(1255), + [anon_sym_c_ulonglong] = ACTIONS(1255), + [anon_sym_c_float] = ACTIONS(1255), + [anon_sym_c_double] = ACTIONS(1255), + [anon_sym_c_longdouble] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_defer] = ACTIONS(1255), + [anon_sym_errdefer] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_expand] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1253), + [anon_sym_orelse] = ACTIONS(1255), + [anon_sym_catch] = ACTIONS(1255), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1255), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_xor] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_LT_LT_PIPE] = ACTIONS(1253), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_TILDE] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [sym_none] = ACTIONS(1255), + [sym_undefined] = ACTIONS(1255), + [sym_sink] = ACTIONS(1255), + [sym_integer] = ACTIONS(1255), + [sym_float] = ACTIONS(1253), + [anon_sym_DQUOTE] = ACTIONS(1253), + [sym_multiline_string] = ACTIONS(1253), + [sym_character] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1253), + }, + [STATE(639)] = { + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_identifier] = ACTIONS(1105), + [anon_sym_COLON_COLON] = ACTIONS(1103), + [anon_sym_import] = ACTIONS(1105), + [anon_sym_test] = ACTIONS(1105), + [anon_sym_hide] = ACTIONS(1105), + [anon_sym_func] = ACTIONS(1105), + [anon_sym_BANG] = ACTIONS(1105), + [anon_sym_EQ] = ACTIONS(1105), + [anon_sym_struct] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1103), + [anon_sym_RBRACE] = ACTIONS(1103), + [anon_sym_DASH] = ACTIONS(1103), + [anon_sym_DOLLAR] = ACTIONS(1103), + [anon_sym_PIPE] = ACTIONS(1103), + [anon_sym_QMARK] = ACTIONS(1103), + [anon_sym_STAR] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_void] = ACTIONS(1105), + [anon_sym_anyopaque] = ACTIONS(1105), + [anon_sym_bool] = ACTIONS(1105), + [anon_sym_int] = ACTIONS(1105), + [anon_sym_uint] = ACTIONS(1105), + [anon_sym_float] = ACTIONS(1105), + [anon_sym_range] = ACTIONS(1105), + [anon_sym_i8] = ACTIONS(1105), + [anon_sym_i16] = ACTIONS(1105), + [anon_sym_i32] = ACTIONS(1105), + [anon_sym_i64] = ACTIONS(1105), + [anon_sym_u8] = ACTIONS(1105), + [anon_sym_u16] = ACTIONS(1105), + [anon_sym_u32] = ACTIONS(1105), + [anon_sym_u64] = ACTIONS(1105), + [anon_sym_isize] = ACTIONS(1105), + [anon_sym_usize] = ACTIONS(1105), + [anon_sym_f32] = ACTIONS(1105), + [anon_sym_f64] = ACTIONS(1105), + [anon_sym_c_char] = ACTIONS(1105), + [anon_sym_c_schar] = ACTIONS(1105), + [anon_sym_c_uchar] = ACTIONS(1105), + [anon_sym_c_short] = ACTIONS(1105), + [anon_sym_c_ushort] = ACTIONS(1105), + [anon_sym_c_int] = ACTIONS(1105), + [anon_sym_c_uint] = ACTIONS(1105), + [anon_sym_c_long] = ACTIONS(1105), + [anon_sym_c_ulong] = ACTIONS(1105), + [anon_sym_c_longlong] = ACTIONS(1105), + [anon_sym_c_ulonglong] = ACTIONS(1105), + [anon_sym_c_float] = ACTIONS(1105), + [anon_sym_c_double] = ACTIONS(1105), + [anon_sym_c_longdouble] = ACTIONS(1105), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1105), + [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1105), + [anon_sym_defer] = ACTIONS(1105), + [anon_sym_errdefer] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1105), + [anon_sym_else] = ACTIONS(1105), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_expand] = ACTIONS(1105), + [anon_sym_for] = ACTIONS(1105), + [anon_sym_match] = ACTIONS(1105), + [anon_sym_DOT_DOT] = ACTIONS(1105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1103), + [anon_sym_orelse] = ACTIONS(1105), + [anon_sym_catch] = ACTIONS(1105), + [anon_sym_or] = ACTIONS(1105), + [anon_sym_and] = ACTIONS(1105), + [anon_sym_EQ_EQ] = ACTIONS(1103), + [anon_sym_BANG_EQ] = ACTIONS(1103), + [anon_sym_LT] = ACTIONS(1105), + [anon_sym_LT_EQ] = ACTIONS(1103), + [anon_sym_GT] = ACTIONS(1105), + [anon_sym_GT_EQ] = ACTIONS(1103), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_xor] = ACTIONS(1105), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1103), + [anon_sym_LT_LT_PIPE] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1103), + [anon_sym_SLASH] = ACTIONS(1103), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_CARET] = ACTIONS(1103), + [anon_sym_true] = ACTIONS(1105), + [anon_sym_false] = ACTIONS(1105), + [sym_none] = ACTIONS(1105), + [sym_undefined] = ACTIONS(1105), + [sym_sink] = ACTIONS(1105), + [sym_integer] = ACTIONS(1105), + [sym_float] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1103), + [sym_multiline_string] = ACTIONS(1103), + [sym_character] = ACTIONS(1103), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1103), + }, + [STATE(640)] = { + [ts_builtin_sym_end] = ACTIONS(605), + [sym_identifier] = ACTIONS(607), + [anon_sym_COLON_COLON] = ACTIONS(605), + [anon_sym_import] = ACTIONS(607), + [anon_sym_test] = ACTIONS(607), + [anon_sym_hide] = ACTIONS(607), + [anon_sym_func] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_EQ] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(605), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(605), + [anon_sym_void] = ACTIONS(607), + [anon_sym_anyopaque] = ACTIONS(607), + [anon_sym_bool] = ACTIONS(607), + [anon_sym_int] = ACTIONS(607), + [anon_sym_uint] = ACTIONS(607), + [anon_sym_float] = ACTIONS(607), + [anon_sym_range] = ACTIONS(607), + [anon_sym_i8] = ACTIONS(607), + [anon_sym_i16] = ACTIONS(607), + [anon_sym_i32] = ACTIONS(607), + [anon_sym_i64] = ACTIONS(607), + [anon_sym_u8] = ACTIONS(607), + [anon_sym_u16] = ACTIONS(607), + [anon_sym_u32] = ACTIONS(607), + [anon_sym_u64] = ACTIONS(607), + [anon_sym_isize] = ACTIONS(607), + [anon_sym_usize] = ACTIONS(607), + [anon_sym_f32] = ACTIONS(607), + [anon_sym_f64] = ACTIONS(607), + [anon_sym_c_char] = ACTIONS(607), + [anon_sym_c_schar] = ACTIONS(607), + [anon_sym_c_uchar] = ACTIONS(607), + [anon_sym_c_short] = ACTIONS(607), + [anon_sym_c_ushort] = ACTIONS(607), + [anon_sym_c_int] = ACTIONS(607), + [anon_sym_c_uint] = ACTIONS(607), + [anon_sym_c_long] = ACTIONS(607), + [anon_sym_c_ulong] = ACTIONS(607), + [anon_sym_c_longlong] = ACTIONS(607), + [anon_sym_c_ulonglong] = ACTIONS(607), + [anon_sym_c_float] = ACTIONS(607), + [anon_sym_c_double] = ACTIONS(607), + [anon_sym_c_longdouble] = ACTIONS(607), + [anon_sym_return] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(607), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_defer] = ACTIONS(607), + [anon_sym_errdefer] = ACTIONS(607), + [anon_sym_if] = ACTIONS(607), + [anon_sym_else] = ACTIONS(607), + [anon_sym_while] = ACTIONS(607), + [anon_sym_expand] = ACTIONS(607), + [anon_sym_for] = ACTIONS(607), + [anon_sym_match] = ACTIONS(607), + [anon_sym_DOT_DOT] = ACTIONS(607), + [anon_sym_DOT_DOT_EQ] = ACTIONS(605), + [anon_sym_orelse] = ACTIONS(607), + [anon_sym_catch] = ACTIONS(607), + [anon_sym_or] = ACTIONS(607), + [anon_sym_and] = ACTIONS(607), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_xor] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_LT_LT_PIPE] = ACTIONS(605), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_try] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_true] = ACTIONS(607), + [anon_sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_undefined] = ACTIONS(607), + [sym_sink] = ACTIONS(607), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(605), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_multiline_string] = ACTIONS(605), + [sym_character] = ACTIONS(605), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(605), + }, + [STATE(641)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_defer] = ACTIONS(1713), + [anon_sym_errdefer] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(125), + [anon_sym_else] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(642)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_yield] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_defer] = ACTIONS(1713), + [anon_sym_errdefer] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(643)] = { + [sym_argument_list] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_import] = ACTIONS(490), + [anon_sym_test] = ACTIONS(490), + [anon_sym_hide] = ACTIONS(490), + [anon_sym_func] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_struct] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(490), + [anon_sym_anyopaque] = ACTIONS(490), + [anon_sym_bool] = ACTIONS(490), + [anon_sym_int] = ACTIONS(490), + [anon_sym_uint] = ACTIONS(490), + [anon_sym_float] = ACTIONS(490), + [anon_sym_range] = ACTIONS(490), + [anon_sym_i8] = ACTIONS(490), + [anon_sym_i16] = ACTIONS(490), + [anon_sym_i32] = ACTIONS(490), + [anon_sym_i64] = ACTIONS(490), + [anon_sym_u8] = ACTIONS(490), + [anon_sym_u16] = ACTIONS(490), + [anon_sym_u32] = ACTIONS(490), + [anon_sym_u64] = ACTIONS(490), + [anon_sym_isize] = ACTIONS(490), + [anon_sym_usize] = ACTIONS(490), + [anon_sym_f32] = ACTIONS(490), + [anon_sym_f64] = ACTIONS(490), + [anon_sym_c_char] = ACTIONS(490), + [anon_sym_c_schar] = ACTIONS(490), + [anon_sym_c_uchar] = ACTIONS(490), + [anon_sym_c_short] = ACTIONS(490), + [anon_sym_c_ushort] = ACTIONS(490), + [anon_sym_c_int] = ACTIONS(490), + [anon_sym_c_uint] = ACTIONS(490), + [anon_sym_c_long] = ACTIONS(490), + [anon_sym_c_ulong] = ACTIONS(490), + [anon_sym_c_longlong] = ACTIONS(490), + [anon_sym_c_ulonglong] = ACTIONS(490), + [anon_sym_c_float] = ACTIONS(490), + [anon_sym_c_double] = ACTIONS(490), + [anon_sym_c_longdouble] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_defer] = ACTIONS(490), + [anon_sym_errdefer] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_while] = ACTIONS(490), + [anon_sym_expand] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_match] = ACTIONS(490), + [anon_sym_DOT_DOT] = ACTIONS(490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(488), + [anon_sym_orelse] = ACTIONS(490), + [anon_sym_catch] = ACTIONS(490), + [anon_sym_or] = ACTIONS(490), + [anon_sym_and] = ACTIONS(490), + [anon_sym_EQ_EQ] = ACTIONS(488), + [anon_sym_BANG_EQ] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(488), + [anon_sym_xor] = ACTIONS(490), + [anon_sym_LT_LT] = ACTIONS(490), + [anon_sym_GT_GT] = ACTIONS(488), + [anon_sym_LT_LT_PIPE] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_SLASH] = ACTIONS(488), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_try] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(490), + [anon_sym_false] = ACTIONS(490), + [sym_none] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [sym_sink] = ACTIONS(490), + [sym_integer] = ACTIONS(490), + [sym_float] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym_multiline_string] = ACTIONS(488), + [sym_character] = ACTIONS(488), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(488), + }, + [STATE(644)] = { + [sym_argument_list] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(543), + [sym_identifier] = ACTIONS(545), + [anon_sym_import] = ACTIONS(545), + [anon_sym_test] = ACTIONS(545), + [anon_sym_hide] = ACTIONS(545), + [anon_sym_func] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(545), + [anon_sym_struct] = ACTIONS(545), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(543), + [anon_sym_DASH] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(545), + [anon_sym_anyopaque] = ACTIONS(545), + [anon_sym_bool] = ACTIONS(545), + [anon_sym_int] = ACTIONS(545), + [anon_sym_uint] = ACTIONS(545), + [anon_sym_float] = ACTIONS(545), + [anon_sym_range] = ACTIONS(545), + [anon_sym_i8] = ACTIONS(545), + [anon_sym_i16] = ACTIONS(545), + [anon_sym_i32] = ACTIONS(545), + [anon_sym_i64] = ACTIONS(545), + [anon_sym_u8] = ACTIONS(545), + [anon_sym_u16] = ACTIONS(545), + [anon_sym_u32] = ACTIONS(545), + [anon_sym_u64] = ACTIONS(545), + [anon_sym_isize] = ACTIONS(545), + [anon_sym_usize] = ACTIONS(545), + [anon_sym_f32] = ACTIONS(545), + [anon_sym_f64] = ACTIONS(545), + [anon_sym_c_char] = ACTIONS(545), + [anon_sym_c_schar] = ACTIONS(545), + [anon_sym_c_uchar] = ACTIONS(545), + [anon_sym_c_short] = ACTIONS(545), + [anon_sym_c_ushort] = ACTIONS(545), + [anon_sym_c_int] = ACTIONS(545), + [anon_sym_c_uint] = ACTIONS(545), + [anon_sym_c_long] = ACTIONS(545), + [anon_sym_c_ulong] = ACTIONS(545), + [anon_sym_c_longlong] = ACTIONS(545), + [anon_sym_c_ulonglong] = ACTIONS(545), + [anon_sym_c_float] = ACTIONS(545), + [anon_sym_c_double] = ACTIONS(545), + [anon_sym_c_longdouble] = ACTIONS(545), + [anon_sym_return] = ACTIONS(545), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_COLON] = ACTIONS(543), + [anon_sym_break] = ACTIONS(545), + [anon_sym_continue] = ACTIONS(545), + [anon_sym_defer] = ACTIONS(545), + [anon_sym_errdefer] = ACTIONS(545), + [anon_sym_if] = ACTIONS(545), + [anon_sym_else] = ACTIONS(545), + [anon_sym_while] = ACTIONS(545), + [anon_sym_expand] = ACTIONS(545), + [anon_sym_for] = ACTIONS(545), + [anon_sym_match] = ACTIONS(545), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_EQ] = ACTIONS(543), + [anon_sym_orelse] = ACTIONS(545), + [anon_sym_catch] = ACTIONS(545), + [anon_sym_or] = ACTIONS(545), + [anon_sym_and] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_LT] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(543), + [anon_sym_GT] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_xor] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_LT_LT_PIPE] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(543), + [anon_sym_SLASH] = ACTIONS(543), + [anon_sym_TILDE] = ACTIONS(543), + [anon_sym_try] = ACTIONS(545), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(545), + [anon_sym_false] = ACTIONS(545), + [sym_none] = ACTIONS(545), + [sym_undefined] = ACTIONS(545), + [sym_sink] = ACTIONS(545), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(543), + [sym_multiline_string] = ACTIONS(543), + [sym_character] = ACTIONS(543), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + }, + [STATE(645)] = { + [sym_argument_list] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_import] = ACTIONS(451), + [anon_sym_test] = ACTIONS(451), + [anon_sym_hide] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_COLON] = ACTIONS(449), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_LT_LT_PIPE] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(449), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(646)] = { + [sym_argument_list] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_import] = ACTIONS(551), + [anon_sym_test] = ACTIONS(551), + [anon_sym_hide] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_LT_LT_PIPE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(549), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(647)] = { + [aux_sym_type_repeat1] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(513), + [sym_identifier] = ACTIONS(515), + [anon_sym_import] = ACTIONS(515), + [anon_sym_test] = ACTIONS(515), + [anon_sym_hide] = ACTIONS(515), + [anon_sym_func] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_struct] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_DASH] = ACTIONS(513), + [anon_sym_DOLLAR] = ACTIONS(513), + [anon_sym_PIPE] = ACTIONS(513), + [anon_sym_QMARK] = ACTIONS(513), + [anon_sym_STAR] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_void] = ACTIONS(515), + [anon_sym_anyopaque] = ACTIONS(515), + [anon_sym_bool] = ACTIONS(515), + [anon_sym_int] = ACTIONS(515), + [anon_sym_uint] = ACTIONS(515), + [anon_sym_float] = ACTIONS(515), + [anon_sym_range] = ACTIONS(515), + [anon_sym_i8] = ACTIONS(515), + [anon_sym_i16] = ACTIONS(515), + [anon_sym_i32] = ACTIONS(515), + [anon_sym_i64] = ACTIONS(515), + [anon_sym_u8] = ACTIONS(515), + [anon_sym_u16] = ACTIONS(515), + [anon_sym_u32] = ACTIONS(515), + [anon_sym_u64] = ACTIONS(515), + [anon_sym_isize] = ACTIONS(515), + [anon_sym_usize] = ACTIONS(515), + [anon_sym_f32] = ACTIONS(515), + [anon_sym_f64] = ACTIONS(515), + [anon_sym_c_char] = ACTIONS(515), + [anon_sym_c_schar] = ACTIONS(515), + [anon_sym_c_uchar] = ACTIONS(515), + [anon_sym_c_short] = ACTIONS(515), + [anon_sym_c_ushort] = ACTIONS(515), + [anon_sym_c_int] = ACTIONS(515), + [anon_sym_c_uint] = ACTIONS(515), + [anon_sym_c_long] = ACTIONS(515), + [anon_sym_c_ulong] = ACTIONS(515), + [anon_sym_c_longlong] = ACTIONS(515), + [anon_sym_c_ulonglong] = ACTIONS(515), + [anon_sym_c_float] = ACTIONS(515), + [anon_sym_c_double] = ACTIONS(515), + [anon_sym_c_longdouble] = ACTIONS(515), + [anon_sym_return] = ACTIONS(515), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_COLON] = ACTIONS(513), + [anon_sym_break] = ACTIONS(515), + [anon_sym_continue] = ACTIONS(515), + [anon_sym_defer] = ACTIONS(515), + [anon_sym_errdefer] = ACTIONS(515), + [anon_sym_if] = ACTIONS(515), + [anon_sym_else] = ACTIONS(515), + [anon_sym_while] = ACTIONS(515), + [anon_sym_expand] = ACTIONS(515), + [anon_sym_for] = ACTIONS(515), + [anon_sym_match] = ACTIONS(515), + [anon_sym_DOT_DOT] = ACTIONS(515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(513), + [anon_sym_orelse] = ACTIONS(515), + [anon_sym_catch] = ACTIONS(515), + [anon_sym_or] = ACTIONS(515), + [anon_sym_and] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(513), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(513), + [anon_sym_GT] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(513), + [anon_sym_AMP] = ACTIONS(513), + [anon_sym_xor] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(513), + [anon_sym_LT_LT_PIPE] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(513), + [anon_sym_SLASH] = ACTIONS(513), + [anon_sym_TILDE] = ACTIONS(513), + [anon_sym_try] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(515), + [anon_sym_CARET] = ACTIONS(513), + [anon_sym_true] = ACTIONS(515), + [anon_sym_false] = ACTIONS(515), + [sym_none] = ACTIONS(515), + [sym_undefined] = ACTIONS(515), + [sym_sink] = ACTIONS(515), + [sym_integer] = ACTIONS(515), + [sym_float] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(513), + [sym_multiline_string] = ACTIONS(513), + [sym_character] = ACTIONS(513), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(513), + }, + [STATE(648)] = { + [aux_sym_type_repeat1] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(502), + [sym_identifier] = ACTIONS(504), + [anon_sym_import] = ACTIONS(504), + [anon_sym_test] = ACTIONS(504), + [anon_sym_hide] = ACTIONS(504), + [anon_sym_func] = ACTIONS(504), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_struct] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_DOLLAR] = ACTIONS(502), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_void] = ACTIONS(504), + [anon_sym_anyopaque] = ACTIONS(504), + [anon_sym_bool] = ACTIONS(504), + [anon_sym_int] = ACTIONS(504), + [anon_sym_uint] = ACTIONS(504), + [anon_sym_float] = ACTIONS(504), + [anon_sym_range] = ACTIONS(504), + [anon_sym_i8] = ACTIONS(504), + [anon_sym_i16] = ACTIONS(504), + [anon_sym_i32] = ACTIONS(504), + [anon_sym_i64] = ACTIONS(504), + [anon_sym_u8] = ACTIONS(504), + [anon_sym_u16] = ACTIONS(504), + [anon_sym_u32] = ACTIONS(504), + [anon_sym_u64] = ACTIONS(504), + [anon_sym_isize] = ACTIONS(504), + [anon_sym_usize] = ACTIONS(504), + [anon_sym_f32] = ACTIONS(504), + [anon_sym_f64] = ACTIONS(504), + [anon_sym_c_char] = ACTIONS(504), + [anon_sym_c_schar] = ACTIONS(504), + [anon_sym_c_uchar] = ACTIONS(504), + [anon_sym_c_short] = ACTIONS(504), + [anon_sym_c_ushort] = ACTIONS(504), + [anon_sym_c_int] = ACTIONS(504), + [anon_sym_c_uint] = ACTIONS(504), + [anon_sym_c_long] = ACTIONS(504), + [anon_sym_c_ulong] = ACTIONS(504), + [anon_sym_c_longlong] = ACTIONS(504), + [anon_sym_c_ulonglong] = ACTIONS(504), + [anon_sym_c_float] = ACTIONS(504), + [anon_sym_c_double] = ACTIONS(504), + [anon_sym_c_longdouble] = ACTIONS(504), + [anon_sym_return] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(502), + [anon_sym_break] = ACTIONS(504), + [anon_sym_continue] = ACTIONS(504), + [anon_sym_defer] = ACTIONS(504), + [anon_sym_errdefer] = ACTIONS(504), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_while] = ACTIONS(504), + [anon_sym_expand] = ACTIONS(504), + [anon_sym_for] = ACTIONS(504), + [anon_sym_match] = ACTIONS(504), + [anon_sym_DOT_DOT] = ACTIONS(504), + [anon_sym_DOT_DOT_EQ] = ACTIONS(502), + [anon_sym_orelse] = ACTIONS(504), + [anon_sym_catch] = ACTIONS(504), + [anon_sym_or] = ACTIONS(504), + [anon_sym_and] = ACTIONS(504), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_xor] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_LT_LT_PIPE] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_try] = ACTIONS(504), + [anon_sym_DOT] = ACTIONS(504), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_true] = ACTIONS(504), + [anon_sym_false] = ACTIONS(504), + [sym_none] = ACTIONS(504), + [sym_undefined] = ACTIONS(504), + [sym_sink] = ACTIONS(504), + [sym_integer] = ACTIONS(504), + [sym_float] = ACTIONS(502), + [anon_sym_DQUOTE] = ACTIONS(502), + [sym_multiline_string] = ACTIONS(502), + [sym_character] = ACTIONS(502), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(502), + }, + [STATE(649)] = { + [aux_sym_type_repeat1] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_test] = ACTIONS(508), + [anon_sym_hide] = ACTIONS(508), + [anon_sym_func] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_struct] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(508), + [anon_sym_anyopaque] = ACTIONS(508), + [anon_sym_bool] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_uint] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_range] = ACTIONS(508), + [anon_sym_i8] = ACTIONS(508), + [anon_sym_i16] = ACTIONS(508), + [anon_sym_i32] = ACTIONS(508), + [anon_sym_i64] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(508), + [anon_sym_u16] = ACTIONS(508), + [anon_sym_u32] = ACTIONS(508), + [anon_sym_u64] = ACTIONS(508), + [anon_sym_isize] = ACTIONS(508), + [anon_sym_usize] = ACTIONS(508), + [anon_sym_f32] = ACTIONS(508), + [anon_sym_f64] = ACTIONS(508), + [anon_sym_c_char] = ACTIONS(508), + [anon_sym_c_schar] = ACTIONS(508), + [anon_sym_c_uchar] = ACTIONS(508), + [anon_sym_c_short] = ACTIONS(508), + [anon_sym_c_ushort] = ACTIONS(508), + [anon_sym_c_int] = ACTIONS(508), + [anon_sym_c_uint] = ACTIONS(508), + [anon_sym_c_long] = ACTIONS(508), + [anon_sym_c_ulong] = ACTIONS(508), + [anon_sym_c_longlong] = ACTIONS(508), + [anon_sym_c_ulonglong] = ACTIONS(508), + [anon_sym_c_float] = ACTIONS(508), + [anon_sym_c_double] = ACTIONS(508), + [anon_sym_c_longdouble] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_defer] = ACTIONS(508), + [anon_sym_errdefer] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_expand] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_match] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(506), + [anon_sym_orelse] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_and] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_xor] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_try] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_true] = ACTIONS(508), + [anon_sym_false] = ACTIONS(508), + [sym_none] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [sym_sink] = ACTIONS(508), + [sym_integer] = ACTIONS(508), + [sym_float] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [sym_multiline_string] = ACTIONS(506), + [sym_character] = ACTIONS(506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(506), + }, + [STATE(650)] = { + [sym_argument_list] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(492), + [sym_identifier] = ACTIONS(494), + [anon_sym_import] = ACTIONS(494), + [anon_sym_test] = ACTIONS(494), + [anon_sym_hide] = ACTIONS(494), + [anon_sym_func] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(494), + [anon_sym_struct] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_void] = ACTIONS(494), + [anon_sym_anyopaque] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_int] = ACTIONS(494), + [anon_sym_uint] = ACTIONS(494), + [anon_sym_float] = ACTIONS(494), + [anon_sym_range] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_c_char] = ACTIONS(494), + [anon_sym_c_schar] = ACTIONS(494), + [anon_sym_c_uchar] = ACTIONS(494), + [anon_sym_c_short] = ACTIONS(494), + [anon_sym_c_ushort] = ACTIONS(494), + [anon_sym_c_int] = ACTIONS(494), + [anon_sym_c_uint] = ACTIONS(494), + [anon_sym_c_long] = ACTIONS(494), + [anon_sym_c_ulong] = ACTIONS(494), + [anon_sym_c_longlong] = ACTIONS(494), + [anon_sym_c_ulonglong] = ACTIONS(494), + [anon_sym_c_float] = ACTIONS(494), + [anon_sym_c_double] = ACTIONS(494), + [anon_sym_c_longdouble] = ACTIONS(494), + [anon_sym_return] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(494), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_break] = ACTIONS(494), + [anon_sym_continue] = ACTIONS(494), + [anon_sym_defer] = ACTIONS(494), + [anon_sym_errdefer] = ACTIONS(494), + [anon_sym_if] = ACTIONS(494), + [anon_sym_else] = ACTIONS(494), + [anon_sym_while] = ACTIONS(494), + [anon_sym_expand] = ACTIONS(494), + [anon_sym_for] = ACTIONS(494), + [anon_sym_match] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_orelse] = ACTIONS(494), + [anon_sym_catch] = ACTIONS(494), + [anon_sym_or] = ACTIONS(494), + [anon_sym_and] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_xor] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_LT_LT_PIPE] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(492), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_try] = ACTIONS(494), + [anon_sym_DOT] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_none] = ACTIONS(494), + [sym_undefined] = ACTIONS(494), + [sym_sink] = ACTIONS(494), + [sym_integer] = ACTIONS(494), + [sym_float] = ACTIONS(492), + [anon_sym_DQUOTE] = ACTIONS(492), + [sym_multiline_string] = ACTIONS(492), + [sym_character] = ACTIONS(492), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(492), + }, + [STATE(651)] = { + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_import] = ACTIONS(973), + [anon_sym_test] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_func] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_void] = ACTIONS(973), + [anon_sym_anyopaque] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_int] = ACTIONS(973), + [anon_sym_uint] = ACTIONS(973), + [anon_sym_float] = ACTIONS(973), + [anon_sym_range] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_c_char] = ACTIONS(973), + [anon_sym_c_schar] = ACTIONS(973), + [anon_sym_c_uchar] = ACTIONS(973), + [anon_sym_c_short] = ACTIONS(973), + [anon_sym_c_ushort] = ACTIONS(973), + [anon_sym_c_int] = ACTIONS(973), + [anon_sym_c_uint] = ACTIONS(973), + [anon_sym_c_long] = ACTIONS(973), + [anon_sym_c_ulong] = ACTIONS(973), + [anon_sym_c_longlong] = ACTIONS(973), + [anon_sym_c_ulonglong] = ACTIONS(973), + [anon_sym_c_float] = ACTIONS(973), + [anon_sym_c_double] = ACTIONS(973), + [anon_sym_c_longdouble] = ACTIONS(973), + [anon_sym_return] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_defer] = ACTIONS(973), + [anon_sym_errdefer] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_expand] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_orelse] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_xor] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(973), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_LT_LT_PIPE] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_TILDE] = ACTIONS(971), + [anon_sym_try] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(971), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [sym_none] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [sym_sink] = ACTIONS(973), + [sym_integer] = ACTIONS(973), + [sym_float] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_multiline_string] = ACTIONS(971), + [sym_character] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(971), + }, + [STATE(652)] = { + [ts_builtin_sym_end] = ACTIONS(861), + [sym_identifier] = ACTIONS(863), + [anon_sym_import] = ACTIONS(863), + [anon_sym_test] = ACTIONS(863), + [anon_sym_hide] = ACTIONS(863), + [anon_sym_func] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_void] = ACTIONS(863), + [anon_sym_anyopaque] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_int] = ACTIONS(863), + [anon_sym_uint] = ACTIONS(863), + [anon_sym_float] = ACTIONS(863), + [anon_sym_range] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_c_char] = ACTIONS(863), + [anon_sym_c_schar] = ACTIONS(863), + [anon_sym_c_uchar] = ACTIONS(863), + [anon_sym_c_short] = ACTIONS(863), + [anon_sym_c_ushort] = ACTIONS(863), + [anon_sym_c_int] = ACTIONS(863), + [anon_sym_c_uint] = ACTIONS(863), + [anon_sym_c_long] = ACTIONS(863), + [anon_sym_c_ulong] = ACTIONS(863), + [anon_sym_c_longlong] = ACTIONS(863), + [anon_sym_c_ulonglong] = ACTIONS(863), + [anon_sym_c_float] = ACTIONS(863), + [anon_sym_c_double] = ACTIONS(863), + [anon_sym_c_longdouble] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_yield] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(861), + [anon_sym_break] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_defer] = ACTIONS(863), + [anon_sym_errdefer] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_else] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [anon_sym_expand] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [anon_sym_orelse] = ACTIONS(863), + [anon_sym_catch] = ACTIONS(863), + [anon_sym_or] = ACTIONS(863), + [anon_sym_and] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_xor] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(861), + [anon_sym_LT_LT_PIPE] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(861), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [sym_none] = ACTIONS(863), + [sym_undefined] = ACTIONS(863), + [sym_sink] = ACTIONS(863), + [sym_integer] = ACTIONS(863), + [sym_float] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym_multiline_string] = ACTIONS(861), + [sym_character] = ACTIONS(861), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(861), + }, + [STATE(653)] = { + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [anon_sym_import] = ACTIONS(1047), + [anon_sym_test] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), + [anon_sym_func] = ACTIONS(1047), + [anon_sym_BANG] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_void] = ACTIONS(1047), + [anon_sym_anyopaque] = ACTIONS(1047), + [anon_sym_bool] = ACTIONS(1047), + [anon_sym_int] = ACTIONS(1047), + [anon_sym_uint] = ACTIONS(1047), + [anon_sym_float] = ACTIONS(1047), + [anon_sym_range] = ACTIONS(1047), + [anon_sym_i8] = ACTIONS(1047), + [anon_sym_i16] = ACTIONS(1047), + [anon_sym_i32] = ACTIONS(1047), + [anon_sym_i64] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1047), + [anon_sym_u16] = ACTIONS(1047), + [anon_sym_u32] = ACTIONS(1047), + [anon_sym_u64] = ACTIONS(1047), + [anon_sym_isize] = ACTIONS(1047), + [anon_sym_usize] = ACTIONS(1047), + [anon_sym_f32] = ACTIONS(1047), + [anon_sym_f64] = ACTIONS(1047), + [anon_sym_c_char] = ACTIONS(1047), + [anon_sym_c_schar] = ACTIONS(1047), + [anon_sym_c_uchar] = ACTIONS(1047), + [anon_sym_c_short] = ACTIONS(1047), + [anon_sym_c_ushort] = ACTIONS(1047), + [anon_sym_c_int] = ACTIONS(1047), + [anon_sym_c_uint] = ACTIONS(1047), + [anon_sym_c_long] = ACTIONS(1047), + [anon_sym_c_ulong] = ACTIONS(1047), + [anon_sym_c_longlong] = ACTIONS(1047), + [anon_sym_c_ulonglong] = ACTIONS(1047), + [anon_sym_c_float] = ACTIONS(1047), + [anon_sym_c_double] = ACTIONS(1047), + [anon_sym_c_longdouble] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_yield] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_defer] = ACTIONS(1047), + [anon_sym_errdefer] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_else] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_expand] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1045), + [anon_sym_orelse] = ACTIONS(1047), + [anon_sym_catch] = ACTIONS(1047), + [anon_sym_or] = ACTIONS(1047), + [anon_sym_and] = ACTIONS(1047), + [anon_sym_EQ_EQ] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1045), + [anon_sym_GT] = ACTIONS(1047), + [anon_sym_GT_EQ] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_xor] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1047), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_LT_LT_PIPE] = ACTIONS(1045), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_TILDE] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1047), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [sym_none] = ACTIONS(1047), + [sym_undefined] = ACTIONS(1047), + [sym_sink] = ACTIONS(1047), + [sym_integer] = ACTIONS(1047), + [sym_float] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1045), + [sym_multiline_string] = ACTIONS(1045), + [sym_character] = ACTIONS(1045), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1045), + }, + [STATE(654)] = { + [ts_builtin_sym_end] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1125), + [anon_sym_import] = ACTIONS(1125), + [anon_sym_test] = ACTIONS(1125), + [anon_sym_hide] = ACTIONS(1125), + [anon_sym_func] = ACTIONS(1125), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1125), + [anon_sym_LPAREN] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1123), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_DASH] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_QMARK] = ACTIONS(1123), + [anon_sym_STAR] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_void] = ACTIONS(1125), + [anon_sym_anyopaque] = ACTIONS(1125), + [anon_sym_bool] = ACTIONS(1125), + [anon_sym_int] = ACTIONS(1125), + [anon_sym_uint] = ACTIONS(1125), + [anon_sym_float] = ACTIONS(1125), + [anon_sym_range] = ACTIONS(1125), + [anon_sym_i8] = ACTIONS(1125), + [anon_sym_i16] = ACTIONS(1125), + [anon_sym_i32] = ACTIONS(1125), + [anon_sym_i64] = ACTIONS(1125), + [anon_sym_u8] = ACTIONS(1125), + [anon_sym_u16] = ACTIONS(1125), + [anon_sym_u32] = ACTIONS(1125), + [anon_sym_u64] = ACTIONS(1125), + [anon_sym_isize] = ACTIONS(1125), + [anon_sym_usize] = ACTIONS(1125), + [anon_sym_f32] = ACTIONS(1125), + [anon_sym_f64] = ACTIONS(1125), + [anon_sym_c_char] = ACTIONS(1125), + [anon_sym_c_schar] = ACTIONS(1125), + [anon_sym_c_uchar] = ACTIONS(1125), + [anon_sym_c_short] = ACTIONS(1125), + [anon_sym_c_ushort] = ACTIONS(1125), + [anon_sym_c_int] = ACTIONS(1125), + [anon_sym_c_uint] = ACTIONS(1125), + [anon_sym_c_long] = ACTIONS(1125), + [anon_sym_c_ulong] = ACTIONS(1125), + [anon_sym_c_longlong] = ACTIONS(1125), + [anon_sym_c_ulonglong] = ACTIONS(1125), + [anon_sym_c_float] = ACTIONS(1125), + [anon_sym_c_double] = ACTIONS(1125), + [anon_sym_c_longdouble] = ACTIONS(1125), + [anon_sym_return] = ACTIONS(1125), + [anon_sym_yield] = ACTIONS(1125), + [anon_sym_COLON] = ACTIONS(1123), + [anon_sym_break] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1125), + [anon_sym_defer] = ACTIONS(1125), + [anon_sym_errdefer] = ACTIONS(1125), + [anon_sym_if] = ACTIONS(1125), + [anon_sym_else] = ACTIONS(1125), + [anon_sym_while] = ACTIONS(1125), + [anon_sym_expand] = ACTIONS(1125), + [anon_sym_for] = ACTIONS(1125), + [anon_sym_match] = ACTIONS(1125), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1123), + [anon_sym_orelse] = ACTIONS(1125), + [anon_sym_catch] = ACTIONS(1125), + [anon_sym_or] = ACTIONS(1125), + [anon_sym_and] = ACTIONS(1125), + [anon_sym_EQ_EQ] = ACTIONS(1123), + [anon_sym_BANG_EQ] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_LT_EQ] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_EQ] = ACTIONS(1123), + [anon_sym_AMP] = ACTIONS(1123), + [anon_sym_xor] = ACTIONS(1125), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(1123), + [anon_sym_LT_LT_PIPE] = ACTIONS(1123), + [anon_sym_PLUS] = ACTIONS(1123), + [anon_sym_SLASH] = ACTIONS(1123), + [anon_sym_TILDE] = ACTIONS(1123), + [anon_sym_try] = ACTIONS(1125), + [anon_sym_DOT] = ACTIONS(1125), + [anon_sym_CARET] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [sym_none] = ACTIONS(1125), + [sym_undefined] = ACTIONS(1125), + [sym_sink] = ACTIONS(1125), + [sym_integer] = ACTIONS(1125), + [sym_float] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1123), + [sym_multiline_string] = ACTIONS(1123), + [sym_character] = ACTIONS(1123), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1123), + }, + [STATE(655)] = { + [ts_builtin_sym_end] = ACTIONS(1149), + [sym_identifier] = ACTIONS(1151), + [anon_sym_import] = ACTIONS(1151), + [anon_sym_test] = ACTIONS(1151), + [anon_sym_hide] = ACTIONS(1151), + [anon_sym_func] = ACTIONS(1151), + [anon_sym_BANG] = ACTIONS(1151), + [anon_sym_struct] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1149), + [anon_sym_LBRACE] = ACTIONS(1149), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_DASH] = ACTIONS(1149), + [anon_sym_DOLLAR] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1149), + [anon_sym_QMARK] = ACTIONS(1149), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_LBRACK] = ACTIONS(1149), + [anon_sym_void] = ACTIONS(1151), + [anon_sym_anyopaque] = ACTIONS(1151), + [anon_sym_bool] = ACTIONS(1151), + [anon_sym_int] = ACTIONS(1151), + [anon_sym_uint] = ACTIONS(1151), + [anon_sym_float] = ACTIONS(1151), + [anon_sym_range] = ACTIONS(1151), + [anon_sym_i8] = ACTIONS(1151), + [anon_sym_i16] = ACTIONS(1151), + [anon_sym_i32] = ACTIONS(1151), + [anon_sym_i64] = ACTIONS(1151), + [anon_sym_u8] = ACTIONS(1151), + [anon_sym_u16] = ACTIONS(1151), + [anon_sym_u32] = ACTIONS(1151), + [anon_sym_u64] = ACTIONS(1151), + [anon_sym_isize] = ACTIONS(1151), + [anon_sym_usize] = ACTIONS(1151), + [anon_sym_f32] = ACTIONS(1151), + [anon_sym_f64] = ACTIONS(1151), + [anon_sym_c_char] = ACTIONS(1151), + [anon_sym_c_schar] = ACTIONS(1151), + [anon_sym_c_uchar] = ACTIONS(1151), + [anon_sym_c_short] = ACTIONS(1151), + [anon_sym_c_ushort] = ACTIONS(1151), + [anon_sym_c_int] = ACTIONS(1151), + [anon_sym_c_uint] = ACTIONS(1151), + [anon_sym_c_long] = ACTIONS(1151), + [anon_sym_c_ulong] = ACTIONS(1151), + [anon_sym_c_longlong] = ACTIONS(1151), + [anon_sym_c_ulonglong] = ACTIONS(1151), + [anon_sym_c_float] = ACTIONS(1151), + [anon_sym_c_double] = ACTIONS(1151), + [anon_sym_c_longdouble] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_yield] = ACTIONS(1151), + [anon_sym_COLON] = ACTIONS(1149), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_defer] = ACTIONS(1151), + [anon_sym_errdefer] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_else] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_expand] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_match] = ACTIONS(1151), + [anon_sym_DOT_DOT] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1149), + [anon_sym_orelse] = ACTIONS(1151), + [anon_sym_catch] = ACTIONS(1151), + [anon_sym_or] = ACTIONS(1151), + [anon_sym_and] = ACTIONS(1151), + [anon_sym_EQ_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(1151), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1151), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1149), + [anon_sym_xor] = ACTIONS(1151), + [anon_sym_LT_LT] = ACTIONS(1151), + [anon_sym_GT_GT] = ACTIONS(1149), + [anon_sym_LT_LT_PIPE] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1149), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_DOT] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1149), + [anon_sym_true] = ACTIONS(1151), + [anon_sym_false] = ACTIONS(1151), + [sym_none] = ACTIONS(1151), + [sym_undefined] = ACTIONS(1151), + [sym_sink] = ACTIONS(1151), + [sym_integer] = ACTIONS(1151), + [sym_float] = ACTIONS(1149), + [anon_sym_DQUOTE] = ACTIONS(1149), + [sym_multiline_string] = ACTIONS(1149), + [sym_character] = ACTIONS(1149), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1149), + }, + [STATE(656)] = { + [ts_builtin_sym_end] = ACTIONS(1153), + [sym_identifier] = ACTIONS(1155), + [anon_sym_import] = ACTIONS(1155), + [anon_sym_test] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), + [anon_sym_func] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_struct] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACE] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_DOLLAR] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_STAR] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1153), + [anon_sym_void] = ACTIONS(1155), + [anon_sym_anyopaque] = ACTIONS(1155), + [anon_sym_bool] = ACTIONS(1155), + [anon_sym_int] = ACTIONS(1155), + [anon_sym_uint] = ACTIONS(1155), + [anon_sym_float] = ACTIONS(1155), + [anon_sym_range] = ACTIONS(1155), + [anon_sym_i8] = ACTIONS(1155), + [anon_sym_i16] = ACTIONS(1155), + [anon_sym_i32] = ACTIONS(1155), + [anon_sym_i64] = ACTIONS(1155), + [anon_sym_u8] = ACTIONS(1155), + [anon_sym_u16] = ACTIONS(1155), + [anon_sym_u32] = ACTIONS(1155), + [anon_sym_u64] = ACTIONS(1155), + [anon_sym_isize] = ACTIONS(1155), + [anon_sym_usize] = ACTIONS(1155), + [anon_sym_f32] = ACTIONS(1155), + [anon_sym_f64] = ACTIONS(1155), + [anon_sym_c_char] = ACTIONS(1155), + [anon_sym_c_schar] = ACTIONS(1155), + [anon_sym_c_uchar] = ACTIONS(1155), + [anon_sym_c_short] = ACTIONS(1155), + [anon_sym_c_ushort] = ACTIONS(1155), + [anon_sym_c_int] = ACTIONS(1155), + [anon_sym_c_uint] = ACTIONS(1155), + [anon_sym_c_long] = ACTIONS(1155), + [anon_sym_c_ulong] = ACTIONS(1155), + [anon_sym_c_longlong] = ACTIONS(1155), + [anon_sym_c_ulonglong] = ACTIONS(1155), + [anon_sym_c_float] = ACTIONS(1155), + [anon_sym_c_double] = ACTIONS(1155), + [anon_sym_c_longdouble] = ACTIONS(1155), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_yield] = ACTIONS(1155), + [anon_sym_COLON] = ACTIONS(1153), + [anon_sym_break] = ACTIONS(1155), + [anon_sym_continue] = ACTIONS(1155), + [anon_sym_defer] = ACTIONS(1155), + [anon_sym_errdefer] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1155), + [anon_sym_else] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1155), + [anon_sym_expand] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1155), + [anon_sym_match] = ACTIONS(1155), + [anon_sym_DOT_DOT] = ACTIONS(1155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1153), + [anon_sym_orelse] = ACTIONS(1155), + [anon_sym_catch] = ACTIONS(1155), + [anon_sym_or] = ACTIONS(1155), + [anon_sym_and] = ACTIONS(1155), + [anon_sym_EQ_EQ] = ACTIONS(1153), + [anon_sym_BANG_EQ] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1155), + [anon_sym_LT_EQ] = ACTIONS(1153), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_GT_EQ] = ACTIONS(1153), + [anon_sym_AMP] = ACTIONS(1153), + [anon_sym_xor] = ACTIONS(1155), + [anon_sym_LT_LT] = ACTIONS(1155), + [anon_sym_GT_GT] = ACTIONS(1153), + [anon_sym_LT_LT_PIPE] = ACTIONS(1153), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_SLASH] = ACTIONS(1153), + [anon_sym_TILDE] = ACTIONS(1153), + [anon_sym_try] = ACTIONS(1155), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_true] = ACTIONS(1155), + [anon_sym_false] = ACTIONS(1155), + [sym_none] = ACTIONS(1155), + [sym_undefined] = ACTIONS(1155), + [sym_sink] = ACTIONS(1155), + [sym_integer] = ACTIONS(1155), + [sym_float] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1153), + [sym_multiline_string] = ACTIONS(1153), + [sym_character] = ACTIONS(1153), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1153), + }, + [STATE(657)] = { + [ts_builtin_sym_end] = ACTIONS(785), + [sym_identifier] = ACTIONS(787), + [anon_sym_import] = ACTIONS(787), + [anon_sym_test] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_func] = ACTIONS(787), + [anon_sym_BANG] = ACTIONS(787), + [anon_sym_struct] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(785), + [anon_sym_LBRACE] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_DASH] = ACTIONS(785), + [anon_sym_DOLLAR] = ACTIONS(785), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_QMARK] = ACTIONS(785), + [anon_sym_STAR] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_void] = ACTIONS(787), + [anon_sym_anyopaque] = ACTIONS(787), + [anon_sym_bool] = ACTIONS(787), + [anon_sym_int] = ACTIONS(787), + [anon_sym_uint] = ACTIONS(787), + [anon_sym_float] = ACTIONS(787), + [anon_sym_range] = ACTIONS(787), + [anon_sym_i8] = ACTIONS(787), + [anon_sym_i16] = ACTIONS(787), + [anon_sym_i32] = ACTIONS(787), + [anon_sym_i64] = ACTIONS(787), + [anon_sym_u8] = ACTIONS(787), + [anon_sym_u16] = ACTIONS(787), + [anon_sym_u32] = ACTIONS(787), + [anon_sym_u64] = ACTIONS(787), + [anon_sym_isize] = ACTIONS(787), + [anon_sym_usize] = ACTIONS(787), + [anon_sym_f32] = ACTIONS(787), + [anon_sym_f64] = ACTIONS(787), + [anon_sym_c_char] = ACTIONS(787), + [anon_sym_c_schar] = ACTIONS(787), + [anon_sym_c_uchar] = ACTIONS(787), + [anon_sym_c_short] = ACTIONS(787), + [anon_sym_c_ushort] = ACTIONS(787), + [anon_sym_c_int] = ACTIONS(787), + [anon_sym_c_uint] = ACTIONS(787), + [anon_sym_c_long] = ACTIONS(787), + [anon_sym_c_ulong] = ACTIONS(787), + [anon_sym_c_longlong] = ACTIONS(787), + [anon_sym_c_ulonglong] = ACTIONS(787), + [anon_sym_c_float] = ACTIONS(787), + [anon_sym_c_double] = ACTIONS(787), + [anon_sym_c_longdouble] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_yield] = ACTIONS(787), + [anon_sym_COLON] = ACTIONS(785), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_defer] = ACTIONS(787), + [anon_sym_errdefer] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_else] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_expand] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(785), + [anon_sym_orelse] = ACTIONS(787), + [anon_sym_catch] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(785), + [anon_sym_BANG_EQ] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(785), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(785), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_LT_LT] = ACTIONS(787), + [anon_sym_GT_GT] = ACTIONS(785), + [anon_sym_LT_LT_PIPE] = ACTIONS(785), + [anon_sym_PLUS] = ACTIONS(785), + [anon_sym_SLASH] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_try] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(785), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [sym_none] = ACTIONS(787), + [sym_undefined] = ACTIONS(787), + [sym_sink] = ACTIONS(787), + [sym_integer] = ACTIONS(787), + [sym_float] = ACTIONS(785), + [anon_sym_DQUOTE] = ACTIONS(785), + [sym_multiline_string] = ACTIONS(785), + [sym_character] = ACTIONS(785), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(785), + }, + [STATE(658)] = { + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_test] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), + [anon_sym_func] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = ACTIONS(1051), + [anon_sym_uint] = ACTIONS(1051), + [anon_sym_float] = ACTIONS(1051), + [anon_sym_range] = ACTIONS(1051), + [anon_sym_i8] = ACTIONS(1051), + [anon_sym_i16] = ACTIONS(1051), + [anon_sym_i32] = ACTIONS(1051), + [anon_sym_i64] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1051), + [anon_sym_u16] = ACTIONS(1051), + [anon_sym_u32] = ACTIONS(1051), + [anon_sym_u64] = ACTIONS(1051), + [anon_sym_isize] = ACTIONS(1051), + [anon_sym_usize] = ACTIONS(1051), + [anon_sym_f32] = ACTIONS(1051), + [anon_sym_f64] = ACTIONS(1051), + [anon_sym_c_char] = ACTIONS(1051), + [anon_sym_c_schar] = ACTIONS(1051), + [anon_sym_c_uchar] = ACTIONS(1051), + [anon_sym_c_short] = ACTIONS(1051), + [anon_sym_c_ushort] = ACTIONS(1051), + [anon_sym_c_int] = ACTIONS(1051), + [anon_sym_c_uint] = ACTIONS(1051), + [anon_sym_c_long] = ACTIONS(1051), + [anon_sym_c_ulong] = ACTIONS(1051), + [anon_sym_c_longlong] = ACTIONS(1051), + [anon_sym_c_ulonglong] = ACTIONS(1051), + [anon_sym_c_float] = ACTIONS(1051), + [anon_sym_c_double] = ACTIONS(1051), + [anon_sym_c_longdouble] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_defer] = ACTIONS(1051), + [anon_sym_errdefer] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_expand] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_match] = ACTIONS(1051), + [anon_sym_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1049), + [anon_sym_orelse] = ACTIONS(1051), + [anon_sym_catch] = ACTIONS(1051), + [anon_sym_or] = ACTIONS(1051), + [anon_sym_and] = ACTIONS(1051), + [anon_sym_EQ_EQ] = ACTIONS(1049), + [anon_sym_BANG_EQ] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1049), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_EQ] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_xor] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_LT_LT_PIPE] = ACTIONS(1049), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [sym_none] = ACTIONS(1051), + [sym_undefined] = ACTIONS(1051), + [sym_sink] = ACTIONS(1051), + [sym_integer] = ACTIONS(1051), + [sym_float] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_multiline_string] = ACTIONS(1049), + [sym_character] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1049), + }, + [STATE(659)] = { + [ts_builtin_sym_end] = ACTIONS(789), + [sym_identifier] = ACTIONS(791), + [anon_sym_import] = ACTIONS(791), + [anon_sym_test] = ACTIONS(791), + [anon_sym_hide] = ACTIONS(791), + [anon_sym_func] = ACTIONS(791), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_struct] = ACTIONS(791), + [anon_sym_LPAREN] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_RBRACE] = ACTIONS(789), + [anon_sym_DASH] = ACTIONS(789), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_PIPE] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(789), + [anon_sym_STAR] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_void] = ACTIONS(791), + [anon_sym_anyopaque] = ACTIONS(791), + [anon_sym_bool] = ACTIONS(791), + [anon_sym_int] = ACTIONS(791), + [anon_sym_uint] = ACTIONS(791), + [anon_sym_float] = ACTIONS(791), + [anon_sym_range] = ACTIONS(791), + [anon_sym_i8] = ACTIONS(791), + [anon_sym_i16] = ACTIONS(791), + [anon_sym_i32] = ACTIONS(791), + [anon_sym_i64] = ACTIONS(791), + [anon_sym_u8] = ACTIONS(791), + [anon_sym_u16] = ACTIONS(791), + [anon_sym_u32] = ACTIONS(791), + [anon_sym_u64] = ACTIONS(791), + [anon_sym_isize] = ACTIONS(791), + [anon_sym_usize] = ACTIONS(791), + [anon_sym_f32] = ACTIONS(791), + [anon_sym_f64] = ACTIONS(791), + [anon_sym_c_char] = ACTIONS(791), + [anon_sym_c_schar] = ACTIONS(791), + [anon_sym_c_uchar] = ACTIONS(791), + [anon_sym_c_short] = ACTIONS(791), + [anon_sym_c_ushort] = ACTIONS(791), + [anon_sym_c_int] = ACTIONS(791), + [anon_sym_c_uint] = ACTIONS(791), + [anon_sym_c_long] = ACTIONS(791), + [anon_sym_c_ulong] = ACTIONS(791), + [anon_sym_c_longlong] = ACTIONS(791), + [anon_sym_c_ulonglong] = ACTIONS(791), + [anon_sym_c_float] = ACTIONS(791), + [anon_sym_c_double] = ACTIONS(791), + [anon_sym_c_longdouble] = ACTIONS(791), + [anon_sym_return] = ACTIONS(791), + [anon_sym_yield] = ACTIONS(791), + [anon_sym_COLON] = ACTIONS(789), + [anon_sym_break] = ACTIONS(791), + [anon_sym_continue] = ACTIONS(791), + [anon_sym_defer] = ACTIONS(791), + [anon_sym_errdefer] = ACTIONS(791), + [anon_sym_if] = ACTIONS(791), + [anon_sym_else] = ACTIONS(791), + [anon_sym_while] = ACTIONS(791), + [anon_sym_expand] = ACTIONS(791), + [anon_sym_for] = ACTIONS(791), + [anon_sym_match] = ACTIONS(791), + [anon_sym_DOT_DOT] = ACTIONS(791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(789), + [anon_sym_orelse] = ACTIONS(791), + [anon_sym_catch] = ACTIONS(791), + [anon_sym_or] = ACTIONS(791), + [anon_sym_and] = ACTIONS(791), + [anon_sym_EQ_EQ] = ACTIONS(789), + [anon_sym_BANG_EQ] = ACTIONS(789), + [anon_sym_LT] = ACTIONS(791), + [anon_sym_LT_EQ] = ACTIONS(789), + [anon_sym_GT] = ACTIONS(791), + [anon_sym_GT_EQ] = ACTIONS(789), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_xor] = ACTIONS(791), + [anon_sym_LT_LT] = ACTIONS(791), + [anon_sym_GT_GT] = ACTIONS(789), + [anon_sym_LT_LT_PIPE] = ACTIONS(789), + [anon_sym_PLUS] = ACTIONS(789), + [anon_sym_SLASH] = ACTIONS(789), + [anon_sym_TILDE] = ACTIONS(789), + [anon_sym_try] = ACTIONS(791), + [anon_sym_DOT] = ACTIONS(791), + [anon_sym_CARET] = ACTIONS(789), + [anon_sym_true] = ACTIONS(791), + [anon_sym_false] = ACTIONS(791), + [sym_none] = ACTIONS(791), + [sym_undefined] = ACTIONS(791), + [sym_sink] = ACTIONS(791), + [sym_integer] = ACTIONS(791), + [sym_float] = ACTIONS(789), + [anon_sym_DQUOTE] = ACTIONS(789), + [sym_multiline_string] = ACTIONS(789), + [sym_character] = ACTIONS(789), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(789), + }, + [STATE(660)] = { + [ts_builtin_sym_end] = ACTIONS(1053), + [sym_identifier] = ACTIONS(1055), + [anon_sym_import] = ACTIONS(1055), + [anon_sym_test] = ACTIONS(1055), + [anon_sym_hide] = ACTIONS(1055), + [anon_sym_func] = ACTIONS(1055), + [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_struct] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_DASH] = ACTIONS(1053), + [anon_sym_DOLLAR] = ACTIONS(1053), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_QMARK] = ACTIONS(1053), + [anon_sym_STAR] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1053), + [anon_sym_void] = ACTIONS(1055), + [anon_sym_anyopaque] = ACTIONS(1055), + [anon_sym_bool] = ACTIONS(1055), + [anon_sym_int] = ACTIONS(1055), + [anon_sym_uint] = ACTIONS(1055), + [anon_sym_float] = ACTIONS(1055), + [anon_sym_range] = ACTIONS(1055), + [anon_sym_i8] = ACTIONS(1055), + [anon_sym_i16] = ACTIONS(1055), + [anon_sym_i32] = ACTIONS(1055), + [anon_sym_i64] = ACTIONS(1055), + [anon_sym_u8] = ACTIONS(1055), + [anon_sym_u16] = ACTIONS(1055), + [anon_sym_u32] = ACTIONS(1055), + [anon_sym_u64] = ACTIONS(1055), + [anon_sym_isize] = ACTIONS(1055), + [anon_sym_usize] = ACTIONS(1055), + [anon_sym_f32] = ACTIONS(1055), + [anon_sym_f64] = ACTIONS(1055), + [anon_sym_c_char] = ACTIONS(1055), + [anon_sym_c_schar] = ACTIONS(1055), + [anon_sym_c_uchar] = ACTIONS(1055), + [anon_sym_c_short] = ACTIONS(1055), + [anon_sym_c_ushort] = ACTIONS(1055), + [anon_sym_c_int] = ACTIONS(1055), + [anon_sym_c_uint] = ACTIONS(1055), + [anon_sym_c_long] = ACTIONS(1055), + [anon_sym_c_ulong] = ACTIONS(1055), + [anon_sym_c_longlong] = ACTIONS(1055), + [anon_sym_c_ulonglong] = ACTIONS(1055), + [anon_sym_c_float] = ACTIONS(1055), + [anon_sym_c_double] = ACTIONS(1055), + [anon_sym_c_longdouble] = ACTIONS(1055), + [anon_sym_return] = ACTIONS(1055), + [anon_sym_yield] = ACTIONS(1055), + [anon_sym_COLON] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1055), + [anon_sym_continue] = ACTIONS(1055), + [anon_sym_defer] = ACTIONS(1055), + [anon_sym_errdefer] = ACTIONS(1055), + [anon_sym_if] = ACTIONS(1055), + [anon_sym_else] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_expand] = ACTIONS(1055), + [anon_sym_for] = ACTIONS(1055), + [anon_sym_match] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1053), + [anon_sym_orelse] = ACTIONS(1055), + [anon_sym_catch] = ACTIONS(1055), + [anon_sym_or] = ACTIONS(1055), + [anon_sym_and] = ACTIONS(1055), + [anon_sym_EQ_EQ] = ACTIONS(1053), + [anon_sym_BANG_EQ] = ACTIONS(1053), + [anon_sym_LT] = ACTIONS(1055), + [anon_sym_LT_EQ] = ACTIONS(1053), + [anon_sym_GT] = ACTIONS(1055), + [anon_sym_GT_EQ] = ACTIONS(1053), + [anon_sym_AMP] = ACTIONS(1053), + [anon_sym_xor] = ACTIONS(1055), + [anon_sym_LT_LT] = ACTIONS(1055), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_LT_LT_PIPE] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1053), + [anon_sym_try] = ACTIONS(1055), + [anon_sym_DOT] = ACTIONS(1055), + [anon_sym_CARET] = ACTIONS(1053), + [anon_sym_true] = ACTIONS(1055), + [anon_sym_false] = ACTIONS(1055), + [sym_none] = ACTIONS(1055), + [sym_undefined] = ACTIONS(1055), + [sym_sink] = ACTIONS(1055), + [sym_integer] = ACTIONS(1055), + [sym_float] = ACTIONS(1053), + [anon_sym_DQUOTE] = ACTIONS(1053), + [sym_multiline_string] = ACTIONS(1053), + [sym_character] = ACTIONS(1053), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1053), + }, + [STATE(661)] = { + [ts_builtin_sym_end] = ACTIONS(865), + [sym_identifier] = ACTIONS(867), + [anon_sym_import] = ACTIONS(867), + [anon_sym_test] = ACTIONS(867), + [anon_sym_hide] = ACTIONS(867), + [anon_sym_func] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_void] = ACTIONS(867), + [anon_sym_anyopaque] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_int] = ACTIONS(867), + [anon_sym_uint] = ACTIONS(867), + [anon_sym_float] = ACTIONS(867), + [anon_sym_range] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_c_char] = ACTIONS(867), + [anon_sym_c_schar] = ACTIONS(867), + [anon_sym_c_uchar] = ACTIONS(867), + [anon_sym_c_short] = ACTIONS(867), + [anon_sym_c_ushort] = ACTIONS(867), + [anon_sym_c_int] = ACTIONS(867), + [anon_sym_c_uint] = ACTIONS(867), + [anon_sym_c_long] = ACTIONS(867), + [anon_sym_c_ulong] = ACTIONS(867), + [anon_sym_c_longlong] = ACTIONS(867), + [anon_sym_c_ulonglong] = ACTIONS(867), + [anon_sym_c_float] = ACTIONS(867), + [anon_sym_c_double] = ACTIONS(867), + [anon_sym_c_longdouble] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_yield] = ACTIONS(867), + [anon_sym_COLON] = ACTIONS(865), + [anon_sym_break] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_defer] = ACTIONS(867), + [anon_sym_errdefer] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_else] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [anon_sym_expand] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_orelse] = ACTIONS(867), + [anon_sym_catch] = ACTIONS(867), + [anon_sym_or] = ACTIONS(867), + [anon_sym_and] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(867), + [anon_sym_LT_LT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_LT_LT_PIPE] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [sym_none] = ACTIONS(867), + [sym_undefined] = ACTIONS(867), + [sym_sink] = ACTIONS(867), + [sym_integer] = ACTIONS(867), + [sym_float] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym_multiline_string] = ACTIONS(865), + [sym_character] = ACTIONS(865), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(865), }, [STATE(662)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(871), + [anon_sym_import] = ACTIONS(871), + [anon_sym_test] = ACTIONS(871), + [anon_sym_hide] = ACTIONS(871), + [anon_sym_func] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_struct] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_void] = ACTIONS(871), + [anon_sym_anyopaque] = ACTIONS(871), + [anon_sym_bool] = ACTIONS(871), + [anon_sym_int] = ACTIONS(871), + [anon_sym_uint] = ACTIONS(871), + [anon_sym_float] = ACTIONS(871), + [anon_sym_range] = ACTIONS(871), + [anon_sym_i8] = ACTIONS(871), + [anon_sym_i16] = ACTIONS(871), + [anon_sym_i32] = ACTIONS(871), + [anon_sym_i64] = ACTIONS(871), + [anon_sym_u8] = ACTIONS(871), + [anon_sym_u16] = ACTIONS(871), + [anon_sym_u32] = ACTIONS(871), + [anon_sym_u64] = ACTIONS(871), + [anon_sym_isize] = ACTIONS(871), + [anon_sym_usize] = ACTIONS(871), + [anon_sym_f32] = ACTIONS(871), + [anon_sym_f64] = ACTIONS(871), + [anon_sym_c_char] = ACTIONS(871), + [anon_sym_c_schar] = ACTIONS(871), + [anon_sym_c_uchar] = ACTIONS(871), + [anon_sym_c_short] = ACTIONS(871), + [anon_sym_c_ushort] = ACTIONS(871), + [anon_sym_c_int] = ACTIONS(871), + [anon_sym_c_uint] = ACTIONS(871), + [anon_sym_c_long] = ACTIONS(871), + [anon_sym_c_ulong] = ACTIONS(871), + [anon_sym_c_longlong] = ACTIONS(871), + [anon_sym_c_ulonglong] = ACTIONS(871), + [anon_sym_c_float] = ACTIONS(871), + [anon_sym_c_double] = ACTIONS(871), + [anon_sym_c_longdouble] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(871), + [anon_sym_COLON] = ACTIONS(869), + [anon_sym_break] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_defer] = ACTIONS(871), + [anon_sym_errdefer] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_else] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_expand] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_match] = ACTIONS(871), + [anon_sym_DOT_DOT] = ACTIONS(871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_orelse] = ACTIONS(871), + [anon_sym_catch] = ACTIONS(871), + [anon_sym_or] = ACTIONS(871), + [anon_sym_and] = ACTIONS(871), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(871), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_AMP] = ACTIONS(869), + [anon_sym_xor] = ACTIONS(871), + [anon_sym_LT_LT] = ACTIONS(871), + [anon_sym_GT_GT] = ACTIONS(869), + [anon_sym_LT_LT_PIPE] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_try] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(871), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [sym_none] = ACTIONS(871), + [sym_undefined] = ACTIONS(871), + [sym_sink] = ACTIONS(871), + [sym_integer] = ACTIONS(871), + [sym_float] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_multiline_string] = ACTIONS(869), + [sym_character] = ACTIONS(869), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(869), }, [STATE(663)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(873), + [sym_identifier] = ACTIONS(875), + [anon_sym_import] = ACTIONS(875), + [anon_sym_test] = ACTIONS(875), + [anon_sym_hide] = ACTIONS(875), + [anon_sym_func] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_QMARK] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_void] = ACTIONS(875), + [anon_sym_anyopaque] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_int] = ACTIONS(875), + [anon_sym_uint] = ACTIONS(875), + [anon_sym_float] = ACTIONS(875), + [anon_sym_range] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_c_char] = ACTIONS(875), + [anon_sym_c_schar] = ACTIONS(875), + [anon_sym_c_uchar] = ACTIONS(875), + [anon_sym_c_short] = ACTIONS(875), + [anon_sym_c_ushort] = ACTIONS(875), + [anon_sym_c_int] = ACTIONS(875), + [anon_sym_c_uint] = ACTIONS(875), + [anon_sym_c_long] = ACTIONS(875), + [anon_sym_c_ulong] = ACTIONS(875), + [anon_sym_c_longlong] = ACTIONS(875), + [anon_sym_c_ulonglong] = ACTIONS(875), + [anon_sym_c_float] = ACTIONS(875), + [anon_sym_c_double] = ACTIONS(875), + [anon_sym_c_longdouble] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(875), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_break] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_defer] = ACTIONS(875), + [anon_sym_errdefer] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_else] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [anon_sym_expand] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_DOT_DOT] = ACTIONS(875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [anon_sym_orelse] = ACTIONS(875), + [anon_sym_catch] = ACTIONS(875), + [anon_sym_or] = ACTIONS(875), + [anon_sym_and] = ACTIONS(875), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), + [anon_sym_xor] = ACTIONS(875), + [anon_sym_LT_LT] = ACTIONS(875), + [anon_sym_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT_PIPE] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_try] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [sym_none] = ACTIONS(875), + [sym_undefined] = ACTIONS(875), + [sym_sink] = ACTIONS(875), + [sym_integer] = ACTIONS(875), + [sym_float] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym_multiline_string] = ACTIONS(873), + [sym_character] = ACTIONS(873), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(873), }, [STATE(664)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(877), + [sym_identifier] = ACTIONS(879), + [anon_sym_import] = ACTIONS(879), + [anon_sym_test] = ACTIONS(879), + [anon_sym_hide] = ACTIONS(879), + [anon_sym_func] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [anon_sym_struct] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_void] = ACTIONS(879), + [anon_sym_anyopaque] = ACTIONS(879), + [anon_sym_bool] = ACTIONS(879), + [anon_sym_int] = ACTIONS(879), + [anon_sym_uint] = ACTIONS(879), + [anon_sym_float] = ACTIONS(879), + [anon_sym_range] = ACTIONS(879), + [anon_sym_i8] = ACTIONS(879), + [anon_sym_i16] = ACTIONS(879), + [anon_sym_i32] = ACTIONS(879), + [anon_sym_i64] = ACTIONS(879), + [anon_sym_u8] = ACTIONS(879), + [anon_sym_u16] = ACTIONS(879), + [anon_sym_u32] = ACTIONS(879), + [anon_sym_u64] = ACTIONS(879), + [anon_sym_isize] = ACTIONS(879), + [anon_sym_usize] = ACTIONS(879), + [anon_sym_f32] = ACTIONS(879), + [anon_sym_f64] = ACTIONS(879), + [anon_sym_c_char] = ACTIONS(879), + [anon_sym_c_schar] = ACTIONS(879), + [anon_sym_c_uchar] = ACTIONS(879), + [anon_sym_c_short] = ACTIONS(879), + [anon_sym_c_ushort] = ACTIONS(879), + [anon_sym_c_int] = ACTIONS(879), + [anon_sym_c_uint] = ACTIONS(879), + [anon_sym_c_long] = ACTIONS(879), + [anon_sym_c_ulong] = ACTIONS(879), + [anon_sym_c_longlong] = ACTIONS(879), + [anon_sym_c_ulonglong] = ACTIONS(879), + [anon_sym_c_float] = ACTIONS(879), + [anon_sym_c_double] = ACTIONS(879), + [anon_sym_c_longdouble] = ACTIONS(879), + [anon_sym_return] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(879), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_break] = ACTIONS(879), + [anon_sym_continue] = ACTIONS(879), + [anon_sym_defer] = ACTIONS(879), + [anon_sym_errdefer] = ACTIONS(879), + [anon_sym_if] = ACTIONS(879), + [anon_sym_else] = ACTIONS(879), + [anon_sym_while] = ACTIONS(879), + [anon_sym_expand] = ACTIONS(879), + [anon_sym_for] = ACTIONS(879), + [anon_sym_match] = ACTIONS(879), + [anon_sym_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [anon_sym_orelse] = ACTIONS(879), + [anon_sym_catch] = ACTIONS(879), + [anon_sym_or] = ACTIONS(879), + [anon_sym_and] = ACTIONS(879), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(879), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_LT_LT_PIPE] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_try] = ACTIONS(879), + [anon_sym_DOT] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_true] = ACTIONS(879), + [anon_sym_false] = ACTIONS(879), + [sym_none] = ACTIONS(879), + [sym_undefined] = ACTIONS(879), + [sym_sink] = ACTIONS(879), + [sym_integer] = ACTIONS(879), + [sym_float] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym_multiline_string] = ACTIONS(877), + [sym_character] = ACTIONS(877), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(877), }, [STATE(665)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1635), - [sym_labeled_block] = STATE(1635), - [sym_if_statement] = STATE(1635), - [sym_while_statement] = STATE(1635), - [sym_for_statement] = STATE(1635), - [sym_match_statement] = STATE(1635), - [sym__value] = STATE(1635), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(623), + [anon_sym_import] = ACTIONS(623), + [anon_sym_test] = ACTIONS(623), + [anon_sym_hide] = ACTIONS(623), + [anon_sym_func] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_struct] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(621), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(621), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_void] = ACTIONS(623), + [anon_sym_anyopaque] = ACTIONS(623), + [anon_sym_bool] = ACTIONS(623), + [anon_sym_int] = ACTIONS(623), + [anon_sym_uint] = ACTIONS(623), + [anon_sym_float] = ACTIONS(623), + [anon_sym_range] = ACTIONS(623), + [anon_sym_i8] = ACTIONS(623), + [anon_sym_i16] = ACTIONS(623), + [anon_sym_i32] = ACTIONS(623), + [anon_sym_i64] = ACTIONS(623), + [anon_sym_u8] = ACTIONS(623), + [anon_sym_u16] = ACTIONS(623), + [anon_sym_u32] = ACTIONS(623), + [anon_sym_u64] = ACTIONS(623), + [anon_sym_isize] = ACTIONS(623), + [anon_sym_usize] = ACTIONS(623), + [anon_sym_f32] = ACTIONS(623), + [anon_sym_f64] = ACTIONS(623), + [anon_sym_c_char] = ACTIONS(623), + [anon_sym_c_schar] = ACTIONS(623), + [anon_sym_c_uchar] = ACTIONS(623), + [anon_sym_c_short] = ACTIONS(623), + [anon_sym_c_ushort] = ACTIONS(623), + [anon_sym_c_int] = ACTIONS(623), + [anon_sym_c_uint] = ACTIONS(623), + [anon_sym_c_long] = ACTIONS(623), + [anon_sym_c_ulong] = ACTIONS(623), + [anon_sym_c_longlong] = ACTIONS(623), + [anon_sym_c_ulonglong] = ACTIONS(623), + [anon_sym_c_float] = ACTIONS(623), + [anon_sym_c_double] = ACTIONS(623), + [anon_sym_c_longdouble] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_yield] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_errdefer] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_else] = ACTIONS(623), + [anon_sym_while] = ACTIONS(623), + [anon_sym_expand] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(621), + [anon_sym_orelse] = ACTIONS(623), + [anon_sym_catch] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_and] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_xor] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_LT_LT_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_SLASH] = ACTIONS(621), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_try] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_true] = ACTIONS(623), + [anon_sym_false] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_undefined] = ACTIONS(623), + [sym_sink] = ACTIONS(623), + [sym_integer] = ACTIONS(623), + [sym_float] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(621), + [sym_multiline_string] = ACTIONS(621), + [sym_character] = ACTIONS(621), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(621), }, [STATE(666)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1650), - [sym_labeled_block] = STATE(1650), - [sym_if_statement] = STATE(1650), - [sym_while_statement] = STATE(1650), - [sym_for_statement] = STATE(1650), - [sym_match_statement] = STATE(1650), - [sym__value] = STATE(1650), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(595), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(793), + [sym_identifier] = ACTIONS(795), + [anon_sym_import] = ACTIONS(795), + [anon_sym_test] = ACTIONS(795), + [anon_sym_hide] = ACTIONS(795), + [anon_sym_func] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_struct] = ACTIONS(795), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_QMARK] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_void] = ACTIONS(795), + [anon_sym_anyopaque] = ACTIONS(795), + [anon_sym_bool] = ACTIONS(795), + [anon_sym_int] = ACTIONS(795), + [anon_sym_uint] = ACTIONS(795), + [anon_sym_float] = ACTIONS(795), + [anon_sym_range] = ACTIONS(795), + [anon_sym_i8] = ACTIONS(795), + [anon_sym_i16] = ACTIONS(795), + [anon_sym_i32] = ACTIONS(795), + [anon_sym_i64] = ACTIONS(795), + [anon_sym_u8] = ACTIONS(795), + [anon_sym_u16] = ACTIONS(795), + [anon_sym_u32] = ACTIONS(795), + [anon_sym_u64] = ACTIONS(795), + [anon_sym_isize] = ACTIONS(795), + [anon_sym_usize] = ACTIONS(795), + [anon_sym_f32] = ACTIONS(795), + [anon_sym_f64] = ACTIONS(795), + [anon_sym_c_char] = ACTIONS(795), + [anon_sym_c_schar] = ACTIONS(795), + [anon_sym_c_uchar] = ACTIONS(795), + [anon_sym_c_short] = ACTIONS(795), + [anon_sym_c_ushort] = ACTIONS(795), + [anon_sym_c_int] = ACTIONS(795), + [anon_sym_c_uint] = ACTIONS(795), + [anon_sym_c_long] = ACTIONS(795), + [anon_sym_c_ulong] = ACTIONS(795), + [anon_sym_c_longlong] = ACTIONS(795), + [anon_sym_c_ulonglong] = ACTIONS(795), + [anon_sym_c_float] = ACTIONS(795), + [anon_sym_c_double] = ACTIONS(795), + [anon_sym_c_longdouble] = ACTIONS(795), + [anon_sym_return] = ACTIONS(795), + [anon_sym_yield] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(793), + [anon_sym_break] = ACTIONS(795), + [anon_sym_continue] = ACTIONS(795), + [anon_sym_defer] = ACTIONS(795), + [anon_sym_errdefer] = ACTIONS(795), + [anon_sym_if] = ACTIONS(795), + [anon_sym_else] = ACTIONS(795), + [anon_sym_while] = ACTIONS(795), + [anon_sym_expand] = ACTIONS(795), + [anon_sym_for] = ACTIONS(795), + [anon_sym_match] = ACTIONS(795), + [anon_sym_DOT_DOT] = ACTIONS(795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(793), + [anon_sym_orelse] = ACTIONS(795), + [anon_sym_catch] = ACTIONS(795), + [anon_sym_or] = ACTIONS(795), + [anon_sym_and] = ACTIONS(795), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(795), + [anon_sym_LT_LT] = ACTIONS(795), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_try] = ACTIONS(795), + [anon_sym_DOT] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_true] = ACTIONS(795), + [anon_sym_false] = ACTIONS(795), + [sym_none] = ACTIONS(795), + [sym_undefined] = ACTIONS(795), + [sym_sink] = ACTIONS(795), + [sym_integer] = ACTIONS(795), + [sym_float] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [sym_multiline_string] = ACTIONS(793), + [sym_character] = ACTIONS(793), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1593), + [sym__newline] = ACTIONS(793), }, [STATE(667)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1656), - [sym_labeled_block] = STATE(1656), - [sym_if_statement] = STATE(1656), - [sym_while_statement] = STATE(1656), - [sym_for_statement] = STATE(1656), - [sym_match_statement] = STATE(1656), - [sym__value] = STATE(1656), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(596), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(258), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(258), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_struct] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(253), + [anon_sym_STAR] = ACTIONS(253), [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_void] = ACTIONS(258), + [anon_sym_anyopaque] = ACTIONS(258), + [anon_sym_bool] = ACTIONS(258), + [anon_sym_int] = ACTIONS(258), + [anon_sym_uint] = ACTIONS(258), + [anon_sym_float] = ACTIONS(258), + [anon_sym_range] = ACTIONS(258), + [anon_sym_i8] = ACTIONS(258), + [anon_sym_i16] = ACTIONS(258), + [anon_sym_i32] = ACTIONS(258), + [anon_sym_i64] = ACTIONS(258), + [anon_sym_u8] = ACTIONS(258), + [anon_sym_u16] = ACTIONS(258), + [anon_sym_u32] = ACTIONS(258), + [anon_sym_u64] = ACTIONS(258), + [anon_sym_isize] = ACTIONS(258), + [anon_sym_usize] = ACTIONS(258), + [anon_sym_f32] = ACTIONS(258), + [anon_sym_f64] = ACTIONS(258), + [anon_sym_c_char] = ACTIONS(258), + [anon_sym_c_schar] = ACTIONS(258), + [anon_sym_c_uchar] = ACTIONS(258), + [anon_sym_c_short] = ACTIONS(258), + [anon_sym_c_ushort] = ACTIONS(258), + [anon_sym_c_int] = ACTIONS(258), + [anon_sym_c_uint] = ACTIONS(258), + [anon_sym_c_long] = ACTIONS(258), + [anon_sym_c_ulong] = ACTIONS(258), + [anon_sym_c_longlong] = ACTIONS(258), + [anon_sym_c_ulonglong] = ACTIONS(258), + [anon_sym_c_float] = ACTIONS(258), + [anon_sym_c_double] = ACTIONS(258), + [anon_sym_c_longdouble] = ACTIONS(258), + [anon_sym_return] = ACTIONS(258), + [anon_sym_yield] = ACTIONS(258), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_break] = ACTIONS(258), + [anon_sym_continue] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(258), + [anon_sym_errdefer] = ACTIONS(258), + [anon_sym_if] = ACTIONS(258), + [anon_sym_else] = ACTIONS(258), + [anon_sym_while] = ACTIONS(258), + [anon_sym_expand] = ACTIONS(258), + [anon_sym_for] = ACTIONS(258), + [anon_sym_match] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_try] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_true] = ACTIONS(258), + [anon_sym_false] = ACTIONS(258), + [sym_none] = ACTIONS(258), + [sym_undefined] = ACTIONS(258), + [sym_sink] = ACTIONS(258), + [sym_integer] = ACTIONS(258), + [sym_float] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_multiline_string] = ACTIONS(253), + [sym_character] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1595), + [sym__newline] = ACTIONS(253), }, [STATE(668)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1056), - [sym_labeled_block] = STATE(1056), - [sym_if_statement] = STATE(1056), - [sym_while_statement] = STATE(1056), - [sym_for_statement] = STATE(1056), - [sym_match_statement] = STATE(1056), - [sym__value] = STATE(1056), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(889), + [sym_identifier] = ACTIONS(891), + [anon_sym_import] = ACTIONS(891), + [anon_sym_test] = ACTIONS(891), + [anon_sym_hide] = ACTIONS(891), + [anon_sym_func] = ACTIONS(891), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_struct] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_void] = ACTIONS(891), + [anon_sym_anyopaque] = ACTIONS(891), + [anon_sym_bool] = ACTIONS(891), + [anon_sym_int] = ACTIONS(891), + [anon_sym_uint] = ACTIONS(891), + [anon_sym_float] = ACTIONS(891), + [anon_sym_range] = ACTIONS(891), + [anon_sym_i8] = ACTIONS(891), + [anon_sym_i16] = ACTIONS(891), + [anon_sym_i32] = ACTIONS(891), + [anon_sym_i64] = ACTIONS(891), + [anon_sym_u8] = ACTIONS(891), + [anon_sym_u16] = ACTIONS(891), + [anon_sym_u32] = ACTIONS(891), + [anon_sym_u64] = ACTIONS(891), + [anon_sym_isize] = ACTIONS(891), + [anon_sym_usize] = ACTIONS(891), + [anon_sym_f32] = ACTIONS(891), + [anon_sym_f64] = ACTIONS(891), + [anon_sym_c_char] = ACTIONS(891), + [anon_sym_c_schar] = ACTIONS(891), + [anon_sym_c_uchar] = ACTIONS(891), + [anon_sym_c_short] = ACTIONS(891), + [anon_sym_c_ushort] = ACTIONS(891), + [anon_sym_c_int] = ACTIONS(891), + [anon_sym_c_uint] = ACTIONS(891), + [anon_sym_c_long] = ACTIONS(891), + [anon_sym_c_ulong] = ACTIONS(891), + [anon_sym_c_longlong] = ACTIONS(891), + [anon_sym_c_ulonglong] = ACTIONS(891), + [anon_sym_c_float] = ACTIONS(891), + [anon_sym_c_double] = ACTIONS(891), + [anon_sym_c_longdouble] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(891), + [anon_sym_COLON] = ACTIONS(889), + [anon_sym_break] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_defer] = ACTIONS(891), + [anon_sym_errdefer] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_while] = ACTIONS(891), + [anon_sym_expand] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_match] = ACTIONS(891), + [anon_sym_DOT_DOT] = ACTIONS(891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [anon_sym_orelse] = ACTIONS(891), + [anon_sym_catch] = ACTIONS(891), + [anon_sym_or] = ACTIONS(891), + [anon_sym_and] = ACTIONS(891), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(891), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_AMP] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(891), + [anon_sym_LT_LT] = ACTIONS(891), + [anon_sym_GT_GT] = ACTIONS(889), + [anon_sym_LT_LT_PIPE] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_try] = ACTIONS(891), + [anon_sym_DOT] = ACTIONS(891), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_true] = ACTIONS(891), + [anon_sym_false] = ACTIONS(891), + [sym_none] = ACTIONS(891), + [sym_undefined] = ACTIONS(891), + [sym_sink] = ACTIONS(891), + [sym_integer] = ACTIONS(891), + [sym_float] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym_multiline_string] = ACTIONS(889), + [sym_character] = ACTIONS(889), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(889), }, [STATE(669)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1057), - [sym_labeled_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_match_statement] = STATE(1057), - [sym__value] = STATE(1057), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_test] = ACTIONS(895), + [anon_sym_hide] = ACTIONS(895), + [anon_sym_func] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_void] = ACTIONS(895), + [anon_sym_anyopaque] = ACTIONS(895), + [anon_sym_bool] = ACTIONS(895), + [anon_sym_int] = ACTIONS(895), + [anon_sym_uint] = ACTIONS(895), + [anon_sym_float] = ACTIONS(895), + [anon_sym_range] = ACTIONS(895), + [anon_sym_i8] = ACTIONS(895), + [anon_sym_i16] = ACTIONS(895), + [anon_sym_i32] = ACTIONS(895), + [anon_sym_i64] = ACTIONS(895), + [anon_sym_u8] = ACTIONS(895), + [anon_sym_u16] = ACTIONS(895), + [anon_sym_u32] = ACTIONS(895), + [anon_sym_u64] = ACTIONS(895), + [anon_sym_isize] = ACTIONS(895), + [anon_sym_usize] = ACTIONS(895), + [anon_sym_f32] = ACTIONS(895), + [anon_sym_f64] = ACTIONS(895), + [anon_sym_c_char] = ACTIONS(895), + [anon_sym_c_schar] = ACTIONS(895), + [anon_sym_c_uchar] = ACTIONS(895), + [anon_sym_c_short] = ACTIONS(895), + [anon_sym_c_ushort] = ACTIONS(895), + [anon_sym_c_int] = ACTIONS(895), + [anon_sym_c_uint] = ACTIONS(895), + [anon_sym_c_long] = ACTIONS(895), + [anon_sym_c_ulong] = ACTIONS(895), + [anon_sym_c_longlong] = ACTIONS(895), + [anon_sym_c_ulonglong] = ACTIONS(895), + [anon_sym_c_float] = ACTIONS(895), + [anon_sym_c_double] = ACTIONS(895), + [anon_sym_c_longdouble] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_defer] = ACTIONS(895), + [anon_sym_errdefer] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_expand] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_match] = ACTIONS(895), + [anon_sym_DOT_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [anon_sym_orelse] = ACTIONS(895), + [anon_sym_catch] = ACTIONS(895), + [anon_sym_or] = ACTIONS(895), + [anon_sym_and] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_LT_LT_PIPE] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(895), + [anon_sym_CARET] = ACTIONS(893), + [anon_sym_true] = ACTIONS(895), + [anon_sym_false] = ACTIONS(895), + [sym_none] = ACTIONS(895), + [sym_undefined] = ACTIONS(895), + [sym_sink] = ACTIONS(895), + [sym_integer] = ACTIONS(895), + [sym_float] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym_multiline_string] = ACTIONS(893), + [sym_character] = ACTIONS(893), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(893), }, [STATE(670)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_func] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1597), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_anyopaque] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_range] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_c_char] = ACTIONS(1509), - [anon_sym_c_schar] = ACTIONS(1509), - [anon_sym_c_uchar] = ACTIONS(1509), - [anon_sym_c_short] = ACTIONS(1509), - [anon_sym_c_ushort] = ACTIONS(1509), - [anon_sym_c_int] = ACTIONS(1509), - [anon_sym_c_uint] = ACTIONS(1509), - [anon_sym_c_long] = ACTIONS(1509), - [anon_sym_c_ulong] = ACTIONS(1509), - [anon_sym_c_longlong] = ACTIONS(1509), - [anon_sym_c_ulonglong] = ACTIONS(1509), - [anon_sym_c_float] = ACTIONS(1509), - [anon_sym_c_double] = ACTIONS(1509), - [anon_sym_c_longdouble] = ACTIONS(1509), - [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_return] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_defer] = ACTIONS(1509), - [anon_sym_errdefer] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_expand] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [sym_none] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1509), - [sym_sink] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [sym_float] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_multiline_string] = ACTIONS(1513), - [sym_character] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(897), + [sym_identifier] = ACTIONS(899), + [anon_sym_import] = ACTIONS(899), + [anon_sym_test] = ACTIONS(899), + [anon_sym_hide] = ACTIONS(899), + [anon_sym_func] = ACTIONS(899), + [anon_sym_BANG] = ACTIONS(899), + [anon_sym_struct] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_void] = ACTIONS(899), + [anon_sym_anyopaque] = ACTIONS(899), + [anon_sym_bool] = ACTIONS(899), + [anon_sym_int] = ACTIONS(899), + [anon_sym_uint] = ACTIONS(899), + [anon_sym_float] = ACTIONS(899), + [anon_sym_range] = ACTIONS(899), + [anon_sym_i8] = ACTIONS(899), + [anon_sym_i16] = ACTIONS(899), + [anon_sym_i32] = ACTIONS(899), + [anon_sym_i64] = ACTIONS(899), + [anon_sym_u8] = ACTIONS(899), + [anon_sym_u16] = ACTIONS(899), + [anon_sym_u32] = ACTIONS(899), + [anon_sym_u64] = ACTIONS(899), + [anon_sym_isize] = ACTIONS(899), + [anon_sym_usize] = ACTIONS(899), + [anon_sym_f32] = ACTIONS(899), + [anon_sym_f64] = ACTIONS(899), + [anon_sym_c_char] = ACTIONS(899), + [anon_sym_c_schar] = ACTIONS(899), + [anon_sym_c_uchar] = ACTIONS(899), + [anon_sym_c_short] = ACTIONS(899), + [anon_sym_c_ushort] = ACTIONS(899), + [anon_sym_c_int] = ACTIONS(899), + [anon_sym_c_uint] = ACTIONS(899), + [anon_sym_c_long] = ACTIONS(899), + [anon_sym_c_ulong] = ACTIONS(899), + [anon_sym_c_longlong] = ACTIONS(899), + [anon_sym_c_ulonglong] = ACTIONS(899), + [anon_sym_c_float] = ACTIONS(899), + [anon_sym_c_double] = ACTIONS(899), + [anon_sym_c_longdouble] = ACTIONS(899), + [anon_sym_return] = ACTIONS(899), + [anon_sym_yield] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_break] = ACTIONS(899), + [anon_sym_continue] = ACTIONS(899), + [anon_sym_defer] = ACTIONS(899), + [anon_sym_errdefer] = ACTIONS(899), + [anon_sym_if] = ACTIONS(899), + [anon_sym_else] = ACTIONS(899), + [anon_sym_while] = ACTIONS(899), + [anon_sym_expand] = ACTIONS(899), + [anon_sym_for] = ACTIONS(899), + [anon_sym_match] = ACTIONS(899), + [anon_sym_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [anon_sym_orelse] = ACTIONS(899), + [anon_sym_catch] = ACTIONS(899), + [anon_sym_or] = ACTIONS(899), + [anon_sym_and] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(899), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_LT_LT_PIPE] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_try] = ACTIONS(899), + [anon_sym_DOT] = ACTIONS(899), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_true] = ACTIONS(899), + [anon_sym_false] = ACTIONS(899), + [sym_none] = ACTIONS(899), + [sym_undefined] = ACTIONS(899), + [sym_sink] = ACTIONS(899), + [sym_integer] = ACTIONS(899), + [sym_float] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_multiline_string] = ACTIONS(897), + [sym_character] = ACTIONS(897), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), + [sym__newline] = ACTIONS(897), }, [STATE(671)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(901), + [sym_identifier] = ACTIONS(903), + [anon_sym_import] = ACTIONS(903), + [anon_sym_test] = ACTIONS(903), + [anon_sym_hide] = ACTIONS(903), + [anon_sym_func] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_void] = ACTIONS(903), + [anon_sym_anyopaque] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_int] = ACTIONS(903), + [anon_sym_uint] = ACTIONS(903), + [anon_sym_float] = ACTIONS(903), + [anon_sym_range] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_c_char] = ACTIONS(903), + [anon_sym_c_schar] = ACTIONS(903), + [anon_sym_c_uchar] = ACTIONS(903), + [anon_sym_c_short] = ACTIONS(903), + [anon_sym_c_ushort] = ACTIONS(903), + [anon_sym_c_int] = ACTIONS(903), + [anon_sym_c_uint] = ACTIONS(903), + [anon_sym_c_long] = ACTIONS(903), + [anon_sym_c_ulong] = ACTIONS(903), + [anon_sym_c_longlong] = ACTIONS(903), + [anon_sym_c_ulonglong] = ACTIONS(903), + [anon_sym_c_float] = ACTIONS(903), + [anon_sym_c_double] = ACTIONS(903), + [anon_sym_c_longdouble] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_yield] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_break] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_defer] = ACTIONS(903), + [anon_sym_errdefer] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_else] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [anon_sym_expand] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [anon_sym_orelse] = ACTIONS(903), + [anon_sym_catch] = ACTIONS(903), + [anon_sym_or] = ACTIONS(903), + [anon_sym_and] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_LT_LT_PIPE] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [sym_none] = ACTIONS(903), + [sym_undefined] = ACTIONS(903), + [sym_sink] = ACTIONS(903), + [sym_integer] = ACTIONS(903), + [sym_float] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym_multiline_string] = ACTIONS(901), + [sym_character] = ACTIONS(901), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), + [sym__newline] = ACTIONS(901), }, [STATE(672)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1106), - [sym_labeled_block] = STATE(1106), - [sym_if_statement] = STATE(1106), - [sym_while_statement] = STATE(1106), - [sym_for_statement] = STATE(1106), - [sym_match_statement] = STATE(1106), - [sym__value] = STATE(1106), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(674), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_identifier] = ACTIONS(907), + [anon_sym_import] = ACTIONS(907), + [anon_sym_test] = ACTIONS(907), + [anon_sym_hide] = ACTIONS(907), + [anon_sym_func] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_void] = ACTIONS(907), + [anon_sym_anyopaque] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_int] = ACTIONS(907), + [anon_sym_uint] = ACTIONS(907), + [anon_sym_float] = ACTIONS(907), + [anon_sym_range] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_c_char] = ACTIONS(907), + [anon_sym_c_schar] = ACTIONS(907), + [anon_sym_c_uchar] = ACTIONS(907), + [anon_sym_c_short] = ACTIONS(907), + [anon_sym_c_ushort] = ACTIONS(907), + [anon_sym_c_int] = ACTIONS(907), + [anon_sym_c_uint] = ACTIONS(907), + [anon_sym_c_long] = ACTIONS(907), + [anon_sym_c_ulong] = ACTIONS(907), + [anon_sym_c_longlong] = ACTIONS(907), + [anon_sym_c_ulonglong] = ACTIONS(907), + [anon_sym_c_float] = ACTIONS(907), + [anon_sym_c_double] = ACTIONS(907), + [anon_sym_c_longdouble] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_yield] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_break] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_defer] = ACTIONS(907), + [anon_sym_errdefer] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_else] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [anon_sym_expand] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_orelse] = ACTIONS(907), + [anon_sym_catch] = ACTIONS(907), + [anon_sym_or] = ACTIONS(907), + [anon_sym_and] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_xor] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_LT_LT_PIPE] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(905), + [anon_sym_try] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [sym_none] = ACTIONS(907), + [sym_undefined] = ACTIONS(907), + [sym_sink] = ACTIONS(907), + [sym_integer] = ACTIONS(907), + [sym_float] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym_multiline_string] = ACTIONS(905), + [sym_character] = ACTIONS(905), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1601), + [sym__newline] = ACTIONS(905), }, [STATE(673)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1124), - [sym_labeled_block] = STATE(1124), - [sym_if_statement] = STATE(1124), - [sym_while_statement] = STATE(1124), - [sym_for_statement] = STATE(1124), - [sym_match_statement] = STATE(1124), - [sym__value] = STATE(1124), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(677), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_identifier] = ACTIONS(631), + [anon_sym_import] = ACTIONS(631), + [anon_sym_test] = ACTIONS(631), + [anon_sym_hide] = ACTIONS(631), + [anon_sym_func] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(631), + [anon_sym_struct] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_DASH] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(629), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_STAR] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(629), + [anon_sym_void] = ACTIONS(631), + [anon_sym_anyopaque] = ACTIONS(631), + [anon_sym_bool] = ACTIONS(631), + [anon_sym_int] = ACTIONS(631), + [anon_sym_uint] = ACTIONS(631), + [anon_sym_float] = ACTIONS(631), + [anon_sym_range] = ACTIONS(631), + [anon_sym_i8] = ACTIONS(631), + [anon_sym_i16] = ACTIONS(631), + [anon_sym_i32] = ACTIONS(631), + [anon_sym_i64] = ACTIONS(631), + [anon_sym_u8] = ACTIONS(631), + [anon_sym_u16] = ACTIONS(631), + [anon_sym_u32] = ACTIONS(631), + [anon_sym_u64] = ACTIONS(631), + [anon_sym_isize] = ACTIONS(631), + [anon_sym_usize] = ACTIONS(631), + [anon_sym_f32] = ACTIONS(631), + [anon_sym_f64] = ACTIONS(631), + [anon_sym_c_char] = ACTIONS(631), + [anon_sym_c_schar] = ACTIONS(631), + [anon_sym_c_uchar] = ACTIONS(631), + [anon_sym_c_short] = ACTIONS(631), + [anon_sym_c_ushort] = ACTIONS(631), + [anon_sym_c_int] = ACTIONS(631), + [anon_sym_c_uint] = ACTIONS(631), + [anon_sym_c_long] = ACTIONS(631), + [anon_sym_c_ulong] = ACTIONS(631), + [anon_sym_c_longlong] = ACTIONS(631), + [anon_sym_c_ulonglong] = ACTIONS(631), + [anon_sym_c_float] = ACTIONS(631), + [anon_sym_c_double] = ACTIONS(631), + [anon_sym_c_longdouble] = ACTIONS(631), + [anon_sym_return] = ACTIONS(631), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_COLON] = ACTIONS(629), + [anon_sym_break] = ACTIONS(631), + [anon_sym_continue] = ACTIONS(631), + [anon_sym_defer] = ACTIONS(631), + [anon_sym_errdefer] = ACTIONS(631), + [anon_sym_if] = ACTIONS(631), + [anon_sym_else] = ACTIONS(631), + [anon_sym_while] = ACTIONS(631), + [anon_sym_expand] = ACTIONS(631), + [anon_sym_for] = ACTIONS(631), + [anon_sym_match] = ACTIONS(631), + [anon_sym_DOT_DOT] = ACTIONS(631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(629), + [anon_sym_orelse] = ACTIONS(631), + [anon_sym_catch] = ACTIONS(631), + [anon_sym_or] = ACTIONS(631), + [anon_sym_and] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(631), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(631), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(629), + [anon_sym_xor] = ACTIONS(631), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(629), + [anon_sym_LT_LT_PIPE] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_SLASH] = ACTIONS(629), + [anon_sym_TILDE] = ACTIONS(629), + [anon_sym_try] = ACTIONS(631), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_true] = ACTIONS(631), + [anon_sym_false] = ACTIONS(631), + [sym_none] = ACTIONS(631), + [sym_undefined] = ACTIONS(631), + [sym_sink] = ACTIONS(631), + [sym_integer] = ACTIONS(631), + [sym_float] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(629), + [sym_multiline_string] = ACTIONS(629), + [sym_character] = ACTIONS(629), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1603), + [sym__newline] = ACTIONS(629), }, [STATE(674)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1242), - [sym_labeled_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_match_statement] = STATE(1242), - [sym__value] = STATE(1242), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(911), + [anon_sym_import] = ACTIONS(911), + [anon_sym_test] = ACTIONS(911), + [anon_sym_hide] = ACTIONS(911), + [anon_sym_func] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_struct] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_void] = ACTIONS(911), + [anon_sym_anyopaque] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_int] = ACTIONS(911), + [anon_sym_uint] = ACTIONS(911), + [anon_sym_float] = ACTIONS(911), + [anon_sym_range] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_c_char] = ACTIONS(911), + [anon_sym_c_schar] = ACTIONS(911), + [anon_sym_c_uchar] = ACTIONS(911), + [anon_sym_c_short] = ACTIONS(911), + [anon_sym_c_ushort] = ACTIONS(911), + [anon_sym_c_int] = ACTIONS(911), + [anon_sym_c_uint] = ACTIONS(911), + [anon_sym_c_long] = ACTIONS(911), + [anon_sym_c_ulong] = ACTIONS(911), + [anon_sym_c_longlong] = ACTIONS(911), + [anon_sym_c_ulonglong] = ACTIONS(911), + [anon_sym_c_float] = ACTIONS(911), + [anon_sym_c_double] = ACTIONS(911), + [anon_sym_c_longdouble] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_yield] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_defer] = ACTIONS(911), + [anon_sym_errdefer] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [anon_sym_expand] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_orelse] = ACTIONS(911), + [anon_sym_catch] = ACTIONS(911), + [anon_sym_or] = ACTIONS(911), + [anon_sym_and] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(911), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(909), + [anon_sym_LT_LT_PIPE] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_try] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [sym_none] = ACTIONS(911), + [sym_undefined] = ACTIONS(911), + [sym_sink] = ACTIONS(911), + [sym_integer] = ACTIONS(911), + [sym_float] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym_multiline_string] = ACTIONS(909), + [sym_character] = ACTIONS(909), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(909), }, [STATE(675)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1243), - [sym_labeled_block] = STATE(1243), - [sym_if_statement] = STATE(1243), - [sym_while_statement] = STATE(1243), - [sym_for_statement] = STATE(1243), - [sym_match_statement] = STATE(1243), - [sym__value] = STATE(1243), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(590), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_identifier] = ACTIONS(1159), + [anon_sym_import] = ACTIONS(1159), + [anon_sym_test] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), + [anon_sym_func] = ACTIONS(1159), + [anon_sym_BANG] = ACTIONS(1159), + [anon_sym_struct] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_QMARK] = ACTIONS(1157), + [anon_sym_STAR] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_void] = ACTIONS(1159), + [anon_sym_anyopaque] = ACTIONS(1159), + [anon_sym_bool] = ACTIONS(1159), + [anon_sym_int] = ACTIONS(1159), + [anon_sym_uint] = ACTIONS(1159), + [anon_sym_float] = ACTIONS(1159), + [anon_sym_range] = ACTIONS(1159), + [anon_sym_i8] = ACTIONS(1159), + [anon_sym_i16] = ACTIONS(1159), + [anon_sym_i32] = ACTIONS(1159), + [anon_sym_i64] = ACTIONS(1159), + [anon_sym_u8] = ACTIONS(1159), + [anon_sym_u16] = ACTIONS(1159), + [anon_sym_u32] = ACTIONS(1159), + [anon_sym_u64] = ACTIONS(1159), + [anon_sym_isize] = ACTIONS(1159), + [anon_sym_usize] = ACTIONS(1159), + [anon_sym_f32] = ACTIONS(1159), + [anon_sym_f64] = ACTIONS(1159), + [anon_sym_c_char] = ACTIONS(1159), + [anon_sym_c_schar] = ACTIONS(1159), + [anon_sym_c_uchar] = ACTIONS(1159), + [anon_sym_c_short] = ACTIONS(1159), + [anon_sym_c_ushort] = ACTIONS(1159), + [anon_sym_c_int] = ACTIONS(1159), + [anon_sym_c_uint] = ACTIONS(1159), + [anon_sym_c_long] = ACTIONS(1159), + [anon_sym_c_ulong] = ACTIONS(1159), + [anon_sym_c_longlong] = ACTIONS(1159), + [anon_sym_c_ulonglong] = ACTIONS(1159), + [anon_sym_c_float] = ACTIONS(1159), + [anon_sym_c_double] = ACTIONS(1159), + [anon_sym_c_longdouble] = ACTIONS(1159), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_yield] = ACTIONS(1159), + [anon_sym_COLON] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_defer] = ACTIONS(1159), + [anon_sym_errdefer] = ACTIONS(1159), + [anon_sym_if] = ACTIONS(1159), + [anon_sym_else] = ACTIONS(1159), + [anon_sym_while] = ACTIONS(1159), + [anon_sym_expand] = ACTIONS(1159), + [anon_sym_for] = ACTIONS(1159), + [anon_sym_match] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1159), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [anon_sym_orelse] = ACTIONS(1159), + [anon_sym_catch] = ACTIONS(1159), + [anon_sym_or] = ACTIONS(1159), + [anon_sym_and] = ACTIONS(1159), + [anon_sym_EQ_EQ] = ACTIONS(1157), + [anon_sym_BANG_EQ] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_LT_EQ] = ACTIONS(1157), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_EQ] = ACTIONS(1157), + [anon_sym_AMP] = ACTIONS(1157), + [anon_sym_xor] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_LT_LT_PIPE] = ACTIONS(1157), + [anon_sym_PLUS] = ACTIONS(1157), + [anon_sym_SLASH] = ACTIONS(1157), + [anon_sym_TILDE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1159), + [anon_sym_DOT] = ACTIONS(1159), + [anon_sym_CARET] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1159), + [anon_sym_false] = ACTIONS(1159), + [sym_none] = ACTIONS(1159), + [sym_undefined] = ACTIONS(1159), + [sym_sink] = ACTIONS(1159), + [sym_integer] = ACTIONS(1159), + [sym_float] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_multiline_string] = ACTIONS(1157), + [sym_character] = ACTIONS(1157), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1605), + [sym__newline] = ACTIONS(1157), }, [STATE(676)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1245), - [sym_labeled_block] = STATE(1245), - [sym_if_statement] = STATE(1245), - [sym_while_statement] = STATE(1245), - [sym_for_statement] = STATE(1245), - [sym_match_statement] = STATE(1245), - [sym__value] = STATE(1245), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(636), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(1189), + [sym_identifier] = ACTIONS(1191), + [anon_sym_import] = ACTIONS(1191), + [anon_sym_test] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), + [anon_sym_func] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_DOLLAR] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_void] = ACTIONS(1191), + [anon_sym_anyopaque] = ACTIONS(1191), + [anon_sym_bool] = ACTIONS(1191), + [anon_sym_int] = ACTIONS(1191), + [anon_sym_uint] = ACTIONS(1191), + [anon_sym_float] = ACTIONS(1191), + [anon_sym_range] = ACTIONS(1191), + [anon_sym_i8] = ACTIONS(1191), + [anon_sym_i16] = ACTIONS(1191), + [anon_sym_i32] = ACTIONS(1191), + [anon_sym_i64] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(1191), + [anon_sym_u16] = ACTIONS(1191), + [anon_sym_u32] = ACTIONS(1191), + [anon_sym_u64] = ACTIONS(1191), + [anon_sym_isize] = ACTIONS(1191), + [anon_sym_usize] = ACTIONS(1191), + [anon_sym_f32] = ACTIONS(1191), + [anon_sym_f64] = ACTIONS(1191), + [anon_sym_c_char] = ACTIONS(1191), + [anon_sym_c_schar] = ACTIONS(1191), + [anon_sym_c_uchar] = ACTIONS(1191), + [anon_sym_c_short] = ACTIONS(1191), + [anon_sym_c_ushort] = ACTIONS(1191), + [anon_sym_c_int] = ACTIONS(1191), + [anon_sym_c_uint] = ACTIONS(1191), + [anon_sym_c_long] = ACTIONS(1191), + [anon_sym_c_ulong] = ACTIONS(1191), + [anon_sym_c_longlong] = ACTIONS(1191), + [anon_sym_c_ulonglong] = ACTIONS(1191), + [anon_sym_c_float] = ACTIONS(1191), + [anon_sym_c_double] = ACTIONS(1191), + [anon_sym_c_longdouble] = ACTIONS(1191), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_yield] = ACTIONS(1191), + [anon_sym_COLON] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_defer] = ACTIONS(1191), + [anon_sym_errdefer] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1191), + [anon_sym_while] = ACTIONS(1191), + [anon_sym_expand] = ACTIONS(1191), + [anon_sym_for] = ACTIONS(1191), + [anon_sym_match] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1189), + [anon_sym_orelse] = ACTIONS(1191), + [anon_sym_catch] = ACTIONS(1191), + [anon_sym_or] = ACTIONS(1191), + [anon_sym_and] = ACTIONS(1191), + [anon_sym_EQ_EQ] = ACTIONS(1189), + [anon_sym_BANG_EQ] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1191), + [anon_sym_GT_EQ] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_xor] = ACTIONS(1191), + [anon_sym_LT_LT] = ACTIONS(1191), + [anon_sym_GT_GT] = ACTIONS(1189), + [anon_sym_LT_LT_PIPE] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1189), + [anon_sym_try] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1191), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1191), + [anon_sym_false] = ACTIONS(1191), + [sym_none] = ACTIONS(1191), + [sym_undefined] = ACTIONS(1191), + [sym_sink] = ACTIONS(1191), + [sym_integer] = ACTIONS(1191), + [sym_float] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1189), + [sym_multiline_string] = ACTIONS(1189), + [sym_character] = ACTIONS(1189), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1607), + [sym__newline] = ACTIONS(1189), }, [STATE(677)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(913), + [sym_identifier] = ACTIONS(915), + [anon_sym_import] = ACTIONS(915), + [anon_sym_test] = ACTIONS(915), + [anon_sym_hide] = ACTIONS(915), + [anon_sym_func] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_void] = ACTIONS(915), + [anon_sym_anyopaque] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_int] = ACTIONS(915), + [anon_sym_uint] = ACTIONS(915), + [anon_sym_float] = ACTIONS(915), + [anon_sym_range] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_c_char] = ACTIONS(915), + [anon_sym_c_schar] = ACTIONS(915), + [anon_sym_c_uchar] = ACTIONS(915), + [anon_sym_c_short] = ACTIONS(915), + [anon_sym_c_ushort] = ACTIONS(915), + [anon_sym_c_int] = ACTIONS(915), + [anon_sym_c_uint] = ACTIONS(915), + [anon_sym_c_long] = ACTIONS(915), + [anon_sym_c_ulong] = ACTIONS(915), + [anon_sym_c_longlong] = ACTIONS(915), + [anon_sym_c_ulonglong] = ACTIONS(915), + [anon_sym_c_float] = ACTIONS(915), + [anon_sym_c_double] = ACTIONS(915), + [anon_sym_c_longdouble] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_yield] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_break] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_defer] = ACTIONS(915), + [anon_sym_errdefer] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_else] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [anon_sym_expand] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [anon_sym_orelse] = ACTIONS(915), + [anon_sym_catch] = ACTIONS(915), + [anon_sym_or] = ACTIONS(915), + [anon_sym_and] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(913), + [anon_sym_LT_LT_PIPE] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [sym_none] = ACTIONS(915), + [sym_undefined] = ACTIONS(915), + [sym_sink] = ACTIONS(915), + [sym_integer] = ACTIONS(915), + [sym_float] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym_multiline_string] = ACTIONS(913), + [sym_character] = ACTIONS(913), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(913), }, [STATE(678)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1247), - [sym_labeled_block] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_match_statement] = STATE(1247), - [sym__value] = STATE(1247), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(805), + [sym_identifier] = ACTIONS(807), + [anon_sym_import] = ACTIONS(807), + [anon_sym_test] = ACTIONS(807), + [anon_sym_hide] = ACTIONS(807), + [anon_sym_func] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(807), + [anon_sym_struct] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(805), + [anon_sym_LBRACE] = ACTIONS(805), + [anon_sym_RBRACE] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(805), + [anon_sym_PIPE] = ACTIONS(805), + [anon_sym_QMARK] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(805), + [anon_sym_LBRACK] = ACTIONS(805), + [anon_sym_void] = ACTIONS(807), + [anon_sym_anyopaque] = ACTIONS(807), + [anon_sym_bool] = ACTIONS(807), + [anon_sym_int] = ACTIONS(807), + [anon_sym_uint] = ACTIONS(807), + [anon_sym_float] = ACTIONS(807), + [anon_sym_range] = ACTIONS(807), + [anon_sym_i8] = ACTIONS(807), + [anon_sym_i16] = ACTIONS(807), + [anon_sym_i32] = ACTIONS(807), + [anon_sym_i64] = ACTIONS(807), + [anon_sym_u8] = ACTIONS(807), + [anon_sym_u16] = ACTIONS(807), + [anon_sym_u32] = ACTIONS(807), + [anon_sym_u64] = ACTIONS(807), + [anon_sym_isize] = ACTIONS(807), + [anon_sym_usize] = ACTIONS(807), + [anon_sym_f32] = ACTIONS(807), + [anon_sym_f64] = ACTIONS(807), + [anon_sym_c_char] = ACTIONS(807), + [anon_sym_c_schar] = ACTIONS(807), + [anon_sym_c_uchar] = ACTIONS(807), + [anon_sym_c_short] = ACTIONS(807), + [anon_sym_c_ushort] = ACTIONS(807), + [anon_sym_c_int] = ACTIONS(807), + [anon_sym_c_uint] = ACTIONS(807), + [anon_sym_c_long] = ACTIONS(807), + [anon_sym_c_ulong] = ACTIONS(807), + [anon_sym_c_longlong] = ACTIONS(807), + [anon_sym_c_ulonglong] = ACTIONS(807), + [anon_sym_c_float] = ACTIONS(807), + [anon_sym_c_double] = ACTIONS(807), + [anon_sym_c_longdouble] = ACTIONS(807), + [anon_sym_return] = ACTIONS(807), + [anon_sym_yield] = ACTIONS(807), + [anon_sym_COLON] = ACTIONS(805), + [anon_sym_break] = ACTIONS(807), + [anon_sym_continue] = ACTIONS(807), + [anon_sym_defer] = ACTIONS(807), + [anon_sym_errdefer] = ACTIONS(807), + [anon_sym_if] = ACTIONS(807), + [anon_sym_else] = ACTIONS(807), + [anon_sym_while] = ACTIONS(807), + [anon_sym_expand] = ACTIONS(807), + [anon_sym_for] = ACTIONS(807), + [anon_sym_match] = ACTIONS(807), + [anon_sym_DOT_DOT] = ACTIONS(807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(805), + [anon_sym_orelse] = ACTIONS(807), + [anon_sym_catch] = ACTIONS(807), + [anon_sym_or] = ACTIONS(807), + [anon_sym_and] = ACTIONS(807), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(807), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(807), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_AMP] = ACTIONS(805), + [anon_sym_xor] = ACTIONS(807), + [anon_sym_LT_LT] = ACTIONS(807), + [anon_sym_GT_GT] = ACTIONS(805), + [anon_sym_LT_LT_PIPE] = ACTIONS(805), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_try] = ACTIONS(807), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_CARET] = ACTIONS(805), + [anon_sym_true] = ACTIONS(807), + [anon_sym_false] = ACTIONS(807), + [sym_none] = ACTIONS(807), + [sym_undefined] = ACTIONS(807), + [sym_sink] = ACTIONS(807), + [sym_integer] = ACTIONS(807), + [sym_float] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(805), + [sym_multiline_string] = ACTIONS(805), + [sym_character] = ACTIONS(805), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(805), }, [STATE(679)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(1195), + [anon_sym_import] = ACTIONS(1195), + [anon_sym_test] = ACTIONS(1195), + [anon_sym_hide] = ACTIONS(1195), + [anon_sym_func] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_struct] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_LBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_DOLLAR] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_void] = ACTIONS(1195), + [anon_sym_anyopaque] = ACTIONS(1195), + [anon_sym_bool] = ACTIONS(1195), + [anon_sym_int] = ACTIONS(1195), + [anon_sym_uint] = ACTIONS(1195), + [anon_sym_float] = ACTIONS(1195), + [anon_sym_range] = ACTIONS(1195), + [anon_sym_i8] = ACTIONS(1195), + [anon_sym_i16] = ACTIONS(1195), + [anon_sym_i32] = ACTIONS(1195), + [anon_sym_i64] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1195), + [anon_sym_u16] = ACTIONS(1195), + [anon_sym_u32] = ACTIONS(1195), + [anon_sym_u64] = ACTIONS(1195), + [anon_sym_isize] = ACTIONS(1195), + [anon_sym_usize] = ACTIONS(1195), + [anon_sym_f32] = ACTIONS(1195), + [anon_sym_f64] = ACTIONS(1195), + [anon_sym_c_char] = ACTIONS(1195), + [anon_sym_c_schar] = ACTIONS(1195), + [anon_sym_c_uchar] = ACTIONS(1195), + [anon_sym_c_short] = ACTIONS(1195), + [anon_sym_c_ushort] = ACTIONS(1195), + [anon_sym_c_int] = ACTIONS(1195), + [anon_sym_c_uint] = ACTIONS(1195), + [anon_sym_c_long] = ACTIONS(1195), + [anon_sym_c_ulong] = ACTIONS(1195), + [anon_sym_c_longlong] = ACTIONS(1195), + [anon_sym_c_ulonglong] = ACTIONS(1195), + [anon_sym_c_float] = ACTIONS(1195), + [anon_sym_c_double] = ACTIONS(1195), + [anon_sym_c_longdouble] = ACTIONS(1195), + [anon_sym_return] = ACTIONS(1195), + [anon_sym_yield] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1195), + [anon_sym_continue] = ACTIONS(1195), + [anon_sym_defer] = ACTIONS(1195), + [anon_sym_errdefer] = ACTIONS(1195), + [anon_sym_if] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_while] = ACTIONS(1195), + [anon_sym_expand] = ACTIONS(1195), + [anon_sym_for] = ACTIONS(1195), + [anon_sym_match] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1193), + [anon_sym_orelse] = ACTIONS(1195), + [anon_sym_catch] = ACTIONS(1195), + [anon_sym_or] = ACTIONS(1195), + [anon_sym_and] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_xor] = ACTIONS(1195), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT_PIPE] = ACTIONS(1193), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_TILDE] = ACTIONS(1193), + [anon_sym_try] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_true] = ACTIONS(1195), + [anon_sym_false] = ACTIONS(1195), + [sym_none] = ACTIONS(1195), + [sym_undefined] = ACTIONS(1195), + [sym_sink] = ACTIONS(1195), + [sym_integer] = ACTIONS(1195), + [sym_float] = ACTIONS(1193), + [anon_sym_DQUOTE] = ACTIONS(1193), + [sym_multiline_string] = ACTIONS(1193), + [sym_character] = ACTIONS(1193), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1193), }, [STATE(680)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_func] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_anyopaque] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_range] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_c_char] = ACTIONS(1509), - [anon_sym_c_schar] = ACTIONS(1509), - [anon_sym_c_uchar] = ACTIONS(1509), - [anon_sym_c_short] = ACTIONS(1509), - [anon_sym_c_ushort] = ACTIONS(1509), - [anon_sym_c_int] = ACTIONS(1509), - [anon_sym_c_uint] = ACTIONS(1509), - [anon_sym_c_long] = ACTIONS(1509), - [anon_sym_c_ulong] = ACTIONS(1509), - [anon_sym_c_longlong] = ACTIONS(1509), - [anon_sym_c_ulonglong] = ACTIONS(1509), - [anon_sym_c_float] = ACTIONS(1509), - [anon_sym_c_double] = ACTIONS(1509), - [anon_sym_c_longdouble] = ACTIONS(1509), - [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_return] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_defer] = ACTIONS(1509), - [anon_sym_errdefer] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_expand] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [sym_none] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1509), - [sym_sink] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [sym_float] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [sym_multiline_string] = ACTIONS(1513), - [sym_character] = ACTIONS(1513), + [ts_builtin_sym_end] = ACTIONS(809), + [sym_identifier] = ACTIONS(811), + [anon_sym_import] = ACTIONS(811), + [anon_sym_test] = ACTIONS(811), + [anon_sym_hide] = ACTIONS(811), + [anon_sym_func] = ACTIONS(811), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_struct] = ACTIONS(811), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_LBRACE] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(809), + [anon_sym_DASH] = ACTIONS(809), + [anon_sym_DOLLAR] = ACTIONS(809), + [anon_sym_PIPE] = ACTIONS(809), + [anon_sym_QMARK] = ACTIONS(809), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_LBRACK] = ACTIONS(809), + [anon_sym_void] = ACTIONS(811), + [anon_sym_anyopaque] = ACTIONS(811), + [anon_sym_bool] = ACTIONS(811), + [anon_sym_int] = ACTIONS(811), + [anon_sym_uint] = ACTIONS(811), + [anon_sym_float] = ACTIONS(811), + [anon_sym_range] = ACTIONS(811), + [anon_sym_i8] = ACTIONS(811), + [anon_sym_i16] = ACTIONS(811), + [anon_sym_i32] = ACTIONS(811), + [anon_sym_i64] = ACTIONS(811), + [anon_sym_u8] = ACTIONS(811), + [anon_sym_u16] = ACTIONS(811), + [anon_sym_u32] = ACTIONS(811), + [anon_sym_u64] = ACTIONS(811), + [anon_sym_isize] = ACTIONS(811), + [anon_sym_usize] = ACTIONS(811), + [anon_sym_f32] = ACTIONS(811), + [anon_sym_f64] = ACTIONS(811), + [anon_sym_c_char] = ACTIONS(811), + [anon_sym_c_schar] = ACTIONS(811), + [anon_sym_c_uchar] = ACTIONS(811), + [anon_sym_c_short] = ACTIONS(811), + [anon_sym_c_ushort] = ACTIONS(811), + [anon_sym_c_int] = ACTIONS(811), + [anon_sym_c_uint] = ACTIONS(811), + [anon_sym_c_long] = ACTIONS(811), + [anon_sym_c_ulong] = ACTIONS(811), + [anon_sym_c_longlong] = ACTIONS(811), + [anon_sym_c_ulonglong] = ACTIONS(811), + [anon_sym_c_float] = ACTIONS(811), + [anon_sym_c_double] = ACTIONS(811), + [anon_sym_c_longdouble] = ACTIONS(811), + [anon_sym_return] = ACTIONS(811), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_COLON] = ACTIONS(809), + [anon_sym_break] = ACTIONS(811), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_defer] = ACTIONS(811), + [anon_sym_errdefer] = ACTIONS(811), + [anon_sym_if] = ACTIONS(811), + [anon_sym_else] = ACTIONS(811), + [anon_sym_while] = ACTIONS(811), + [anon_sym_expand] = ACTIONS(811), + [anon_sym_for] = ACTIONS(811), + [anon_sym_match] = ACTIONS(811), + [anon_sym_DOT_DOT] = ACTIONS(811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(809), + [anon_sym_orelse] = ACTIONS(811), + [anon_sym_catch] = ACTIONS(811), + [anon_sym_or] = ACTIONS(811), + [anon_sym_and] = ACTIONS(811), + [anon_sym_EQ_EQ] = ACTIONS(809), + [anon_sym_BANG_EQ] = ACTIONS(809), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_LT_EQ] = ACTIONS(809), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_GT_EQ] = ACTIONS(809), + [anon_sym_AMP] = ACTIONS(809), + [anon_sym_xor] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_LT_LT_PIPE] = ACTIONS(809), + [anon_sym_PLUS] = ACTIONS(809), + [anon_sym_SLASH] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_try] = ACTIONS(811), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_CARET] = ACTIONS(809), + [anon_sym_true] = ACTIONS(811), + [anon_sym_false] = ACTIONS(811), + [sym_none] = ACTIONS(811), + [sym_undefined] = ACTIONS(811), + [sym_sink] = ACTIONS(811), + [sym_integer] = ACTIONS(811), + [sym_float] = ACTIONS(809), + [anon_sym_DQUOTE] = ACTIONS(809), + [sym_multiline_string] = ACTIONS(809), + [sym_character] = ACTIONS(809), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1513), + [sym__newline] = ACTIONS(809), }, [STATE(681)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1611), - [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(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(367), + [sym_identifier] = ACTIONS(365), + [anon_sym_import] = ACTIONS(365), + [anon_sym_test] = ACTIONS(365), + [anon_sym_hide] = ACTIONS(365), + [anon_sym_func] = ACTIONS(365), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_struct] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(367), + [anon_sym_PIPE] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_STAR] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_void] = ACTIONS(365), + [anon_sym_anyopaque] = ACTIONS(365), + [anon_sym_bool] = ACTIONS(365), + [anon_sym_int] = ACTIONS(365), + [anon_sym_uint] = ACTIONS(365), + [anon_sym_float] = ACTIONS(365), + [anon_sym_range] = ACTIONS(365), + [anon_sym_i8] = ACTIONS(365), + [anon_sym_i16] = ACTIONS(365), + [anon_sym_i32] = ACTIONS(365), + [anon_sym_i64] = ACTIONS(365), + [anon_sym_u8] = ACTIONS(365), + [anon_sym_u16] = ACTIONS(365), + [anon_sym_u32] = ACTIONS(365), + [anon_sym_u64] = ACTIONS(365), + [anon_sym_isize] = ACTIONS(365), + [anon_sym_usize] = ACTIONS(365), + [anon_sym_f32] = ACTIONS(365), + [anon_sym_f64] = ACTIONS(365), + [anon_sym_c_char] = ACTIONS(365), + [anon_sym_c_schar] = ACTIONS(365), + [anon_sym_c_uchar] = ACTIONS(365), + [anon_sym_c_short] = ACTIONS(365), + [anon_sym_c_ushort] = ACTIONS(365), + [anon_sym_c_int] = ACTIONS(365), + [anon_sym_c_uint] = ACTIONS(365), + [anon_sym_c_long] = ACTIONS(365), + [anon_sym_c_ulong] = ACTIONS(365), + [anon_sym_c_longlong] = ACTIONS(365), + [anon_sym_c_ulonglong] = ACTIONS(365), + [anon_sym_c_float] = ACTIONS(365), + [anon_sym_c_double] = ACTIONS(365), + [anon_sym_c_longdouble] = ACTIONS(365), + [anon_sym_return] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(365), + [anon_sym_COLON] = ACTIONS(367), + [anon_sym_break] = ACTIONS(365), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_defer] = ACTIONS(365), + [anon_sym_errdefer] = ACTIONS(365), + [anon_sym_if] = ACTIONS(365), + [anon_sym_else] = ACTIONS(365), + [anon_sym_while] = ACTIONS(365), + [anon_sym_expand] = ACTIONS(365), + [anon_sym_for] = ACTIONS(365), + [anon_sym_match] = ACTIONS(365), + [anon_sym_DOT_DOT] = ACTIONS(365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(367), + [anon_sym_orelse] = ACTIONS(365), + [anon_sym_catch] = ACTIONS(365), + [anon_sym_or] = ACTIONS(365), + [anon_sym_and] = ACTIONS(365), + [anon_sym_EQ_EQ] = ACTIONS(367), + [anon_sym_BANG_EQ] = ACTIONS(367), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_LT_EQ] = ACTIONS(367), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_GT_EQ] = ACTIONS(367), + [anon_sym_AMP] = ACTIONS(367), + [anon_sym_xor] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(367), + [anon_sym_LT_LT_PIPE] = ACTIONS(367), + [anon_sym_PLUS] = ACTIONS(367), + [anon_sym_SLASH] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(367), + [anon_sym_try] = ACTIONS(365), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(367), + [anon_sym_true] = ACTIONS(365), + [anon_sym_false] = ACTIONS(365), + [sym_none] = ACTIONS(365), + [sym_undefined] = ACTIONS(365), + [sym_sink] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_multiline_string] = ACTIONS(367), + [sym_character] = ACTIONS(367), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(367), }, [STATE(682)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_identifier] = ACTIONS(919), + [anon_sym_import] = ACTIONS(919), + [anon_sym_test] = ACTIONS(919), + [anon_sym_hide] = ACTIONS(919), + [anon_sym_func] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_DASH] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PIPE] = ACTIONS(917), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_void] = ACTIONS(919), + [anon_sym_anyopaque] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_int] = ACTIONS(919), + [anon_sym_uint] = ACTIONS(919), + [anon_sym_float] = ACTIONS(919), + [anon_sym_range] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_c_char] = ACTIONS(919), + [anon_sym_c_schar] = ACTIONS(919), + [anon_sym_c_uchar] = ACTIONS(919), + [anon_sym_c_short] = ACTIONS(919), + [anon_sym_c_ushort] = ACTIONS(919), + [anon_sym_c_int] = ACTIONS(919), + [anon_sym_c_uint] = ACTIONS(919), + [anon_sym_c_long] = ACTIONS(919), + [anon_sym_c_ulong] = ACTIONS(919), + [anon_sym_c_longlong] = ACTIONS(919), + [anon_sym_c_ulonglong] = ACTIONS(919), + [anon_sym_c_float] = ACTIONS(919), + [anon_sym_c_double] = ACTIONS(919), + [anon_sym_c_longdouble] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_yield] = ACTIONS(919), + [anon_sym_COLON] = ACTIONS(917), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_defer] = ACTIONS(919), + [anon_sym_errdefer] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_else] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [anon_sym_expand] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_orelse] = ACTIONS(919), + [anon_sym_catch] = ACTIONS(919), + [anon_sym_or] = ACTIONS(919), + [anon_sym_and] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_AMP] = ACTIONS(917), + [anon_sym_xor] = ACTIONS(919), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(917), + [anon_sym_LT_LT_PIPE] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(917), + [anon_sym_SLASH] = ACTIONS(917), + [anon_sym_TILDE] = ACTIONS(917), + [anon_sym_try] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [sym_none] = ACTIONS(919), + [sym_undefined] = ACTIONS(919), + [sym_sink] = ACTIONS(919), + [sym_integer] = ACTIONS(919), + [sym_float] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym_multiline_string] = ACTIONS(917), + [sym_character] = ACTIONS(917), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(917), }, [STATE(683)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1248), - [sym_labeled_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_match_statement] = STATE(1248), - [sym__value] = STATE(1248), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [anon_sym_import] = ACTIONS(923), + [anon_sym_test] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_func] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_void] = ACTIONS(923), + [anon_sym_anyopaque] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_int] = ACTIONS(923), + [anon_sym_uint] = ACTIONS(923), + [anon_sym_float] = ACTIONS(923), + [anon_sym_range] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_c_char] = ACTIONS(923), + [anon_sym_c_schar] = ACTIONS(923), + [anon_sym_c_uchar] = ACTIONS(923), + [anon_sym_c_short] = ACTIONS(923), + [anon_sym_c_ushort] = ACTIONS(923), + [anon_sym_c_int] = ACTIONS(923), + [anon_sym_c_uint] = ACTIONS(923), + [anon_sym_c_long] = ACTIONS(923), + [anon_sym_c_ulong] = ACTIONS(923), + [anon_sym_c_longlong] = ACTIONS(923), + [anon_sym_c_ulonglong] = ACTIONS(923), + [anon_sym_c_float] = ACTIONS(923), + [anon_sym_c_double] = ACTIONS(923), + [anon_sym_c_longdouble] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_defer] = ACTIONS(923), + [anon_sym_errdefer] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_else] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_expand] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_orelse] = ACTIONS(923), + [anon_sym_catch] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(921), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_LT_LT_PIPE] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_try] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [sym_none] = ACTIONS(923), + [sym_undefined] = ACTIONS(923), + [sym_sink] = ACTIONS(923), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [sym_multiline_string] = ACTIONS(921), + [sym_character] = ACTIONS(921), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1473), + [sym__newline] = ACTIONS(921), }, [STATE(684)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1615), - [anon_sym_if] = ACTIONS(433), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(371), + [sym_identifier] = ACTIONS(369), + [anon_sym_import] = ACTIONS(369), + [anon_sym_test] = ACTIONS(369), + [anon_sym_hide] = ACTIONS(369), + [anon_sym_func] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(369), + [anon_sym_struct] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_DOLLAR] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_void] = ACTIONS(369), + [anon_sym_anyopaque] = ACTIONS(369), + [anon_sym_bool] = ACTIONS(369), + [anon_sym_int] = ACTIONS(369), + [anon_sym_uint] = ACTIONS(369), + [anon_sym_float] = ACTIONS(369), + [anon_sym_range] = ACTIONS(369), + [anon_sym_i8] = ACTIONS(369), + [anon_sym_i16] = ACTIONS(369), + [anon_sym_i32] = ACTIONS(369), + [anon_sym_i64] = ACTIONS(369), + [anon_sym_u8] = ACTIONS(369), + [anon_sym_u16] = ACTIONS(369), + [anon_sym_u32] = ACTIONS(369), + [anon_sym_u64] = ACTIONS(369), + [anon_sym_isize] = ACTIONS(369), + [anon_sym_usize] = ACTIONS(369), + [anon_sym_f32] = ACTIONS(369), + [anon_sym_f64] = ACTIONS(369), + [anon_sym_c_char] = ACTIONS(369), + [anon_sym_c_schar] = ACTIONS(369), + [anon_sym_c_uchar] = ACTIONS(369), + [anon_sym_c_short] = ACTIONS(369), + [anon_sym_c_ushort] = ACTIONS(369), + [anon_sym_c_int] = ACTIONS(369), + [anon_sym_c_uint] = ACTIONS(369), + [anon_sym_c_long] = ACTIONS(369), + [anon_sym_c_ulong] = ACTIONS(369), + [anon_sym_c_longlong] = ACTIONS(369), + [anon_sym_c_ulonglong] = ACTIONS(369), + [anon_sym_c_float] = ACTIONS(369), + [anon_sym_c_double] = ACTIONS(369), + [anon_sym_c_longdouble] = ACTIONS(369), + [anon_sym_return] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(371), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_defer] = ACTIONS(369), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_while] = ACTIONS(369), + [anon_sym_expand] = ACTIONS(369), + [anon_sym_for] = ACTIONS(369), + [anon_sym_match] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_orelse] = ACTIONS(369), + [anon_sym_catch] = ACTIONS(369), + [anon_sym_or] = ACTIONS(369), + [anon_sym_and] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_xor] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_LT_LT_PIPE] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(371), + [anon_sym_SLASH] = ACTIONS(371), + [anon_sym_TILDE] = ACTIONS(371), + [anon_sym_try] = ACTIONS(369), + [anon_sym_DOT] = ACTIONS(369), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_true] = ACTIONS(369), + [anon_sym_false] = ACTIONS(369), + [sym_none] = ACTIONS(369), + [sym_undefined] = ACTIONS(369), + [sym_sink] = ACTIONS(369), + [sym_integer] = ACTIONS(369), + [sym_float] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(371), + [sym_multiline_string] = ACTIONS(371), + [sym_character] = ACTIONS(371), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(371), }, [STATE(685)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1617), - [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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(819), + [sym_identifier] = ACTIONS(821), + [anon_sym_import] = ACTIONS(821), + [anon_sym_test] = ACTIONS(821), + [anon_sym_hide] = ACTIONS(821), + [anon_sym_func] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(821), + [anon_sym_LPAREN] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(819), + [anon_sym_PIPE] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(819), + [anon_sym_void] = ACTIONS(821), + [anon_sym_anyopaque] = ACTIONS(821), + [anon_sym_bool] = ACTIONS(821), + [anon_sym_int] = ACTIONS(821), + [anon_sym_uint] = ACTIONS(821), + [anon_sym_float] = ACTIONS(821), + [anon_sym_range] = ACTIONS(821), + [anon_sym_i8] = ACTIONS(821), + [anon_sym_i16] = ACTIONS(821), + [anon_sym_i32] = ACTIONS(821), + [anon_sym_i64] = ACTIONS(821), + [anon_sym_u8] = ACTIONS(821), + [anon_sym_u16] = ACTIONS(821), + [anon_sym_u32] = ACTIONS(821), + [anon_sym_u64] = ACTIONS(821), + [anon_sym_isize] = ACTIONS(821), + [anon_sym_usize] = ACTIONS(821), + [anon_sym_f32] = ACTIONS(821), + [anon_sym_f64] = ACTIONS(821), + [anon_sym_c_char] = ACTIONS(821), + [anon_sym_c_schar] = ACTIONS(821), + [anon_sym_c_uchar] = ACTIONS(821), + [anon_sym_c_short] = ACTIONS(821), + [anon_sym_c_ushort] = ACTIONS(821), + [anon_sym_c_int] = ACTIONS(821), + [anon_sym_c_uint] = ACTIONS(821), + [anon_sym_c_long] = ACTIONS(821), + [anon_sym_c_ulong] = ACTIONS(821), + [anon_sym_c_longlong] = ACTIONS(821), + [anon_sym_c_ulonglong] = ACTIONS(821), + [anon_sym_c_float] = ACTIONS(821), + [anon_sym_c_double] = ACTIONS(821), + [anon_sym_c_longdouble] = ACTIONS(821), + [anon_sym_return] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(821), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_break] = ACTIONS(821), + [anon_sym_continue] = ACTIONS(821), + [anon_sym_defer] = ACTIONS(821), + [anon_sym_errdefer] = ACTIONS(821), + [anon_sym_if] = ACTIONS(821), + [anon_sym_else] = ACTIONS(821), + [anon_sym_while] = ACTIONS(821), + [anon_sym_expand] = ACTIONS(821), + [anon_sym_for] = ACTIONS(821), + [anon_sym_match] = ACTIONS(821), + [anon_sym_DOT_DOT] = ACTIONS(821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(819), + [anon_sym_orelse] = ACTIONS(821), + [anon_sym_catch] = ACTIONS(821), + [anon_sym_or] = ACTIONS(821), + [anon_sym_and] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(819), + [anon_sym_BANG_EQ] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(821), + [anon_sym_LT_EQ] = ACTIONS(819), + [anon_sym_GT] = ACTIONS(821), + [anon_sym_GT_EQ] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_xor] = ACTIONS(821), + [anon_sym_LT_LT] = ACTIONS(821), + [anon_sym_GT_GT] = ACTIONS(819), + [anon_sym_LT_LT_PIPE] = ACTIONS(819), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_try] = ACTIONS(821), + [anon_sym_DOT] = ACTIONS(821), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_true] = ACTIONS(821), + [anon_sym_false] = ACTIONS(821), + [sym_none] = ACTIONS(821), + [sym_undefined] = ACTIONS(821), + [sym_sink] = ACTIONS(821), + [sym_integer] = ACTIONS(821), + [sym_float] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(819), + [sym_multiline_string] = ACTIONS(819), + [sym_character] = ACTIONS(819), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(819), }, [STATE(686)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1619), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(633), + [sym_identifier] = ACTIONS(635), + [anon_sym_import] = ACTIONS(635), + [anon_sym_test] = ACTIONS(635), + [anon_sym_hide] = ACTIONS(635), + [anon_sym_func] = ACTIONS(635), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_struct] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(633), + [anon_sym_QMARK] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(633), + [anon_sym_LBRACK] = ACTIONS(633), + [anon_sym_void] = ACTIONS(635), + [anon_sym_anyopaque] = ACTIONS(635), + [anon_sym_bool] = ACTIONS(635), + [anon_sym_int] = ACTIONS(635), + [anon_sym_uint] = ACTIONS(635), + [anon_sym_float] = ACTIONS(635), + [anon_sym_range] = ACTIONS(635), + [anon_sym_i8] = ACTIONS(635), + [anon_sym_i16] = ACTIONS(635), + [anon_sym_i32] = ACTIONS(635), + [anon_sym_i64] = ACTIONS(635), + [anon_sym_u8] = ACTIONS(635), + [anon_sym_u16] = ACTIONS(635), + [anon_sym_u32] = ACTIONS(635), + [anon_sym_u64] = ACTIONS(635), + [anon_sym_isize] = ACTIONS(635), + [anon_sym_usize] = ACTIONS(635), + [anon_sym_f32] = ACTIONS(635), + [anon_sym_f64] = ACTIONS(635), + [anon_sym_c_char] = ACTIONS(635), + [anon_sym_c_schar] = ACTIONS(635), + [anon_sym_c_uchar] = ACTIONS(635), + [anon_sym_c_short] = ACTIONS(635), + [anon_sym_c_ushort] = ACTIONS(635), + [anon_sym_c_int] = ACTIONS(635), + [anon_sym_c_uint] = ACTIONS(635), + [anon_sym_c_long] = ACTIONS(635), + [anon_sym_c_ulong] = ACTIONS(635), + [anon_sym_c_longlong] = ACTIONS(635), + [anon_sym_c_ulonglong] = ACTIONS(635), + [anon_sym_c_float] = ACTIONS(635), + [anon_sym_c_double] = ACTIONS(635), + [anon_sym_c_longdouble] = ACTIONS(635), + [anon_sym_return] = ACTIONS(635), + [anon_sym_yield] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(633), + [anon_sym_break] = ACTIONS(635), + [anon_sym_continue] = ACTIONS(635), + [anon_sym_defer] = ACTIONS(635), + [anon_sym_errdefer] = ACTIONS(635), + [anon_sym_if] = ACTIONS(635), + [anon_sym_else] = ACTIONS(635), + [anon_sym_while] = ACTIONS(635), + [anon_sym_expand] = ACTIONS(635), + [anon_sym_for] = ACTIONS(635), + [anon_sym_match] = ACTIONS(635), + [anon_sym_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(633), + [anon_sym_orelse] = ACTIONS(635), + [anon_sym_catch] = ACTIONS(635), + [anon_sym_or] = ACTIONS(635), + [anon_sym_and] = ACTIONS(635), + [anon_sym_EQ_EQ] = ACTIONS(633), + [anon_sym_BANG_EQ] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(635), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_AMP] = ACTIONS(633), + [anon_sym_xor] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(635), + [anon_sym_GT_GT] = ACTIONS(633), + [anon_sym_LT_LT_PIPE] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(633), + [anon_sym_SLASH] = ACTIONS(633), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_try] = ACTIONS(635), + [anon_sym_DOT] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(633), + [anon_sym_true] = ACTIONS(635), + [anon_sym_false] = ACTIONS(635), + [sym_none] = ACTIONS(635), + [sym_undefined] = ACTIONS(635), + [sym_sink] = ACTIONS(635), + [sym_integer] = ACTIONS(635), + [sym_float] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(633), + [sym_multiline_string] = ACTIONS(633), + [sym_character] = ACTIONS(633), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(633), }, [STATE(687)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1199), + [anon_sym_import] = ACTIONS(1199), + [anon_sym_test] = ACTIONS(1199), + [anon_sym_hide] = ACTIONS(1199), + [anon_sym_func] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1199), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_DOLLAR] = ACTIONS(1197), + [anon_sym_PIPE] = ACTIONS(1197), + [anon_sym_QMARK] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_void] = ACTIONS(1199), + [anon_sym_anyopaque] = ACTIONS(1199), + [anon_sym_bool] = ACTIONS(1199), + [anon_sym_int] = ACTIONS(1199), + [anon_sym_uint] = ACTIONS(1199), + [anon_sym_float] = ACTIONS(1199), + [anon_sym_range] = ACTIONS(1199), + [anon_sym_i8] = ACTIONS(1199), + [anon_sym_i16] = ACTIONS(1199), + [anon_sym_i32] = ACTIONS(1199), + [anon_sym_i64] = ACTIONS(1199), + [anon_sym_u8] = ACTIONS(1199), + [anon_sym_u16] = ACTIONS(1199), + [anon_sym_u32] = ACTIONS(1199), + [anon_sym_u64] = ACTIONS(1199), + [anon_sym_isize] = ACTIONS(1199), + [anon_sym_usize] = ACTIONS(1199), + [anon_sym_f32] = ACTIONS(1199), + [anon_sym_f64] = ACTIONS(1199), + [anon_sym_c_char] = ACTIONS(1199), + [anon_sym_c_schar] = ACTIONS(1199), + [anon_sym_c_uchar] = ACTIONS(1199), + [anon_sym_c_short] = ACTIONS(1199), + [anon_sym_c_ushort] = ACTIONS(1199), + [anon_sym_c_int] = ACTIONS(1199), + [anon_sym_c_uint] = ACTIONS(1199), + [anon_sym_c_long] = ACTIONS(1199), + [anon_sym_c_ulong] = ACTIONS(1199), + [anon_sym_c_longlong] = ACTIONS(1199), + [anon_sym_c_ulonglong] = ACTIONS(1199), + [anon_sym_c_float] = ACTIONS(1199), + [anon_sym_c_double] = ACTIONS(1199), + [anon_sym_c_longdouble] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1199), + [anon_sym_yield] = ACTIONS(1199), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1199), + [anon_sym_continue] = ACTIONS(1199), + [anon_sym_defer] = ACTIONS(1199), + [anon_sym_errdefer] = ACTIONS(1199), + [anon_sym_if] = ACTIONS(1199), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1199), + [anon_sym_expand] = ACTIONS(1199), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_match] = ACTIONS(1199), + [anon_sym_DOT_DOT] = ACTIONS(1199), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), + [anon_sym_orelse] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1199), + [anon_sym_or] = ACTIONS(1199), + [anon_sym_and] = ACTIONS(1199), + [anon_sym_EQ_EQ] = ACTIONS(1197), + [anon_sym_BANG_EQ] = ACTIONS(1197), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1197), + [anon_sym_GT] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1197), + [anon_sym_xor] = ACTIONS(1199), + [anon_sym_LT_LT] = ACTIONS(1199), + [anon_sym_GT_GT] = ACTIONS(1197), + [anon_sym_LT_LT_PIPE] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_DOT] = ACTIONS(1199), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1199), + [anon_sym_false] = ACTIONS(1199), + [sym_none] = ACTIONS(1199), + [sym_undefined] = ACTIONS(1199), + [sym_sink] = ACTIONS(1199), + [sym_integer] = ACTIONS(1199), + [sym_float] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1197), + [sym_multiline_string] = ACTIONS(1197), + [sym_character] = ACTIONS(1197), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1197), }, [STATE(688)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(637), + [sym_identifier] = ACTIONS(639), + [anon_sym_import] = ACTIONS(639), + [anon_sym_test] = ACTIONS(639), + [anon_sym_hide] = ACTIONS(639), + [anon_sym_func] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_struct] = ACTIONS(639), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_LBRACE] = ACTIONS(637), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_void] = ACTIONS(639), + [anon_sym_anyopaque] = ACTIONS(639), + [anon_sym_bool] = ACTIONS(639), + [anon_sym_int] = ACTIONS(639), + [anon_sym_uint] = ACTIONS(639), + [anon_sym_float] = ACTIONS(639), + [anon_sym_range] = ACTIONS(639), + [anon_sym_i8] = ACTIONS(639), + [anon_sym_i16] = ACTIONS(639), + [anon_sym_i32] = ACTIONS(639), + [anon_sym_i64] = ACTIONS(639), + [anon_sym_u8] = ACTIONS(639), + [anon_sym_u16] = ACTIONS(639), + [anon_sym_u32] = ACTIONS(639), + [anon_sym_u64] = ACTIONS(639), + [anon_sym_isize] = ACTIONS(639), + [anon_sym_usize] = ACTIONS(639), + [anon_sym_f32] = ACTIONS(639), + [anon_sym_f64] = ACTIONS(639), + [anon_sym_c_char] = ACTIONS(639), + [anon_sym_c_schar] = ACTIONS(639), + [anon_sym_c_uchar] = ACTIONS(639), + [anon_sym_c_short] = ACTIONS(639), + [anon_sym_c_ushort] = ACTIONS(639), + [anon_sym_c_int] = ACTIONS(639), + [anon_sym_c_uint] = ACTIONS(639), + [anon_sym_c_long] = ACTIONS(639), + [anon_sym_c_ulong] = ACTIONS(639), + [anon_sym_c_longlong] = ACTIONS(639), + [anon_sym_c_ulonglong] = ACTIONS(639), + [anon_sym_c_float] = ACTIONS(639), + [anon_sym_c_double] = ACTIONS(639), + [anon_sym_c_longdouble] = ACTIONS(639), + [anon_sym_return] = ACTIONS(639), + [anon_sym_yield] = ACTIONS(639), + [anon_sym_COLON] = ACTIONS(637), + [anon_sym_break] = ACTIONS(639), + [anon_sym_continue] = ACTIONS(639), + [anon_sym_defer] = ACTIONS(639), + [anon_sym_errdefer] = ACTIONS(639), + [anon_sym_if] = ACTIONS(639), + [anon_sym_else] = ACTIONS(639), + [anon_sym_while] = ACTIONS(639), + [anon_sym_expand] = ACTIONS(639), + [anon_sym_for] = ACTIONS(639), + [anon_sym_match] = ACTIONS(639), + [anon_sym_DOT_DOT] = ACTIONS(639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(637), + [anon_sym_orelse] = ACTIONS(639), + [anon_sym_catch] = ACTIONS(639), + [anon_sym_or] = ACTIONS(639), + [anon_sym_and] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_LT] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_xor] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_try] = ACTIONS(639), + [anon_sym_DOT] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_true] = ACTIONS(639), + [anon_sym_false] = ACTIONS(639), + [sym_none] = ACTIONS(639), + [sym_undefined] = ACTIONS(639), + [sym_sink] = ACTIONS(639), + [sym_integer] = ACTIONS(639), + [sym_float] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(637), + [sym_multiline_string] = ACTIONS(637), + [sym_character] = ACTIONS(637), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(637), }, [STATE(689)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1250), - [sym_labeled_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_match_statement] = STATE(1250), - [sym__value] = STATE(1250), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(417), + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1537), + [anon_sym_import] = ACTIONS(1713), + [anon_sym_test] = ACTIONS(1713), + [anon_sym_hide] = ACTIONS(1713), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1713), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), }, [STATE(690)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(287), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_test] = ACTIONS(1023), + [anon_sym_hide] = ACTIONS(1023), + [anon_sym_func] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1021), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_anyopaque] = ACTIONS(1023), + [anon_sym_bool] = ACTIONS(1023), + [anon_sym_int] = ACTIONS(1023), + [anon_sym_uint] = ACTIONS(1023), + [anon_sym_float] = ACTIONS(1023), + [anon_sym_range] = ACTIONS(1023), + [anon_sym_i8] = ACTIONS(1023), + [anon_sym_i16] = ACTIONS(1023), + [anon_sym_i32] = ACTIONS(1023), + [anon_sym_i64] = ACTIONS(1023), + [anon_sym_u8] = ACTIONS(1023), + [anon_sym_u16] = ACTIONS(1023), + [anon_sym_u32] = ACTIONS(1023), + [anon_sym_u64] = ACTIONS(1023), + [anon_sym_isize] = ACTIONS(1023), + [anon_sym_usize] = ACTIONS(1023), + [anon_sym_f32] = ACTIONS(1023), + [anon_sym_f64] = ACTIONS(1023), + [anon_sym_c_char] = ACTIONS(1023), + [anon_sym_c_schar] = ACTIONS(1023), + [anon_sym_c_uchar] = ACTIONS(1023), + [anon_sym_c_short] = ACTIONS(1023), + [anon_sym_c_ushort] = ACTIONS(1023), + [anon_sym_c_int] = ACTIONS(1023), + [anon_sym_c_uint] = ACTIONS(1023), + [anon_sym_c_long] = ACTIONS(1023), + [anon_sym_c_ulong] = ACTIONS(1023), + [anon_sym_c_longlong] = ACTIONS(1023), + [anon_sym_c_ulonglong] = ACTIONS(1023), + [anon_sym_c_float] = ACTIONS(1023), + [anon_sym_c_double] = ACTIONS(1023), + [anon_sym_c_longdouble] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_COLON] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_defer] = ACTIONS(1023), + [anon_sym_errdefer] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_expand] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_match] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_orelse] = ACTIONS(1023), + [anon_sym_catch] = ACTIONS(1023), + [anon_sym_or] = ACTIONS(1023), + [anon_sym_and] = ACTIONS(1023), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_xor] = ACTIONS(1023), + [anon_sym_LT_LT] = ACTIONS(1023), + [anon_sym_GT_GT] = ACTIONS(1021), + [anon_sym_LT_LT_PIPE] = ACTIONS(1021), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [sym_none] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [sym_sink] = ACTIONS(1023), + [sym_integer] = ACTIONS(1023), + [sym_float] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym_multiline_string] = ACTIONS(1021), + [sym_character] = ACTIONS(1021), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1021), }, [STATE(691)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(173), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(925), + [sym_identifier] = ACTIONS(927), + [anon_sym_import] = ACTIONS(927), + [anon_sym_test] = ACTIONS(927), + [anon_sym_hide] = ACTIONS(927), + [anon_sym_func] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(925), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_void] = ACTIONS(927), + [anon_sym_anyopaque] = ACTIONS(927), + [anon_sym_bool] = ACTIONS(927), + [anon_sym_int] = ACTIONS(927), + [anon_sym_uint] = ACTIONS(927), + [anon_sym_float] = ACTIONS(927), + [anon_sym_range] = ACTIONS(927), + [anon_sym_i8] = ACTIONS(927), + [anon_sym_i16] = ACTIONS(927), + [anon_sym_i32] = ACTIONS(927), + [anon_sym_i64] = ACTIONS(927), + [anon_sym_u8] = ACTIONS(927), + [anon_sym_u16] = ACTIONS(927), + [anon_sym_u32] = ACTIONS(927), + [anon_sym_u64] = ACTIONS(927), + [anon_sym_isize] = ACTIONS(927), + [anon_sym_usize] = ACTIONS(927), + [anon_sym_f32] = ACTIONS(927), + [anon_sym_f64] = ACTIONS(927), + [anon_sym_c_char] = ACTIONS(927), + [anon_sym_c_schar] = ACTIONS(927), + [anon_sym_c_uchar] = ACTIONS(927), + [anon_sym_c_short] = ACTIONS(927), + [anon_sym_c_ushort] = ACTIONS(927), + [anon_sym_c_int] = ACTIONS(927), + [anon_sym_c_uint] = ACTIONS(927), + [anon_sym_c_long] = ACTIONS(927), + [anon_sym_c_ulong] = ACTIONS(927), + [anon_sym_c_longlong] = ACTIONS(927), + [anon_sym_c_ulonglong] = ACTIONS(927), + [anon_sym_c_float] = ACTIONS(927), + [anon_sym_c_double] = ACTIONS(927), + [anon_sym_c_longdouble] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_yield] = ACTIONS(927), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_defer] = ACTIONS(927), + [anon_sym_errdefer] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_else] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_expand] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_orelse] = ACTIONS(927), + [anon_sym_catch] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT_PIPE] = ACTIONS(925), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_TILDE] = ACTIONS(925), + [anon_sym_try] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [sym_none] = ACTIONS(927), + [sym_undefined] = ACTIONS(927), + [sym_sink] = ACTIONS(927), + [sym_integer] = ACTIONS(927), + [sym_float] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(925), + [sym_multiline_string] = ACTIONS(925), + [sym_character] = ACTIONS(925), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(925), }, [STATE(692)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(145), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [anon_sym_import] = ACTIONS(931), + [anon_sym_test] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_void] = ACTIONS(931), + [anon_sym_anyopaque] = ACTIONS(931), + [anon_sym_bool] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_uint] = ACTIONS(931), + [anon_sym_float] = ACTIONS(931), + [anon_sym_range] = ACTIONS(931), + [anon_sym_i8] = ACTIONS(931), + [anon_sym_i16] = ACTIONS(931), + [anon_sym_i32] = ACTIONS(931), + [anon_sym_i64] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(931), + [anon_sym_u16] = ACTIONS(931), + [anon_sym_u32] = ACTIONS(931), + [anon_sym_u64] = ACTIONS(931), + [anon_sym_isize] = ACTIONS(931), + [anon_sym_usize] = ACTIONS(931), + [anon_sym_f32] = ACTIONS(931), + [anon_sym_f64] = ACTIONS(931), + [anon_sym_c_char] = ACTIONS(931), + [anon_sym_c_schar] = ACTIONS(931), + [anon_sym_c_uchar] = ACTIONS(931), + [anon_sym_c_short] = ACTIONS(931), + [anon_sym_c_ushort] = ACTIONS(931), + [anon_sym_c_int] = ACTIONS(931), + [anon_sym_c_uint] = ACTIONS(931), + [anon_sym_c_long] = ACTIONS(931), + [anon_sym_c_ulong] = ACTIONS(931), + [anon_sym_c_longlong] = ACTIONS(931), + [anon_sym_c_ulonglong] = ACTIONS(931), + [anon_sym_c_float] = ACTIONS(931), + [anon_sym_c_double] = ACTIONS(931), + [anon_sym_c_longdouble] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_defer] = ACTIONS(931), + [anon_sym_errdefer] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_expand] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_orelse] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_LT_LT_PIPE] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_try] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [sym_none] = ACTIONS(931), + [sym_undefined] = ACTIONS(931), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(931), + [sym_float] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_multiline_string] = ACTIONS(929), + [sym_character] = ACTIONS(929), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(929), }, [STATE(693)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(119), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(933), + [sym_identifier] = ACTIONS(935), + [anon_sym_import] = ACTIONS(935), + [anon_sym_test] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_func] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_DOLLAR] = ACTIONS(933), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_void] = ACTIONS(935), + [anon_sym_anyopaque] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_int] = ACTIONS(935), + [anon_sym_uint] = ACTIONS(935), + [anon_sym_float] = ACTIONS(935), + [anon_sym_range] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_c_char] = ACTIONS(935), + [anon_sym_c_schar] = ACTIONS(935), + [anon_sym_c_uchar] = ACTIONS(935), + [anon_sym_c_short] = ACTIONS(935), + [anon_sym_c_ushort] = ACTIONS(935), + [anon_sym_c_int] = ACTIONS(935), + [anon_sym_c_uint] = ACTIONS(935), + [anon_sym_c_long] = ACTIONS(935), + [anon_sym_c_ulong] = ACTIONS(935), + [anon_sym_c_longlong] = ACTIONS(935), + [anon_sym_c_ulonglong] = ACTIONS(935), + [anon_sym_c_float] = ACTIONS(935), + [anon_sym_c_double] = ACTIONS(935), + [anon_sym_c_longdouble] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_yield] = ACTIONS(935), + [anon_sym_COLON] = ACTIONS(933), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_defer] = ACTIONS(935), + [anon_sym_errdefer] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_expand] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(933), + [anon_sym_orelse] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_LT_LT_PIPE] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_try] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(933), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [sym_none] = ACTIONS(935), + [sym_undefined] = ACTIONS(935), + [sym_sink] = ACTIONS(935), + [sym_integer] = ACTIONS(935), + [sym_float] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(933), + [sym_multiline_string] = ACTIONS(933), + [sym_character] = ACTIONS(933), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(933), }, [STATE(694)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1567), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(937), + [sym_identifier] = ACTIONS(939), + [anon_sym_import] = ACTIONS(939), + [anon_sym_test] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_func] = ACTIONS(939), + [anon_sym_BANG] = ACTIONS(939), + [anon_sym_struct] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_void] = ACTIONS(939), + [anon_sym_anyopaque] = ACTIONS(939), + [anon_sym_bool] = ACTIONS(939), + [anon_sym_int] = ACTIONS(939), + [anon_sym_uint] = ACTIONS(939), + [anon_sym_float] = ACTIONS(939), + [anon_sym_range] = ACTIONS(939), + [anon_sym_i8] = ACTIONS(939), + [anon_sym_i16] = ACTIONS(939), + [anon_sym_i32] = ACTIONS(939), + [anon_sym_i64] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(939), + [anon_sym_u16] = ACTIONS(939), + [anon_sym_u32] = ACTIONS(939), + [anon_sym_u64] = ACTIONS(939), + [anon_sym_isize] = ACTIONS(939), + [anon_sym_usize] = ACTIONS(939), + [anon_sym_f32] = ACTIONS(939), + [anon_sym_f64] = ACTIONS(939), + [anon_sym_c_char] = ACTIONS(939), + [anon_sym_c_schar] = ACTIONS(939), + [anon_sym_c_uchar] = ACTIONS(939), + [anon_sym_c_short] = ACTIONS(939), + [anon_sym_c_ushort] = ACTIONS(939), + [anon_sym_c_int] = ACTIONS(939), + [anon_sym_c_uint] = ACTIONS(939), + [anon_sym_c_long] = ACTIONS(939), + [anon_sym_c_ulong] = ACTIONS(939), + [anon_sym_c_longlong] = ACTIONS(939), + [anon_sym_c_ulonglong] = ACTIONS(939), + [anon_sym_c_float] = ACTIONS(939), + [anon_sym_c_double] = ACTIONS(939), + [anon_sym_c_longdouble] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_yield] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_defer] = ACTIONS(939), + [anon_sym_errdefer] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_else] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_expand] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_orelse] = ACTIONS(939), + [anon_sym_catch] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_LT_LT] = ACTIONS(939), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_LT_LT_PIPE] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_TILDE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(939), + [anon_sym_DOT] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [sym_none] = ACTIONS(939), + [sym_undefined] = ACTIONS(939), + [sym_sink] = ACTIONS(939), + [sym_integer] = ACTIONS(939), + [sym_float] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym_multiline_string] = ACTIONS(937), + [sym_character] = ACTIONS(937), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(937), }, [STATE(695)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(699), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(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(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(823), + [sym_identifier] = ACTIONS(825), + [anon_sym_import] = ACTIONS(825), + [anon_sym_test] = ACTIONS(825), + [anon_sym_hide] = ACTIONS(825), + [anon_sym_func] = ACTIONS(825), + [anon_sym_BANG] = ACTIONS(825), + [anon_sym_struct] = ACTIONS(825), + [anon_sym_LPAREN] = ACTIONS(823), + [anon_sym_LBRACE] = ACTIONS(823), + [anon_sym_RBRACE] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DOLLAR] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_QMARK] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(823), + [anon_sym_void] = ACTIONS(825), + [anon_sym_anyopaque] = ACTIONS(825), + [anon_sym_bool] = ACTIONS(825), + [anon_sym_int] = ACTIONS(825), + [anon_sym_uint] = ACTIONS(825), + [anon_sym_float] = ACTIONS(825), + [anon_sym_range] = ACTIONS(825), + [anon_sym_i8] = ACTIONS(825), + [anon_sym_i16] = ACTIONS(825), + [anon_sym_i32] = ACTIONS(825), + [anon_sym_i64] = ACTIONS(825), + [anon_sym_u8] = ACTIONS(825), + [anon_sym_u16] = ACTIONS(825), + [anon_sym_u32] = ACTIONS(825), + [anon_sym_u64] = ACTIONS(825), + [anon_sym_isize] = ACTIONS(825), + [anon_sym_usize] = ACTIONS(825), + [anon_sym_f32] = ACTIONS(825), + [anon_sym_f64] = ACTIONS(825), + [anon_sym_c_char] = ACTIONS(825), + [anon_sym_c_schar] = ACTIONS(825), + [anon_sym_c_uchar] = ACTIONS(825), + [anon_sym_c_short] = ACTIONS(825), + [anon_sym_c_ushort] = ACTIONS(825), + [anon_sym_c_int] = ACTIONS(825), + [anon_sym_c_uint] = ACTIONS(825), + [anon_sym_c_long] = ACTIONS(825), + [anon_sym_c_ulong] = ACTIONS(825), + [anon_sym_c_longlong] = ACTIONS(825), + [anon_sym_c_ulonglong] = ACTIONS(825), + [anon_sym_c_float] = ACTIONS(825), + [anon_sym_c_double] = ACTIONS(825), + [anon_sym_c_longdouble] = ACTIONS(825), + [anon_sym_return] = ACTIONS(825), + [anon_sym_yield] = ACTIONS(825), + [anon_sym_COLON] = ACTIONS(823), + [anon_sym_break] = ACTIONS(825), + [anon_sym_continue] = ACTIONS(825), + [anon_sym_defer] = ACTIONS(825), + [anon_sym_errdefer] = ACTIONS(825), + [anon_sym_if] = ACTIONS(825), + [anon_sym_else] = ACTIONS(825), + [anon_sym_while] = ACTIONS(825), + [anon_sym_expand] = ACTIONS(825), + [anon_sym_for] = ACTIONS(825), + [anon_sym_match] = ACTIONS(825), + [anon_sym_DOT_DOT] = ACTIONS(825), + [anon_sym_DOT_DOT_EQ] = ACTIONS(823), + [anon_sym_orelse] = ACTIONS(825), + [anon_sym_catch] = ACTIONS(825), + [anon_sym_or] = ACTIONS(825), + [anon_sym_and] = ACTIONS(825), + [anon_sym_EQ_EQ] = ACTIONS(823), + [anon_sym_BANG_EQ] = ACTIONS(823), + [anon_sym_LT] = ACTIONS(825), + [anon_sym_LT_EQ] = ACTIONS(823), + [anon_sym_GT] = ACTIONS(825), + [anon_sym_GT_EQ] = ACTIONS(823), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_xor] = ACTIONS(825), + [anon_sym_LT_LT] = ACTIONS(825), + [anon_sym_GT_GT] = ACTIONS(823), + [anon_sym_LT_LT_PIPE] = ACTIONS(823), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_SLASH] = ACTIONS(823), + [anon_sym_TILDE] = ACTIONS(823), + [anon_sym_try] = ACTIONS(825), + [anon_sym_DOT] = ACTIONS(825), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_true] = ACTIONS(825), + [anon_sym_false] = ACTIONS(825), + [sym_none] = ACTIONS(825), + [sym_undefined] = ACTIONS(825), + [sym_sink] = ACTIONS(825), + [sym_integer] = ACTIONS(825), + [sym_float] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(823), + [sym_multiline_string] = ACTIONS(823), + [sym_character] = ACTIONS(823), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(823), }, [STATE(696)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(417), - [anon_sym_while] = ACTIONS(57), - [anon_sym_expand] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(827), + [sym_identifier] = ACTIONS(829), + [anon_sym_import] = ACTIONS(829), + [anon_sym_test] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_func] = ACTIONS(829), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_struct] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(827), + [anon_sym_RBRACE] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), + [anon_sym_DOLLAR] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_QMARK] = ACTIONS(827), + [anon_sym_STAR] = ACTIONS(827), + [anon_sym_LBRACK] = ACTIONS(827), + [anon_sym_void] = ACTIONS(829), + [anon_sym_anyopaque] = ACTIONS(829), + [anon_sym_bool] = ACTIONS(829), + [anon_sym_int] = ACTIONS(829), + [anon_sym_uint] = ACTIONS(829), + [anon_sym_float] = ACTIONS(829), + [anon_sym_range] = ACTIONS(829), + [anon_sym_i8] = ACTIONS(829), + [anon_sym_i16] = ACTIONS(829), + [anon_sym_i32] = ACTIONS(829), + [anon_sym_i64] = ACTIONS(829), + [anon_sym_u8] = ACTIONS(829), + [anon_sym_u16] = ACTIONS(829), + [anon_sym_u32] = ACTIONS(829), + [anon_sym_u64] = ACTIONS(829), + [anon_sym_isize] = ACTIONS(829), + [anon_sym_usize] = ACTIONS(829), + [anon_sym_f32] = ACTIONS(829), + [anon_sym_f64] = ACTIONS(829), + [anon_sym_c_char] = ACTIONS(829), + [anon_sym_c_schar] = ACTIONS(829), + [anon_sym_c_uchar] = ACTIONS(829), + [anon_sym_c_short] = ACTIONS(829), + [anon_sym_c_ushort] = ACTIONS(829), + [anon_sym_c_int] = ACTIONS(829), + [anon_sym_c_uint] = ACTIONS(829), + [anon_sym_c_long] = ACTIONS(829), + [anon_sym_c_ulong] = ACTIONS(829), + [anon_sym_c_longlong] = ACTIONS(829), + [anon_sym_c_ulonglong] = ACTIONS(829), + [anon_sym_c_float] = ACTIONS(829), + [anon_sym_c_double] = ACTIONS(829), + [anon_sym_c_longdouble] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_yield] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(827), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_defer] = ACTIONS(829), + [anon_sym_errdefer] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_else] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_expand] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(827), + [anon_sym_orelse] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(827), + [anon_sym_BANG_EQ] = ACTIONS(827), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(827), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(827), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_LT_LT] = ACTIONS(829), + [anon_sym_GT_GT] = ACTIONS(827), + [anon_sym_LT_LT_PIPE] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_SLASH] = ACTIONS(827), + [anon_sym_TILDE] = ACTIONS(827), + [anon_sym_try] = ACTIONS(829), + [anon_sym_DOT] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(827), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [sym_none] = ACTIONS(829), + [sym_undefined] = ACTIONS(829), + [sym_sink] = ACTIONS(829), + [sym_integer] = ACTIONS(829), + [sym_float] = ACTIONS(827), + [anon_sym_DQUOTE] = ACTIONS(827), + [sym_multiline_string] = ACTIONS(827), + [sym_character] = ACTIONS(827), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(827), }, [STATE(697)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1539), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1471), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_if] = ACTIONS(433), + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_import] = ACTIONS(1059), + [anon_sym_test] = ACTIONS(1059), + [anon_sym_hide] = ACTIONS(1059), + [anon_sym_func] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_struct] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1057), + [anon_sym_QMARK] = ACTIONS(1057), + [anon_sym_STAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_anyopaque] = ACTIONS(1059), + [anon_sym_bool] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(1059), + [anon_sym_uint] = ACTIONS(1059), + [anon_sym_float] = ACTIONS(1059), + [anon_sym_range] = ACTIONS(1059), + [anon_sym_i8] = ACTIONS(1059), + [anon_sym_i16] = ACTIONS(1059), + [anon_sym_i32] = ACTIONS(1059), + [anon_sym_i64] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1059), + [anon_sym_u16] = ACTIONS(1059), + [anon_sym_u32] = ACTIONS(1059), + [anon_sym_u64] = ACTIONS(1059), + [anon_sym_isize] = ACTIONS(1059), + [anon_sym_usize] = ACTIONS(1059), + [anon_sym_f32] = ACTIONS(1059), + [anon_sym_f64] = ACTIONS(1059), + [anon_sym_c_char] = ACTIONS(1059), + [anon_sym_c_schar] = ACTIONS(1059), + [anon_sym_c_uchar] = ACTIONS(1059), + [anon_sym_c_short] = ACTIONS(1059), + [anon_sym_c_ushort] = ACTIONS(1059), + [anon_sym_c_int] = ACTIONS(1059), + [anon_sym_c_uint] = ACTIONS(1059), + [anon_sym_c_long] = ACTIONS(1059), + [anon_sym_c_ulong] = ACTIONS(1059), + [anon_sym_c_longlong] = ACTIONS(1059), + [anon_sym_c_ulonglong] = ACTIONS(1059), + [anon_sym_c_float] = ACTIONS(1059), + [anon_sym_c_double] = ACTIONS(1059), + [anon_sym_c_longdouble] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_COLON] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_defer] = ACTIONS(1059), + [anon_sym_errdefer] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_expand] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1057), + [anon_sym_orelse] = ACTIONS(1059), + [anon_sym_catch] = ACTIONS(1059), + [anon_sym_or] = ACTIONS(1059), + [anon_sym_and] = ACTIONS(1059), + [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_LT_EQ] = ACTIONS(1057), + [anon_sym_GT] = ACTIONS(1059), + [anon_sym_GT_EQ] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_xor] = ACTIONS(1059), + [anon_sym_LT_LT] = ACTIONS(1059), + [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_LT_LT_PIPE] = ACTIONS(1057), + [anon_sym_PLUS] = ACTIONS(1057), + [anon_sym_SLASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1059), + [anon_sym_CARET] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [sym_none] = ACTIONS(1059), + [sym_undefined] = ACTIONS(1059), + [sym_sink] = ACTIONS(1059), + [sym_integer] = ACTIONS(1059), + [sym_float] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym_multiline_string] = ACTIONS(1057), + [sym_character] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1057), + }, + [STATE(698)] = { + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_identifier] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(1011), + [anon_sym_test] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), + [anon_sym_func] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_struct] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1009), + [anon_sym_void] = ACTIONS(1011), + [anon_sym_anyopaque] = ACTIONS(1011), + [anon_sym_bool] = ACTIONS(1011), + [anon_sym_int] = ACTIONS(1011), + [anon_sym_uint] = ACTIONS(1011), + [anon_sym_float] = ACTIONS(1011), + [anon_sym_range] = ACTIONS(1011), + [anon_sym_i8] = ACTIONS(1011), + [anon_sym_i16] = ACTIONS(1011), + [anon_sym_i32] = ACTIONS(1011), + [anon_sym_i64] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1011), + [anon_sym_u16] = ACTIONS(1011), + [anon_sym_u32] = ACTIONS(1011), + [anon_sym_u64] = ACTIONS(1011), + [anon_sym_isize] = ACTIONS(1011), + [anon_sym_usize] = ACTIONS(1011), + [anon_sym_f32] = ACTIONS(1011), + [anon_sym_f64] = ACTIONS(1011), + [anon_sym_c_char] = ACTIONS(1011), + [anon_sym_c_schar] = ACTIONS(1011), + [anon_sym_c_uchar] = ACTIONS(1011), + [anon_sym_c_short] = ACTIONS(1011), + [anon_sym_c_ushort] = ACTIONS(1011), + [anon_sym_c_int] = ACTIONS(1011), + [anon_sym_c_uint] = ACTIONS(1011), + [anon_sym_c_long] = ACTIONS(1011), + [anon_sym_c_ulong] = ACTIONS(1011), + [anon_sym_c_longlong] = ACTIONS(1011), + [anon_sym_c_ulonglong] = ACTIONS(1011), + [anon_sym_c_float] = ACTIONS(1011), + [anon_sym_c_double] = ACTIONS(1011), + [anon_sym_c_longdouble] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_yield] = ACTIONS(1011), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_defer] = ACTIONS(1011), + [anon_sym_errdefer] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_else] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_expand] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), + [anon_sym_orelse] = ACTIONS(1011), + [anon_sym_catch] = ACTIONS(1011), + [anon_sym_or] = ACTIONS(1011), + [anon_sym_and] = ACTIONS(1011), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1011), + [anon_sym_GT_EQ] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_xor] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1011), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_LT_LT_PIPE] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [sym_none] = ACTIONS(1011), + [sym_undefined] = ACTIONS(1011), + [sym_sink] = ACTIONS(1011), + [sym_integer] = ACTIONS(1011), + [sym_float] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1009), + [sym_multiline_string] = ACTIONS(1009), + [sym_character] = ACTIONS(1009), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1009), + }, + [STATE(699)] = { + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_import] = ACTIONS(615), + [anon_sym_test] = ACTIONS(615), + [anon_sym_hide] = ACTIONS(615), + [anon_sym_func] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(613), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_void] = ACTIONS(615), + [anon_sym_anyopaque] = ACTIONS(615), + [anon_sym_bool] = ACTIONS(615), + [anon_sym_int] = ACTIONS(615), + [anon_sym_uint] = ACTIONS(615), + [anon_sym_float] = ACTIONS(615), + [anon_sym_range] = ACTIONS(615), + [anon_sym_i8] = ACTIONS(615), + [anon_sym_i16] = ACTIONS(615), + [anon_sym_i32] = ACTIONS(615), + [anon_sym_i64] = ACTIONS(615), + [anon_sym_u8] = ACTIONS(615), + [anon_sym_u16] = ACTIONS(615), + [anon_sym_u32] = ACTIONS(615), + [anon_sym_u64] = ACTIONS(615), + [anon_sym_isize] = ACTIONS(615), + [anon_sym_usize] = ACTIONS(615), + [anon_sym_f32] = ACTIONS(615), + [anon_sym_f64] = ACTIONS(615), + [anon_sym_c_char] = ACTIONS(615), + [anon_sym_c_schar] = ACTIONS(615), + [anon_sym_c_uchar] = ACTIONS(615), + [anon_sym_c_short] = ACTIONS(615), + [anon_sym_c_ushort] = ACTIONS(615), + [anon_sym_c_int] = ACTIONS(615), + [anon_sym_c_uint] = ACTIONS(615), + [anon_sym_c_long] = ACTIONS(615), + [anon_sym_c_ulong] = ACTIONS(615), + [anon_sym_c_longlong] = ACTIONS(615), + [anon_sym_c_ulonglong] = ACTIONS(615), + [anon_sym_c_float] = ACTIONS(615), + [anon_sym_c_double] = ACTIONS(615), + [anon_sym_c_longdouble] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_errdefer] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_else] = ACTIONS(615), + [anon_sym_while] = ACTIONS(615), + [anon_sym_expand] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_DOT_DOT] = ACTIONS(615), + [anon_sym_DOT_DOT_EQ] = ACTIONS(613), + [anon_sym_orelse] = ACTIONS(615), + [anon_sym_catch] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_and] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_xor] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(613), + [anon_sym_LT_LT_PIPE] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(613), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_try] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_true] = ACTIONS(615), + [anon_sym_false] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_undefined] = ACTIONS(615), + [sym_sink] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(613), + [anon_sym_DQUOTE] = ACTIONS(613), + [sym_multiline_string] = ACTIONS(613), + [sym_character] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(613), + }, + [STATE(700)] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [anon_sym_import] = ACTIONS(643), + [anon_sym_test] = ACTIONS(643), + [anon_sym_hide] = ACTIONS(643), + [anon_sym_func] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_void] = ACTIONS(643), + [anon_sym_anyopaque] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_int] = ACTIONS(643), + [anon_sym_uint] = ACTIONS(643), + [anon_sym_float] = ACTIONS(643), + [anon_sym_range] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_c_char] = ACTIONS(643), + [anon_sym_c_schar] = ACTIONS(643), + [anon_sym_c_uchar] = ACTIONS(643), + [anon_sym_c_short] = ACTIONS(643), + [anon_sym_c_ushort] = ACTIONS(643), + [anon_sym_c_int] = ACTIONS(643), + [anon_sym_c_uint] = ACTIONS(643), + [anon_sym_c_long] = ACTIONS(643), + [anon_sym_c_ulong] = ACTIONS(643), + [anon_sym_c_longlong] = ACTIONS(643), + [anon_sym_c_ulonglong] = ACTIONS(643), + [anon_sym_c_float] = ACTIONS(643), + [anon_sym_c_double] = ACTIONS(643), + [anon_sym_c_longdouble] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_defer] = ACTIONS(643), + [anon_sym_errdefer] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [anon_sym_expand] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(641), + [anon_sym_orelse] = ACTIONS(643), + [anon_sym_catch] = ACTIONS(643), + [anon_sym_or] = ACTIONS(643), + [anon_sym_and] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_xor] = ACTIONS(643), + [anon_sym_LT_LT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(641), + [anon_sym_LT_LT_PIPE] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_try] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym_true] = ACTIONS(643), + [anon_sym_false] = ACTIONS(643), + [sym_none] = ACTIONS(643), + [sym_undefined] = ACTIONS(643), + [sym_sink] = ACTIONS(643), + [sym_integer] = ACTIONS(643), + [sym_float] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_multiline_string] = ACTIONS(641), + [sym_character] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(641), + }, + [STATE(701)] = { + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_identifier] = ACTIONS(1063), + [anon_sym_import] = ACTIONS(1063), + [anon_sym_test] = ACTIONS(1063), + [anon_sym_hide] = ACTIONS(1063), + [anon_sym_func] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_struct] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_RBRACE] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(1061), + [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1061), + [anon_sym_void] = ACTIONS(1063), + [anon_sym_anyopaque] = ACTIONS(1063), + [anon_sym_bool] = ACTIONS(1063), + [anon_sym_int] = ACTIONS(1063), + [anon_sym_uint] = ACTIONS(1063), + [anon_sym_float] = ACTIONS(1063), + [anon_sym_range] = ACTIONS(1063), + [anon_sym_i8] = ACTIONS(1063), + [anon_sym_i16] = ACTIONS(1063), + [anon_sym_i32] = ACTIONS(1063), + [anon_sym_i64] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(1063), + [anon_sym_u16] = ACTIONS(1063), + [anon_sym_u32] = ACTIONS(1063), + [anon_sym_u64] = ACTIONS(1063), + [anon_sym_isize] = ACTIONS(1063), + [anon_sym_usize] = ACTIONS(1063), + [anon_sym_f32] = ACTIONS(1063), + [anon_sym_f64] = ACTIONS(1063), + [anon_sym_c_char] = ACTIONS(1063), + [anon_sym_c_schar] = ACTIONS(1063), + [anon_sym_c_uchar] = ACTIONS(1063), + [anon_sym_c_short] = ACTIONS(1063), + [anon_sym_c_ushort] = ACTIONS(1063), + [anon_sym_c_int] = ACTIONS(1063), + [anon_sym_c_uint] = ACTIONS(1063), + [anon_sym_c_long] = ACTIONS(1063), + [anon_sym_c_ulong] = ACTIONS(1063), + [anon_sym_c_longlong] = ACTIONS(1063), + [anon_sym_c_ulonglong] = ACTIONS(1063), + [anon_sym_c_float] = ACTIONS(1063), + [anon_sym_c_double] = ACTIONS(1063), + [anon_sym_c_longdouble] = ACTIONS(1063), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_yield] = ACTIONS(1063), + [anon_sym_COLON] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1063), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_defer] = ACTIONS(1063), + [anon_sym_errdefer] = ACTIONS(1063), + [anon_sym_if] = ACTIONS(1063), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_while] = ACTIONS(1063), + [anon_sym_expand] = ACTIONS(1063), + [anon_sym_for] = ACTIONS(1063), + [anon_sym_match] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1061), + [anon_sym_orelse] = ACTIONS(1063), + [anon_sym_catch] = ACTIONS(1063), + [anon_sym_or] = ACTIONS(1063), + [anon_sym_and] = ACTIONS(1063), + [anon_sym_EQ_EQ] = ACTIONS(1061), + [anon_sym_BANG_EQ] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_LT_EQ] = ACTIONS(1061), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_EQ] = ACTIONS(1061), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_xor] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1061), + [anon_sym_LT_LT_PIPE] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_TILDE] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1063), + [anon_sym_DOT] = ACTIONS(1063), + [anon_sym_CARET] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1063), + [anon_sym_false] = ACTIONS(1063), + [sym_none] = ACTIONS(1063), + [sym_undefined] = ACTIONS(1063), + [sym_sink] = ACTIONS(1063), + [sym_integer] = ACTIONS(1063), + [sym_float] = ACTIONS(1061), + [anon_sym_DQUOTE] = ACTIONS(1061), + [sym_multiline_string] = ACTIONS(1061), + [sym_character] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1061), + }, + [STATE(702)] = { + [ts_builtin_sym_end] = ACTIONS(641), + [sym_identifier] = ACTIONS(643), + [anon_sym_import] = ACTIONS(643), + [anon_sym_test] = ACTIONS(643), + [anon_sym_hide] = ACTIONS(643), + [anon_sym_func] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_LPAREN] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_DASH] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(641), + [anon_sym_PIPE] = ACTIONS(641), + [anon_sym_QMARK] = ACTIONS(641), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(641), + [anon_sym_void] = ACTIONS(643), + [anon_sym_anyopaque] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_int] = ACTIONS(643), + [anon_sym_uint] = ACTIONS(643), + [anon_sym_float] = ACTIONS(643), + [anon_sym_range] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_c_char] = ACTIONS(643), + [anon_sym_c_schar] = ACTIONS(643), + [anon_sym_c_uchar] = ACTIONS(643), + [anon_sym_c_short] = ACTIONS(643), + [anon_sym_c_ushort] = ACTIONS(643), + [anon_sym_c_int] = ACTIONS(643), + [anon_sym_c_uint] = ACTIONS(643), + [anon_sym_c_long] = ACTIONS(643), + [anon_sym_c_ulong] = ACTIONS(643), + [anon_sym_c_longlong] = ACTIONS(643), + [anon_sym_c_ulonglong] = ACTIONS(643), + [anon_sym_c_float] = ACTIONS(643), + [anon_sym_c_double] = ACTIONS(643), + [anon_sym_c_longdouble] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(643), + [anon_sym_COLON] = ACTIONS(641), + [anon_sym_break] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_defer] = ACTIONS(643), + [anon_sym_errdefer] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_else] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [anon_sym_expand] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_EQ] = ACTIONS(641), + [anon_sym_orelse] = ACTIONS(643), + [anon_sym_catch] = ACTIONS(643), + [anon_sym_or] = ACTIONS(643), + [anon_sym_and] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(641), + [anon_sym_BANG_EQ] = ACTIONS(641), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(641), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_xor] = ACTIONS(643), + [anon_sym_LT_LT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(641), + [anon_sym_LT_LT_PIPE] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(641), + [anon_sym_SLASH] = ACTIONS(641), + [anon_sym_TILDE] = ACTIONS(641), + [anon_sym_try] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(641), + [anon_sym_true] = ACTIONS(643), + [anon_sym_false] = ACTIONS(643), + [sym_none] = ACTIONS(643), + [sym_undefined] = ACTIONS(643), + [sym_sink] = ACTIONS(643), + [sym_integer] = ACTIONS(643), + [sym_float] = ACTIONS(641), + [anon_sym_DQUOTE] = ACTIONS(641), + [sym_multiline_string] = ACTIONS(641), + [sym_character] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(641), + }, + [STATE(703)] = { + [ts_builtin_sym_end] = ACTIONS(1069), + [sym_identifier] = ACTIONS(1071), + [anon_sym_import] = ACTIONS(1071), + [anon_sym_test] = ACTIONS(1071), + [anon_sym_hide] = ACTIONS(1071), + [anon_sym_func] = ACTIONS(1071), + [anon_sym_BANG] = ACTIONS(1071), + [anon_sym_struct] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1069), + [anon_sym_RBRACE] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_DOLLAR] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1069), + [anon_sym_QMARK] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_void] = ACTIONS(1071), + [anon_sym_anyopaque] = ACTIONS(1071), + [anon_sym_bool] = ACTIONS(1071), + [anon_sym_int] = ACTIONS(1071), + [anon_sym_uint] = ACTIONS(1071), + [anon_sym_float] = ACTIONS(1071), + [anon_sym_range] = ACTIONS(1071), + [anon_sym_i8] = ACTIONS(1071), + [anon_sym_i16] = ACTIONS(1071), + [anon_sym_i32] = ACTIONS(1071), + [anon_sym_i64] = ACTIONS(1071), + [anon_sym_u8] = ACTIONS(1071), + [anon_sym_u16] = ACTIONS(1071), + [anon_sym_u32] = ACTIONS(1071), + [anon_sym_u64] = ACTIONS(1071), + [anon_sym_isize] = ACTIONS(1071), + [anon_sym_usize] = ACTIONS(1071), + [anon_sym_f32] = ACTIONS(1071), + [anon_sym_f64] = ACTIONS(1071), + [anon_sym_c_char] = ACTIONS(1071), + [anon_sym_c_schar] = ACTIONS(1071), + [anon_sym_c_uchar] = ACTIONS(1071), + [anon_sym_c_short] = ACTIONS(1071), + [anon_sym_c_ushort] = ACTIONS(1071), + [anon_sym_c_int] = ACTIONS(1071), + [anon_sym_c_uint] = ACTIONS(1071), + [anon_sym_c_long] = ACTIONS(1071), + [anon_sym_c_ulong] = ACTIONS(1071), + [anon_sym_c_longlong] = ACTIONS(1071), + [anon_sym_c_ulonglong] = ACTIONS(1071), + [anon_sym_c_float] = ACTIONS(1071), + [anon_sym_c_double] = ACTIONS(1071), + [anon_sym_c_longdouble] = ACTIONS(1071), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(1071), + [anon_sym_COLON] = ACTIONS(1069), + [anon_sym_break] = ACTIONS(1071), + [anon_sym_continue] = ACTIONS(1071), + [anon_sym_defer] = ACTIONS(1071), + [anon_sym_errdefer] = ACTIONS(1071), + [anon_sym_if] = ACTIONS(1071), + [anon_sym_else] = ACTIONS(1071), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_expand] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1071), + [anon_sym_match] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1069), + [anon_sym_orelse] = ACTIONS(1071), + [anon_sym_catch] = ACTIONS(1071), + [anon_sym_or] = ACTIONS(1071), + [anon_sym_and] = ACTIONS(1071), + [anon_sym_EQ_EQ] = ACTIONS(1069), + [anon_sym_BANG_EQ] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1069), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_xor] = ACTIONS(1071), + [anon_sym_LT_LT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1069), + [anon_sym_LT_LT_PIPE] = ACTIONS(1069), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(1069), + [anon_sym_TILDE] = ACTIONS(1069), + [anon_sym_try] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1071), + [anon_sym_CARET] = ACTIONS(1069), + [anon_sym_true] = ACTIONS(1071), + [anon_sym_false] = ACTIONS(1071), + [sym_none] = ACTIONS(1071), + [sym_undefined] = ACTIONS(1071), + [sym_sink] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1069), + [sym_multiline_string] = ACTIONS(1069), + [sym_character] = ACTIONS(1069), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1069), + }, + [STATE(704)] = { + [ts_builtin_sym_end] = ACTIONS(645), + [sym_identifier] = ACTIONS(647), + [anon_sym_import] = ACTIONS(647), + [anon_sym_test] = ACTIONS(647), + [anon_sym_hide] = ACTIONS(647), + [anon_sym_func] = ACTIONS(647), + [anon_sym_BANG] = ACTIONS(647), + [anon_sym_struct] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(645), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(645), + [anon_sym_PIPE] = ACTIONS(645), + [anon_sym_QMARK] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(645), + [anon_sym_void] = ACTIONS(647), + [anon_sym_anyopaque] = ACTIONS(647), + [anon_sym_bool] = ACTIONS(647), + [anon_sym_int] = ACTIONS(647), + [anon_sym_uint] = ACTIONS(647), + [anon_sym_float] = ACTIONS(647), + [anon_sym_range] = ACTIONS(647), + [anon_sym_i8] = ACTIONS(647), + [anon_sym_i16] = ACTIONS(647), + [anon_sym_i32] = ACTIONS(647), + [anon_sym_i64] = ACTIONS(647), + [anon_sym_u8] = ACTIONS(647), + [anon_sym_u16] = ACTIONS(647), + [anon_sym_u32] = ACTIONS(647), + [anon_sym_u64] = ACTIONS(647), + [anon_sym_isize] = ACTIONS(647), + [anon_sym_usize] = ACTIONS(647), + [anon_sym_f32] = ACTIONS(647), + [anon_sym_f64] = ACTIONS(647), + [anon_sym_c_char] = ACTIONS(647), + [anon_sym_c_schar] = ACTIONS(647), + [anon_sym_c_uchar] = ACTIONS(647), + [anon_sym_c_short] = ACTIONS(647), + [anon_sym_c_ushort] = ACTIONS(647), + [anon_sym_c_int] = ACTIONS(647), + [anon_sym_c_uint] = ACTIONS(647), + [anon_sym_c_long] = ACTIONS(647), + [anon_sym_c_ulong] = ACTIONS(647), + [anon_sym_c_longlong] = ACTIONS(647), + [anon_sym_c_ulonglong] = ACTIONS(647), + [anon_sym_c_float] = ACTIONS(647), + [anon_sym_c_double] = ACTIONS(647), + [anon_sym_c_longdouble] = ACTIONS(647), + [anon_sym_return] = ACTIONS(647), + [anon_sym_yield] = ACTIONS(647), + [anon_sym_COLON] = ACTIONS(645), + [anon_sym_break] = ACTIONS(647), + [anon_sym_continue] = ACTIONS(647), + [anon_sym_defer] = ACTIONS(647), + [anon_sym_errdefer] = ACTIONS(647), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(647), + [anon_sym_while] = ACTIONS(647), + [anon_sym_expand] = ACTIONS(647), + [anon_sym_for] = ACTIONS(647), + [anon_sym_match] = ACTIONS(647), + [anon_sym_DOT_DOT] = ACTIONS(647), + [anon_sym_DOT_DOT_EQ] = ACTIONS(645), + [anon_sym_orelse] = ACTIONS(647), + [anon_sym_catch] = ACTIONS(647), + [anon_sym_or] = ACTIONS(647), + [anon_sym_and] = ACTIONS(647), + [anon_sym_EQ_EQ] = ACTIONS(645), + [anon_sym_BANG_EQ] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(647), + [anon_sym_LT_EQ] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_GT_EQ] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(645), + [anon_sym_xor] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(647), + [anon_sym_GT_GT] = ACTIONS(645), + [anon_sym_LT_LT_PIPE] = ACTIONS(645), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(645), + [anon_sym_try] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(647), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_true] = ACTIONS(647), + [anon_sym_false] = ACTIONS(647), + [sym_none] = ACTIONS(647), + [sym_undefined] = ACTIONS(647), + [sym_sink] = ACTIONS(647), + [sym_integer] = ACTIONS(647), + [sym_float] = ACTIONS(645), + [anon_sym_DQUOTE] = ACTIONS(645), + [sym_multiline_string] = ACTIONS(645), + [sym_character] = ACTIONS(645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(645), + }, + [STATE(705)] = { + [ts_builtin_sym_end] = ACTIONS(835), + [sym_identifier] = ACTIONS(837), + [anon_sym_import] = ACTIONS(837), + [anon_sym_test] = ACTIONS(837), + [anon_sym_hide] = ACTIONS(837), + [anon_sym_func] = ACTIONS(837), + [anon_sym_BANG] = ACTIONS(837), + [anon_sym_struct] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(835), + [anon_sym_RBRACE] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_DOLLAR] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_QMARK] = ACTIONS(835), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_void] = ACTIONS(837), + [anon_sym_anyopaque] = ACTIONS(837), + [anon_sym_bool] = ACTIONS(837), + [anon_sym_int] = ACTIONS(837), + [anon_sym_uint] = ACTIONS(837), + [anon_sym_float] = ACTIONS(837), + [anon_sym_range] = ACTIONS(837), + [anon_sym_i8] = ACTIONS(837), + [anon_sym_i16] = ACTIONS(837), + [anon_sym_i32] = ACTIONS(837), + [anon_sym_i64] = ACTIONS(837), + [anon_sym_u8] = ACTIONS(837), + [anon_sym_u16] = ACTIONS(837), + [anon_sym_u32] = ACTIONS(837), + [anon_sym_u64] = ACTIONS(837), + [anon_sym_isize] = ACTIONS(837), + [anon_sym_usize] = ACTIONS(837), + [anon_sym_f32] = ACTIONS(837), + [anon_sym_f64] = ACTIONS(837), + [anon_sym_c_char] = ACTIONS(837), + [anon_sym_c_schar] = ACTIONS(837), + [anon_sym_c_uchar] = ACTIONS(837), + [anon_sym_c_short] = ACTIONS(837), + [anon_sym_c_ushort] = ACTIONS(837), + [anon_sym_c_int] = ACTIONS(837), + [anon_sym_c_uint] = ACTIONS(837), + [anon_sym_c_long] = ACTIONS(837), + [anon_sym_c_ulong] = ACTIONS(837), + [anon_sym_c_longlong] = ACTIONS(837), + [anon_sym_c_ulonglong] = ACTIONS(837), + [anon_sym_c_float] = ACTIONS(837), + [anon_sym_c_double] = ACTIONS(837), + [anon_sym_c_longdouble] = ACTIONS(837), + [anon_sym_return] = ACTIONS(837), + [anon_sym_yield] = ACTIONS(837), + [anon_sym_COLON] = ACTIONS(835), + [anon_sym_break] = ACTIONS(837), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_defer] = ACTIONS(837), + [anon_sym_errdefer] = ACTIONS(837), + [anon_sym_if] = ACTIONS(837), + [anon_sym_else] = ACTIONS(837), + [anon_sym_while] = ACTIONS(837), + [anon_sym_expand] = ACTIONS(837), + [anon_sym_for] = ACTIONS(837), + [anon_sym_match] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(835), + [anon_sym_orelse] = ACTIONS(837), + [anon_sym_catch] = ACTIONS(837), + [anon_sym_or] = ACTIONS(837), + [anon_sym_and] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_LT] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_xor] = ACTIONS(837), + [anon_sym_LT_LT] = ACTIONS(837), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(835), + [anon_sym_try] = ACTIONS(837), + [anon_sym_DOT] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_true] = ACTIONS(837), + [anon_sym_false] = ACTIONS(837), + [sym_none] = ACTIONS(837), + [sym_undefined] = ACTIONS(837), + [sym_sink] = ACTIONS(837), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(835), + [sym_multiline_string] = ACTIONS(835), + [sym_character] = ACTIONS(835), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(835), + }, + [STATE(706)] = { + [ts_builtin_sym_end] = ACTIONS(649), + [sym_identifier] = ACTIONS(651), + [anon_sym_import] = ACTIONS(651), + [anon_sym_test] = ACTIONS(651), + [anon_sym_hide] = ACTIONS(651), + [anon_sym_func] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_struct] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_DASH] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_void] = ACTIONS(651), + [anon_sym_anyopaque] = ACTIONS(651), + [anon_sym_bool] = ACTIONS(651), + [anon_sym_int] = ACTIONS(651), + [anon_sym_uint] = ACTIONS(651), + [anon_sym_float] = ACTIONS(651), + [anon_sym_range] = ACTIONS(651), + [anon_sym_i8] = ACTIONS(651), + [anon_sym_i16] = ACTIONS(651), + [anon_sym_i32] = ACTIONS(651), + [anon_sym_i64] = ACTIONS(651), + [anon_sym_u8] = ACTIONS(651), + [anon_sym_u16] = ACTIONS(651), + [anon_sym_u32] = ACTIONS(651), + [anon_sym_u64] = ACTIONS(651), + [anon_sym_isize] = ACTIONS(651), + [anon_sym_usize] = ACTIONS(651), + [anon_sym_f32] = ACTIONS(651), + [anon_sym_f64] = ACTIONS(651), + [anon_sym_c_char] = ACTIONS(651), + [anon_sym_c_schar] = ACTIONS(651), + [anon_sym_c_uchar] = ACTIONS(651), + [anon_sym_c_short] = ACTIONS(651), + [anon_sym_c_ushort] = ACTIONS(651), + [anon_sym_c_int] = ACTIONS(651), + [anon_sym_c_uint] = ACTIONS(651), + [anon_sym_c_long] = ACTIONS(651), + [anon_sym_c_ulong] = ACTIONS(651), + [anon_sym_c_longlong] = ACTIONS(651), + [anon_sym_c_ulonglong] = ACTIONS(651), + [anon_sym_c_float] = ACTIONS(651), + [anon_sym_c_double] = ACTIONS(651), + [anon_sym_c_longdouble] = ACTIONS(651), + [anon_sym_return] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(651), + [anon_sym_COLON] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(651), + [anon_sym_defer] = ACTIONS(651), + [anon_sym_errdefer] = ACTIONS(651), + [anon_sym_if] = ACTIONS(651), + [anon_sym_else] = ACTIONS(651), + [anon_sym_while] = ACTIONS(651), + [anon_sym_expand] = ACTIONS(651), + [anon_sym_for] = ACTIONS(651), + [anon_sym_match] = ACTIONS(651), + [anon_sym_DOT_DOT] = ACTIONS(651), + [anon_sym_DOT_DOT_EQ] = ACTIONS(649), + [anon_sym_orelse] = ACTIONS(651), + [anon_sym_catch] = ACTIONS(651), + [anon_sym_or] = ACTIONS(651), + [anon_sym_and] = ACTIONS(651), + [anon_sym_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(651), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_GT] = ACTIONS(651), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_xor] = ACTIONS(651), + [anon_sym_LT_LT] = ACTIONS(651), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_LT_LT_PIPE] = ACTIONS(649), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(649), + [anon_sym_try] = ACTIONS(651), + [anon_sym_DOT] = ACTIONS(651), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_true] = ACTIONS(651), + [anon_sym_false] = ACTIONS(651), + [sym_none] = ACTIONS(651), + [sym_undefined] = ACTIONS(651), + [sym_sink] = ACTIONS(651), + [sym_integer] = ACTIONS(651), + [sym_float] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(649), + [sym_multiline_string] = ACTIONS(649), + [sym_character] = ACTIONS(649), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(649), + }, + [STATE(707)] = { + [ts_builtin_sym_end] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), + [anon_sym_import] = ACTIONS(508), + [anon_sym_test] = ACTIONS(508), + [anon_sym_hide] = ACTIONS(508), + [anon_sym_func] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_struct] = ACTIONS(508), + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_QMARK] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_void] = ACTIONS(508), + [anon_sym_anyopaque] = ACTIONS(508), + [anon_sym_bool] = ACTIONS(508), + [anon_sym_int] = ACTIONS(508), + [anon_sym_uint] = ACTIONS(508), + [anon_sym_float] = ACTIONS(508), + [anon_sym_range] = ACTIONS(508), + [anon_sym_i8] = ACTIONS(508), + [anon_sym_i16] = ACTIONS(508), + [anon_sym_i32] = ACTIONS(508), + [anon_sym_i64] = ACTIONS(508), + [anon_sym_u8] = ACTIONS(508), + [anon_sym_u16] = ACTIONS(508), + [anon_sym_u32] = ACTIONS(508), + [anon_sym_u64] = ACTIONS(508), + [anon_sym_isize] = ACTIONS(508), + [anon_sym_usize] = ACTIONS(508), + [anon_sym_f32] = ACTIONS(508), + [anon_sym_f64] = ACTIONS(508), + [anon_sym_c_char] = ACTIONS(508), + [anon_sym_c_schar] = ACTIONS(508), + [anon_sym_c_uchar] = ACTIONS(508), + [anon_sym_c_short] = ACTIONS(508), + [anon_sym_c_ushort] = ACTIONS(508), + [anon_sym_c_int] = ACTIONS(508), + [anon_sym_c_uint] = ACTIONS(508), + [anon_sym_c_long] = ACTIONS(508), + [anon_sym_c_ulong] = ACTIONS(508), + [anon_sym_c_longlong] = ACTIONS(508), + [anon_sym_c_ulonglong] = ACTIONS(508), + [anon_sym_c_float] = ACTIONS(508), + [anon_sym_c_double] = ACTIONS(508), + [anon_sym_c_longdouble] = ACTIONS(508), + [anon_sym_return] = ACTIONS(508), + [anon_sym_yield] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(506), + [anon_sym_break] = ACTIONS(508), + [anon_sym_continue] = ACTIONS(508), + [anon_sym_defer] = ACTIONS(508), + [anon_sym_errdefer] = ACTIONS(508), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_while] = ACTIONS(508), + [anon_sym_expand] = ACTIONS(508), + [anon_sym_for] = ACTIONS(508), + [anon_sym_match] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(506), + [anon_sym_orelse] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_or] = ACTIONS(508), + [anon_sym_and] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(506), + [anon_sym_BANG_EQ] = ACTIONS(506), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(506), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_xor] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_try] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(508), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_true] = ACTIONS(508), + [anon_sym_false] = ACTIONS(508), + [sym_none] = ACTIONS(508), + [sym_undefined] = ACTIONS(508), + [sym_sink] = ACTIONS(508), + [sym_integer] = ACTIONS(508), + [sym_float] = ACTIONS(506), + [anon_sym_DQUOTE] = ACTIONS(506), + [sym_multiline_string] = ACTIONS(506), + [sym_character] = ACTIONS(506), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(506), + }, + [STATE(708)] = { + [ts_builtin_sym_end] = ACTIONS(947), + [sym_identifier] = ACTIONS(949), + [anon_sym_import] = ACTIONS(949), + [anon_sym_test] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), + [anon_sym_func] = ACTIONS(949), + [anon_sym_BANG] = ACTIONS(949), + [anon_sym_struct] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_void] = ACTIONS(949), + [anon_sym_anyopaque] = ACTIONS(949), + [anon_sym_bool] = ACTIONS(949), + [anon_sym_int] = ACTIONS(949), + [anon_sym_uint] = ACTIONS(949), + [anon_sym_float] = ACTIONS(949), + [anon_sym_range] = ACTIONS(949), + [anon_sym_i8] = ACTIONS(949), + [anon_sym_i16] = ACTIONS(949), + [anon_sym_i32] = ACTIONS(949), + [anon_sym_i64] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(949), + [anon_sym_u16] = ACTIONS(949), + [anon_sym_u32] = ACTIONS(949), + [anon_sym_u64] = ACTIONS(949), + [anon_sym_isize] = ACTIONS(949), + [anon_sym_usize] = ACTIONS(949), + [anon_sym_f32] = ACTIONS(949), + [anon_sym_f64] = ACTIONS(949), + [anon_sym_c_char] = ACTIONS(949), + [anon_sym_c_schar] = ACTIONS(949), + [anon_sym_c_uchar] = ACTIONS(949), + [anon_sym_c_short] = ACTIONS(949), + [anon_sym_c_ushort] = ACTIONS(949), + [anon_sym_c_int] = ACTIONS(949), + [anon_sym_c_uint] = ACTIONS(949), + [anon_sym_c_long] = ACTIONS(949), + [anon_sym_c_ulong] = ACTIONS(949), + [anon_sym_c_longlong] = ACTIONS(949), + [anon_sym_c_ulonglong] = ACTIONS(949), + [anon_sym_c_float] = ACTIONS(949), + [anon_sym_c_double] = ACTIONS(949), + [anon_sym_c_longdouble] = ACTIONS(949), + [anon_sym_return] = ACTIONS(949), + [anon_sym_yield] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_defer] = ACTIONS(949), + [anon_sym_errdefer] = ACTIONS(949), + [anon_sym_if] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_while] = ACTIONS(949), + [anon_sym_expand] = ACTIONS(949), + [anon_sym_for] = ACTIONS(949), + [anon_sym_match] = ACTIONS(949), + [anon_sym_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(947), + [anon_sym_orelse] = ACTIONS(949), + [anon_sym_catch] = ACTIONS(949), + [anon_sym_or] = ACTIONS(949), + [anon_sym_and] = ACTIONS(949), + [anon_sym_EQ_EQ] = ACTIONS(947), + [anon_sym_BANG_EQ] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(947), + [anon_sym_GT] = ACTIONS(949), + [anon_sym_GT_EQ] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_xor] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(949), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_LT_LT_PIPE] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_TILDE] = ACTIONS(947), + [anon_sym_try] = ACTIONS(949), + [anon_sym_DOT] = ACTIONS(949), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_true] = ACTIONS(949), + [anon_sym_false] = ACTIONS(949), + [sym_none] = ACTIONS(949), + [sym_undefined] = ACTIONS(949), + [sym_sink] = ACTIONS(949), + [sym_integer] = ACTIONS(949), + [sym_float] = ACTIONS(947), + [anon_sym_DQUOTE] = ACTIONS(947), + [sym_multiline_string] = ACTIONS(947), + [sym_character] = ACTIONS(947), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(947), + }, + [STATE(709)] = { + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [anon_sym_import] = ACTIONS(953), + [anon_sym_test] = ACTIONS(953), + [anon_sym_hide] = ACTIONS(953), + [anon_sym_func] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_struct] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_void] = ACTIONS(953), + [anon_sym_anyopaque] = ACTIONS(953), + [anon_sym_bool] = ACTIONS(953), + [anon_sym_int] = ACTIONS(953), + [anon_sym_uint] = ACTIONS(953), + [anon_sym_float] = ACTIONS(953), + [anon_sym_range] = ACTIONS(953), + [anon_sym_i8] = ACTIONS(953), + [anon_sym_i16] = ACTIONS(953), + [anon_sym_i32] = ACTIONS(953), + [anon_sym_i64] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(953), + [anon_sym_u16] = ACTIONS(953), + [anon_sym_u32] = ACTIONS(953), + [anon_sym_u64] = ACTIONS(953), + [anon_sym_isize] = ACTIONS(953), + [anon_sym_usize] = ACTIONS(953), + [anon_sym_f32] = ACTIONS(953), + [anon_sym_f64] = ACTIONS(953), + [anon_sym_c_char] = ACTIONS(953), + [anon_sym_c_schar] = ACTIONS(953), + [anon_sym_c_uchar] = ACTIONS(953), + [anon_sym_c_short] = ACTIONS(953), + [anon_sym_c_ushort] = ACTIONS(953), + [anon_sym_c_int] = ACTIONS(953), + [anon_sym_c_uint] = ACTIONS(953), + [anon_sym_c_long] = ACTIONS(953), + [anon_sym_c_ulong] = ACTIONS(953), + [anon_sym_c_longlong] = ACTIONS(953), + [anon_sym_c_ulonglong] = ACTIONS(953), + [anon_sym_c_float] = ACTIONS(953), + [anon_sym_c_double] = ACTIONS(953), + [anon_sym_c_longdouble] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(951), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_defer] = ACTIONS(953), + [anon_sym_errdefer] = ACTIONS(953), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_expand] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_match] = ACTIONS(953), + [anon_sym_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(951), + [anon_sym_orelse] = ACTIONS(953), + [anon_sym_catch] = ACTIONS(953), + [anon_sym_or] = ACTIONS(953), + [anon_sym_and] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(951), + [anon_sym_BANG_EQ] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT_EQ] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_xor] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(953), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_LT_LT_PIPE] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_try] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_true] = ACTIONS(953), + [anon_sym_false] = ACTIONS(953), + [sym_none] = ACTIONS(953), + [sym_undefined] = ACTIONS(953), + [sym_sink] = ACTIONS(953), + [sym_integer] = ACTIONS(953), + [sym_float] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_multiline_string] = ACTIONS(951), + [sym_character] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(951), + }, + [STATE(710)] = { + [ts_builtin_sym_end] = ACTIONS(955), + [sym_identifier] = ACTIONS(957), + [anon_sym_import] = ACTIONS(957), + [anon_sym_test] = ACTIONS(957), + [anon_sym_hide] = ACTIONS(957), + [anon_sym_func] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(955), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_void] = ACTIONS(957), + [anon_sym_anyopaque] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_int] = ACTIONS(957), + [anon_sym_uint] = ACTIONS(957), + [anon_sym_float] = ACTIONS(957), + [anon_sym_range] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_c_char] = ACTIONS(957), + [anon_sym_c_schar] = ACTIONS(957), + [anon_sym_c_uchar] = ACTIONS(957), + [anon_sym_c_short] = ACTIONS(957), + [anon_sym_c_ushort] = ACTIONS(957), + [anon_sym_c_int] = ACTIONS(957), + [anon_sym_c_uint] = ACTIONS(957), + [anon_sym_c_long] = ACTIONS(957), + [anon_sym_c_ulong] = ACTIONS(957), + [anon_sym_c_longlong] = ACTIONS(957), + [anon_sym_c_ulonglong] = ACTIONS(957), + [anon_sym_c_float] = ACTIONS(957), + [anon_sym_c_double] = ACTIONS(957), + [anon_sym_c_longdouble] = ACTIONS(957), + [anon_sym_return] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_COLON] = ACTIONS(955), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_defer] = ACTIONS(957), + [anon_sym_errdefer] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_expand] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_orelse] = ACTIONS(957), + [anon_sym_catch] = ACTIONS(957), + [anon_sym_or] = ACTIONS(957), + [anon_sym_and] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_xor] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_LT_LT_PIPE] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_SLASH] = ACTIONS(955), + [anon_sym_TILDE] = ACTIONS(955), + [anon_sym_try] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [sym_none] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [sym_sink] = ACTIONS(957), + [sym_integer] = ACTIONS(957), + [sym_float] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_multiline_string] = ACTIONS(955), + [sym_character] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(955), + }, + [STATE(711)] = { + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_import] = ACTIONS(961), + [anon_sym_test] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_func] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_void] = ACTIONS(961), + [anon_sym_anyopaque] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_int] = ACTIONS(961), + [anon_sym_uint] = ACTIONS(961), + [anon_sym_float] = ACTIONS(961), + [anon_sym_range] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_c_char] = ACTIONS(961), + [anon_sym_c_schar] = ACTIONS(961), + [anon_sym_c_uchar] = ACTIONS(961), + [anon_sym_c_short] = ACTIONS(961), + [anon_sym_c_ushort] = ACTIONS(961), + [anon_sym_c_int] = ACTIONS(961), + [anon_sym_c_uint] = ACTIONS(961), + [anon_sym_c_long] = ACTIONS(961), + [anon_sym_c_ulong] = ACTIONS(961), + [anon_sym_c_longlong] = ACTIONS(961), + [anon_sym_c_ulonglong] = ACTIONS(961), + [anon_sym_c_float] = ACTIONS(961), + [anon_sym_c_double] = ACTIONS(961), + [anon_sym_c_longdouble] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_defer] = ACTIONS(961), + [anon_sym_errdefer] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_expand] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(959), + [anon_sym_orelse] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_or] = ACTIONS(961), + [anon_sym_and] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_xor] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_LT_LT_PIPE] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_try] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [sym_none] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [sym_sink] = ACTIONS(961), + [sym_integer] = ACTIONS(961), + [sym_float] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_multiline_string] = ACTIONS(959), + [sym_character] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(959), + }, + [STATE(712)] = { + [ts_builtin_sym_end] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [anon_sym_import] = ACTIONS(965), + [anon_sym_test] = ACTIONS(965), + [anon_sym_hide] = ACTIONS(965), + [anon_sym_func] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_void] = ACTIONS(965), + [anon_sym_anyopaque] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_int] = ACTIONS(965), + [anon_sym_uint] = ACTIONS(965), + [anon_sym_float] = ACTIONS(965), + [anon_sym_range] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_c_char] = ACTIONS(965), + [anon_sym_c_schar] = ACTIONS(965), + [anon_sym_c_uchar] = ACTIONS(965), + [anon_sym_c_short] = ACTIONS(965), + [anon_sym_c_ushort] = ACTIONS(965), + [anon_sym_c_int] = ACTIONS(965), + [anon_sym_c_uint] = ACTIONS(965), + [anon_sym_c_long] = ACTIONS(965), + [anon_sym_c_ulong] = ACTIONS(965), + [anon_sym_c_longlong] = ACTIONS(965), + [anon_sym_c_ulonglong] = ACTIONS(965), + [anon_sym_c_float] = ACTIONS(965), + [anon_sym_c_double] = ACTIONS(965), + [anon_sym_c_longdouble] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_defer] = ACTIONS(965), + [anon_sym_errdefer] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_expand] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_orelse] = ACTIONS(965), + [anon_sym_catch] = ACTIONS(965), + [anon_sym_or] = ACTIONS(965), + [anon_sym_and] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_xor] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_LT_LT_PIPE] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(963), + [anon_sym_try] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [sym_none] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [sym_sink] = ACTIONS(965), + [sym_integer] = ACTIONS(965), + [sym_float] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_multiline_string] = ACTIONS(963), + [sym_character] = ACTIONS(963), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(963), + }, + [STATE(713)] = { + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(969), + [anon_sym_import] = ACTIONS(969), + [anon_sym_test] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_func] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_void] = ACTIONS(969), + [anon_sym_anyopaque] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_int] = ACTIONS(969), + [anon_sym_uint] = ACTIONS(969), + [anon_sym_float] = ACTIONS(969), + [anon_sym_range] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_c_char] = ACTIONS(969), + [anon_sym_c_schar] = ACTIONS(969), + [anon_sym_c_uchar] = ACTIONS(969), + [anon_sym_c_short] = ACTIONS(969), + [anon_sym_c_ushort] = ACTIONS(969), + [anon_sym_c_int] = ACTIONS(969), + [anon_sym_c_uint] = ACTIONS(969), + [anon_sym_c_long] = ACTIONS(969), + [anon_sym_c_ulong] = ACTIONS(969), + [anon_sym_c_longlong] = ACTIONS(969), + [anon_sym_c_ulonglong] = ACTIONS(969), + [anon_sym_c_float] = ACTIONS(969), + [anon_sym_c_double] = ACTIONS(969), + [anon_sym_c_longdouble] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_defer] = ACTIONS(969), + [anon_sym_errdefer] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_expand] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_orelse] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_or] = ACTIONS(969), + [anon_sym_and] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_xor] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_LT_LT_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(967), + [anon_sym_try] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [sym_none] = ACTIONS(969), + [sym_undefined] = ACTIONS(969), + [sym_sink] = ACTIONS(969), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_multiline_string] = ACTIONS(967), + [sym_character] = ACTIONS(967), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(967), + }, + [STATE(714)] = { + [ts_builtin_sym_end] = ACTIONS(1005), + [sym_identifier] = ACTIONS(1007), + [anon_sym_import] = ACTIONS(1007), + [anon_sym_test] = ACTIONS(1007), + [anon_sym_hide] = ACTIONS(1007), + [anon_sym_func] = ACTIONS(1007), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_struct] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_void] = ACTIONS(1007), + [anon_sym_anyopaque] = ACTIONS(1007), + [anon_sym_bool] = ACTIONS(1007), + [anon_sym_int] = ACTIONS(1007), + [anon_sym_uint] = ACTIONS(1007), + [anon_sym_float] = ACTIONS(1007), + [anon_sym_range] = ACTIONS(1007), + [anon_sym_i8] = ACTIONS(1007), + [anon_sym_i16] = ACTIONS(1007), + [anon_sym_i32] = ACTIONS(1007), + [anon_sym_i64] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1007), + [anon_sym_u16] = ACTIONS(1007), + [anon_sym_u32] = ACTIONS(1007), + [anon_sym_u64] = ACTIONS(1007), + [anon_sym_isize] = ACTIONS(1007), + [anon_sym_usize] = ACTIONS(1007), + [anon_sym_f32] = ACTIONS(1007), + [anon_sym_f64] = ACTIONS(1007), + [anon_sym_c_char] = ACTIONS(1007), + [anon_sym_c_schar] = ACTIONS(1007), + [anon_sym_c_uchar] = ACTIONS(1007), + [anon_sym_c_short] = ACTIONS(1007), + [anon_sym_c_ushort] = ACTIONS(1007), + [anon_sym_c_int] = ACTIONS(1007), + [anon_sym_c_uint] = ACTIONS(1007), + [anon_sym_c_long] = ACTIONS(1007), + [anon_sym_c_ulong] = ACTIONS(1007), + [anon_sym_c_longlong] = ACTIONS(1007), + [anon_sym_c_ulonglong] = ACTIONS(1007), + [anon_sym_c_float] = ACTIONS(1007), + [anon_sym_c_double] = ACTIONS(1007), + [anon_sym_c_longdouble] = ACTIONS(1007), + [anon_sym_return] = ACTIONS(1007), + [anon_sym_yield] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1007), + [anon_sym_continue] = ACTIONS(1007), + [anon_sym_defer] = ACTIONS(1007), + [anon_sym_errdefer] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1007), + [anon_sym_else] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1007), + [anon_sym_expand] = ACTIONS(1007), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_match] = ACTIONS(1007), + [anon_sym_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_orelse] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(1007), + [anon_sym_or] = ACTIONS(1007), + [anon_sym_and] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_xor] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_LT_LT_PIPE] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_TILDE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_DOT] = ACTIONS(1007), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1007), + [anon_sym_false] = ACTIONS(1007), + [sym_none] = ACTIONS(1007), + [sym_undefined] = ACTIONS(1007), + [sym_sink] = ACTIONS(1007), + [sym_integer] = ACTIONS(1007), + [sym_float] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1005), + [sym_multiline_string] = ACTIONS(1005), + [sym_character] = ACTIONS(1005), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1005), + }, + [STATE(715)] = { + [ts_builtin_sym_end] = ACTIONS(1081), + [sym_identifier] = ACTIONS(1083), + [anon_sym_import] = ACTIONS(1083), + [anon_sym_test] = ACTIONS(1083), + [anon_sym_hide] = ACTIONS(1083), + [anon_sym_func] = ACTIONS(1083), + [anon_sym_BANG] = ACTIONS(1083), + [anon_sym_struct] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1081), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1081), + [anon_sym_QMARK] = ACTIONS(1081), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(1081), + [anon_sym_void] = ACTIONS(1083), + [anon_sym_anyopaque] = ACTIONS(1083), + [anon_sym_bool] = ACTIONS(1083), + [anon_sym_int] = ACTIONS(1083), + [anon_sym_uint] = ACTIONS(1083), + [anon_sym_float] = ACTIONS(1083), + [anon_sym_range] = ACTIONS(1083), + [anon_sym_i8] = ACTIONS(1083), + [anon_sym_i16] = ACTIONS(1083), + [anon_sym_i32] = ACTIONS(1083), + [anon_sym_i64] = ACTIONS(1083), + [anon_sym_u8] = ACTIONS(1083), + [anon_sym_u16] = ACTIONS(1083), + [anon_sym_u32] = ACTIONS(1083), + [anon_sym_u64] = ACTIONS(1083), + [anon_sym_isize] = ACTIONS(1083), + [anon_sym_usize] = ACTIONS(1083), + [anon_sym_f32] = ACTIONS(1083), + [anon_sym_f64] = ACTIONS(1083), + [anon_sym_c_char] = ACTIONS(1083), + [anon_sym_c_schar] = ACTIONS(1083), + [anon_sym_c_uchar] = ACTIONS(1083), + [anon_sym_c_short] = ACTIONS(1083), + [anon_sym_c_ushort] = ACTIONS(1083), + [anon_sym_c_int] = ACTIONS(1083), + [anon_sym_c_uint] = ACTIONS(1083), + [anon_sym_c_long] = ACTIONS(1083), + [anon_sym_c_ulong] = ACTIONS(1083), + [anon_sym_c_longlong] = ACTIONS(1083), + [anon_sym_c_ulonglong] = ACTIONS(1083), + [anon_sym_c_float] = ACTIONS(1083), + [anon_sym_c_double] = ACTIONS(1083), + [anon_sym_c_longdouble] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1083), + [anon_sym_yield] = ACTIONS(1083), + [anon_sym_COLON] = ACTIONS(1081), + [anon_sym_break] = ACTIONS(1083), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_defer] = ACTIONS(1083), + [anon_sym_errdefer] = ACTIONS(1083), + [anon_sym_if] = ACTIONS(1083), + [anon_sym_else] = ACTIONS(1083), + [anon_sym_while] = ACTIONS(1083), + [anon_sym_expand] = ACTIONS(1083), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_match] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1083), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1081), + [anon_sym_orelse] = ACTIONS(1083), + [anon_sym_catch] = ACTIONS(1083), + [anon_sym_or] = ACTIONS(1083), + [anon_sym_and] = ACTIONS(1083), + [anon_sym_EQ_EQ] = ACTIONS(1081), + [anon_sym_BANG_EQ] = ACTIONS(1081), + [anon_sym_LT] = ACTIONS(1083), + [anon_sym_LT_EQ] = ACTIONS(1081), + [anon_sym_GT] = ACTIONS(1083), + [anon_sym_GT_EQ] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_xor] = ACTIONS(1083), + [anon_sym_LT_LT] = ACTIONS(1083), + [anon_sym_GT_GT] = ACTIONS(1081), + [anon_sym_LT_LT_PIPE] = ACTIONS(1081), + [anon_sym_PLUS] = ACTIONS(1081), + [anon_sym_SLASH] = ACTIONS(1081), + [anon_sym_TILDE] = ACTIONS(1081), + [anon_sym_try] = ACTIONS(1083), + [anon_sym_DOT] = ACTIONS(1083), + [anon_sym_CARET] = ACTIONS(1081), + [anon_sym_true] = ACTIONS(1083), + [anon_sym_false] = ACTIONS(1083), + [sym_none] = ACTIONS(1083), + [sym_undefined] = ACTIONS(1083), + [sym_sink] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1081), + [sym_multiline_string] = ACTIONS(1081), + [sym_character] = ACTIONS(1081), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1081), + }, + [STATE(716)] = { + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_identifier] = ACTIONS(1087), + [anon_sym_import] = ACTIONS(1087), + [anon_sym_test] = ACTIONS(1087), + [anon_sym_hide] = ACTIONS(1087), + [anon_sym_func] = ACTIONS(1087), + [anon_sym_BANG] = ACTIONS(1087), + [anon_sym_struct] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1085), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_DOLLAR] = ACTIONS(1085), + [anon_sym_PIPE] = ACTIONS(1085), + [anon_sym_QMARK] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_LBRACK] = ACTIONS(1085), + [anon_sym_void] = ACTIONS(1087), + [anon_sym_anyopaque] = ACTIONS(1087), + [anon_sym_bool] = ACTIONS(1087), + [anon_sym_int] = ACTIONS(1087), + [anon_sym_uint] = ACTIONS(1087), + [anon_sym_float] = ACTIONS(1087), + [anon_sym_range] = ACTIONS(1087), + [anon_sym_i8] = ACTIONS(1087), + [anon_sym_i16] = ACTIONS(1087), + [anon_sym_i32] = ACTIONS(1087), + [anon_sym_i64] = ACTIONS(1087), + [anon_sym_u8] = ACTIONS(1087), + [anon_sym_u16] = ACTIONS(1087), + [anon_sym_u32] = ACTIONS(1087), + [anon_sym_u64] = ACTIONS(1087), + [anon_sym_isize] = ACTIONS(1087), + [anon_sym_usize] = ACTIONS(1087), + [anon_sym_f32] = ACTIONS(1087), + [anon_sym_f64] = ACTIONS(1087), + [anon_sym_c_char] = ACTIONS(1087), + [anon_sym_c_schar] = ACTIONS(1087), + [anon_sym_c_uchar] = ACTIONS(1087), + [anon_sym_c_short] = ACTIONS(1087), + [anon_sym_c_ushort] = ACTIONS(1087), + [anon_sym_c_int] = ACTIONS(1087), + [anon_sym_c_uint] = ACTIONS(1087), + [anon_sym_c_long] = ACTIONS(1087), + [anon_sym_c_ulong] = ACTIONS(1087), + [anon_sym_c_longlong] = ACTIONS(1087), + [anon_sym_c_ulonglong] = ACTIONS(1087), + [anon_sym_c_float] = ACTIONS(1087), + [anon_sym_c_double] = ACTIONS(1087), + [anon_sym_c_longdouble] = ACTIONS(1087), + [anon_sym_return] = ACTIONS(1087), + [anon_sym_yield] = ACTIONS(1087), + [anon_sym_COLON] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1087), + [anon_sym_continue] = ACTIONS(1087), + [anon_sym_defer] = ACTIONS(1087), + [anon_sym_errdefer] = ACTIONS(1087), + [anon_sym_if] = ACTIONS(1087), + [anon_sym_else] = ACTIONS(1087), + [anon_sym_while] = ACTIONS(1087), + [anon_sym_expand] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1087), + [anon_sym_match] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1085), + [anon_sym_orelse] = ACTIONS(1087), + [anon_sym_catch] = ACTIONS(1087), + [anon_sym_or] = ACTIONS(1087), + [anon_sym_and] = ACTIONS(1087), + [anon_sym_EQ_EQ] = ACTIONS(1085), + [anon_sym_BANG_EQ] = ACTIONS(1085), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_LT_EQ] = ACTIONS(1085), + [anon_sym_GT] = ACTIONS(1087), + [anon_sym_GT_EQ] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1085), + [anon_sym_xor] = ACTIONS(1087), + [anon_sym_LT_LT] = ACTIONS(1087), + [anon_sym_GT_GT] = ACTIONS(1085), + [anon_sym_LT_LT_PIPE] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_SLASH] = ACTIONS(1085), + [anon_sym_TILDE] = ACTIONS(1085), + [anon_sym_try] = ACTIONS(1087), + [anon_sym_DOT] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_true] = ACTIONS(1087), + [anon_sym_false] = ACTIONS(1087), + [sym_none] = ACTIONS(1087), + [sym_undefined] = ACTIONS(1087), + [sym_sink] = ACTIONS(1087), + [sym_integer] = ACTIONS(1087), + [sym_float] = ACTIONS(1085), + [anon_sym_DQUOTE] = ACTIONS(1085), + [sym_multiline_string] = ACTIONS(1085), + [sym_character] = ACTIONS(1085), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1085), + }, + [STATE(717)] = { + [ts_builtin_sym_end] = ACTIONS(1089), + [sym_identifier] = ACTIONS(1091), + [anon_sym_import] = ACTIONS(1091), + [anon_sym_test] = ACTIONS(1091), + [anon_sym_hide] = ACTIONS(1091), + [anon_sym_func] = ACTIONS(1091), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_LPAREN] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1089), + [anon_sym_RBRACE] = ACTIONS(1089), + [anon_sym_DASH] = ACTIONS(1089), + [anon_sym_DOLLAR] = ACTIONS(1089), + [anon_sym_PIPE] = ACTIONS(1089), + [anon_sym_QMARK] = ACTIONS(1089), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_void] = ACTIONS(1091), + [anon_sym_anyopaque] = ACTIONS(1091), + [anon_sym_bool] = ACTIONS(1091), + [anon_sym_int] = ACTIONS(1091), + [anon_sym_uint] = ACTIONS(1091), + [anon_sym_float] = ACTIONS(1091), + [anon_sym_range] = ACTIONS(1091), + [anon_sym_i8] = ACTIONS(1091), + [anon_sym_i16] = ACTIONS(1091), + [anon_sym_i32] = ACTIONS(1091), + [anon_sym_i64] = ACTIONS(1091), + [anon_sym_u8] = ACTIONS(1091), + [anon_sym_u16] = ACTIONS(1091), + [anon_sym_u32] = ACTIONS(1091), + [anon_sym_u64] = ACTIONS(1091), + [anon_sym_isize] = ACTIONS(1091), + [anon_sym_usize] = ACTIONS(1091), + [anon_sym_f32] = ACTIONS(1091), + [anon_sym_f64] = ACTIONS(1091), + [anon_sym_c_char] = ACTIONS(1091), + [anon_sym_c_schar] = ACTIONS(1091), + [anon_sym_c_uchar] = ACTIONS(1091), + [anon_sym_c_short] = ACTIONS(1091), + [anon_sym_c_ushort] = ACTIONS(1091), + [anon_sym_c_int] = ACTIONS(1091), + [anon_sym_c_uint] = ACTIONS(1091), + [anon_sym_c_long] = ACTIONS(1091), + [anon_sym_c_ulong] = ACTIONS(1091), + [anon_sym_c_longlong] = ACTIONS(1091), + [anon_sym_c_ulonglong] = ACTIONS(1091), + [anon_sym_c_float] = ACTIONS(1091), + [anon_sym_c_double] = ACTIONS(1091), + [anon_sym_c_longdouble] = ACTIONS(1091), + [anon_sym_return] = ACTIONS(1091), + [anon_sym_yield] = ACTIONS(1091), + [anon_sym_COLON] = ACTIONS(1089), + [anon_sym_break] = ACTIONS(1091), + [anon_sym_continue] = ACTIONS(1091), + [anon_sym_defer] = ACTIONS(1091), + [anon_sym_errdefer] = ACTIONS(1091), + [anon_sym_if] = ACTIONS(1091), + [anon_sym_else] = ACTIONS(1091), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_expand] = ACTIONS(1091), + [anon_sym_for] = ACTIONS(1091), + [anon_sym_match] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1089), + [anon_sym_orelse] = ACTIONS(1091), + [anon_sym_catch] = ACTIONS(1091), + [anon_sym_or] = ACTIONS(1091), + [anon_sym_and] = ACTIONS(1091), + [anon_sym_EQ_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(1091), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1091), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_AMP] = ACTIONS(1089), + [anon_sym_xor] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1091), + [anon_sym_GT_GT] = ACTIONS(1089), + [anon_sym_LT_LT_PIPE] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_TILDE] = ACTIONS(1089), + [anon_sym_try] = ACTIONS(1091), + [anon_sym_DOT] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1089), + [anon_sym_true] = ACTIONS(1091), + [anon_sym_false] = ACTIONS(1091), + [sym_none] = ACTIONS(1091), + [sym_undefined] = ACTIONS(1091), + [sym_sink] = ACTIONS(1091), + [sym_integer] = ACTIONS(1091), + [sym_float] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1089), + [sym_multiline_string] = ACTIONS(1089), + [sym_character] = ACTIONS(1089), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1089), + }, + [STATE(718)] = { + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1015), + [anon_sym_import] = ACTIONS(1015), + [anon_sym_test] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), + [anon_sym_func] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_PIPE] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_void] = ACTIONS(1015), + [anon_sym_anyopaque] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_int] = ACTIONS(1015), + [anon_sym_uint] = ACTIONS(1015), + [anon_sym_float] = ACTIONS(1015), + [anon_sym_range] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_c_char] = ACTIONS(1015), + [anon_sym_c_schar] = ACTIONS(1015), + [anon_sym_c_uchar] = ACTIONS(1015), + [anon_sym_c_short] = ACTIONS(1015), + [anon_sym_c_ushort] = ACTIONS(1015), + [anon_sym_c_int] = ACTIONS(1015), + [anon_sym_c_uint] = ACTIONS(1015), + [anon_sym_c_long] = ACTIONS(1015), + [anon_sym_c_ulong] = ACTIONS(1015), + [anon_sym_c_longlong] = ACTIONS(1015), + [anon_sym_c_ulonglong] = ACTIONS(1015), + [anon_sym_c_float] = ACTIONS(1015), + [anon_sym_c_double] = ACTIONS(1015), + [anon_sym_c_longdouble] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_yield] = ACTIONS(1015), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_defer] = ACTIONS(1015), + [anon_sym_errdefer] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [anon_sym_expand] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_orelse] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_or] = ACTIONS(1015), + [anon_sym_and] = ACTIONS(1015), + [anon_sym_EQ_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1015), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1015), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(1013), + [anon_sym_xor] = ACTIONS(1015), + [anon_sym_LT_LT] = ACTIONS(1015), + [anon_sym_GT_GT] = ACTIONS(1013), + [anon_sym_LT_LT_PIPE] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_TILDE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1015), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [sym_none] = ACTIONS(1015), + [sym_undefined] = ACTIONS(1015), + [sym_sink] = ACTIONS(1015), + [sym_integer] = ACTIONS(1015), + [sym_float] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1013), + [sym_multiline_string] = ACTIONS(1013), + [sym_character] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1013), + }, + [STATE(719)] = { + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(286), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(286), + [anon_sym_struct] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_LBRACK] = ACTIONS(281), + [anon_sym_void] = ACTIONS(286), + [anon_sym_anyopaque] = ACTIONS(286), + [anon_sym_bool] = ACTIONS(286), + [anon_sym_int] = ACTIONS(286), + [anon_sym_uint] = ACTIONS(286), + [anon_sym_float] = ACTIONS(286), + [anon_sym_range] = ACTIONS(286), + [anon_sym_i8] = ACTIONS(286), + [anon_sym_i16] = ACTIONS(286), + [anon_sym_i32] = ACTIONS(286), + [anon_sym_i64] = ACTIONS(286), + [anon_sym_u8] = ACTIONS(286), + [anon_sym_u16] = ACTIONS(286), + [anon_sym_u32] = ACTIONS(286), + [anon_sym_u64] = ACTIONS(286), + [anon_sym_isize] = ACTIONS(286), + [anon_sym_usize] = ACTIONS(286), + [anon_sym_f32] = ACTIONS(286), + [anon_sym_f64] = ACTIONS(286), + [anon_sym_c_char] = ACTIONS(286), + [anon_sym_c_schar] = ACTIONS(286), + [anon_sym_c_uchar] = ACTIONS(286), + [anon_sym_c_short] = ACTIONS(286), + [anon_sym_c_ushort] = ACTIONS(286), + [anon_sym_c_int] = ACTIONS(286), + [anon_sym_c_uint] = ACTIONS(286), + [anon_sym_c_long] = ACTIONS(286), + [anon_sym_c_ulong] = ACTIONS(286), + [anon_sym_c_longlong] = ACTIONS(286), + [anon_sym_c_ulonglong] = ACTIONS(286), + [anon_sym_c_float] = ACTIONS(286), + [anon_sym_c_double] = ACTIONS(286), + [anon_sym_c_longdouble] = ACTIONS(286), + [anon_sym_return] = ACTIONS(286), + [anon_sym_yield] = ACTIONS(286), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_break] = ACTIONS(286), + [anon_sym_continue] = ACTIONS(286), + [anon_sym_defer] = ACTIONS(286), + [anon_sym_errdefer] = ACTIONS(286), + [anon_sym_if] = ACTIONS(286), + [anon_sym_else] = ACTIONS(286), + [anon_sym_while] = ACTIONS(286), + [anon_sym_expand] = ACTIONS(286), + [anon_sym_for] = ACTIONS(286), + [anon_sym_match] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_LT_LT_PIPE] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_TILDE] = ACTIONS(281), + [anon_sym_try] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [anon_sym_true] = ACTIONS(286), + [anon_sym_false] = ACTIONS(286), + [sym_none] = ACTIONS(286), + [sym_undefined] = ACTIONS(286), + [sym_sink] = ACTIONS(286), + [sym_integer] = ACTIONS(286), + [sym_float] = ACTIONS(281), + [anon_sym_DQUOTE] = ACTIONS(281), + [sym_multiline_string] = ACTIONS(281), + [sym_character] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(720)] = { + [ts_builtin_sym_end] = ACTIONS(655), + [sym_identifier] = ACTIONS(657), + [anon_sym_import] = ACTIONS(657), + [anon_sym_test] = ACTIONS(657), + [anon_sym_hide] = ACTIONS(657), + [anon_sym_func] = ACTIONS(657), + [anon_sym_BANG] = ACTIONS(657), + [anon_sym_struct] = ACTIONS(657), + [anon_sym_LPAREN] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_DASH] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(655), + [anon_sym_PIPE] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(655), + [anon_sym_STAR] = ACTIONS(655), + [anon_sym_LBRACK] = ACTIONS(655), + [anon_sym_void] = ACTIONS(657), + [anon_sym_anyopaque] = ACTIONS(657), + [anon_sym_bool] = ACTIONS(657), + [anon_sym_int] = ACTIONS(657), + [anon_sym_uint] = ACTIONS(657), + [anon_sym_float] = ACTIONS(657), + [anon_sym_range] = ACTIONS(657), + [anon_sym_i8] = ACTIONS(657), + [anon_sym_i16] = ACTIONS(657), + [anon_sym_i32] = ACTIONS(657), + [anon_sym_i64] = ACTIONS(657), + [anon_sym_u8] = ACTIONS(657), + [anon_sym_u16] = ACTIONS(657), + [anon_sym_u32] = ACTIONS(657), + [anon_sym_u64] = ACTIONS(657), + [anon_sym_isize] = ACTIONS(657), + [anon_sym_usize] = ACTIONS(657), + [anon_sym_f32] = ACTIONS(657), + [anon_sym_f64] = ACTIONS(657), + [anon_sym_c_char] = ACTIONS(657), + [anon_sym_c_schar] = ACTIONS(657), + [anon_sym_c_uchar] = ACTIONS(657), + [anon_sym_c_short] = ACTIONS(657), + [anon_sym_c_ushort] = ACTIONS(657), + [anon_sym_c_int] = ACTIONS(657), + [anon_sym_c_uint] = ACTIONS(657), + [anon_sym_c_long] = ACTIONS(657), + [anon_sym_c_ulong] = ACTIONS(657), + [anon_sym_c_longlong] = ACTIONS(657), + [anon_sym_c_ulonglong] = ACTIONS(657), + [anon_sym_c_float] = ACTIONS(657), + [anon_sym_c_double] = ACTIONS(657), + [anon_sym_c_longdouble] = ACTIONS(657), + [anon_sym_return] = ACTIONS(657), + [anon_sym_yield] = ACTIONS(657), + [anon_sym_COLON] = ACTIONS(655), + [anon_sym_break] = ACTIONS(657), + [anon_sym_continue] = ACTIONS(657), + [anon_sym_defer] = ACTIONS(657), + [anon_sym_errdefer] = ACTIONS(657), + [anon_sym_if] = ACTIONS(657), + [anon_sym_else] = ACTIONS(657), + [anon_sym_while] = ACTIONS(657), + [anon_sym_expand] = ACTIONS(657), + [anon_sym_for] = ACTIONS(657), + [anon_sym_match] = ACTIONS(657), + [anon_sym_DOT_DOT] = ACTIONS(657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(655), + [anon_sym_orelse] = ACTIONS(657), + [anon_sym_catch] = ACTIONS(657), + [anon_sym_or] = ACTIONS(657), + [anon_sym_and] = ACTIONS(657), + [anon_sym_EQ_EQ] = ACTIONS(655), + [anon_sym_BANG_EQ] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_LT_EQ] = ACTIONS(655), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_EQ] = ACTIONS(655), + [anon_sym_AMP] = ACTIONS(655), + [anon_sym_xor] = ACTIONS(657), + [anon_sym_LT_LT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(655), + [anon_sym_LT_LT_PIPE] = ACTIONS(655), + [anon_sym_PLUS] = ACTIONS(655), + [anon_sym_SLASH] = ACTIONS(655), + [anon_sym_TILDE] = ACTIONS(655), + [anon_sym_try] = ACTIONS(657), + [anon_sym_DOT] = ACTIONS(657), + [anon_sym_CARET] = ACTIONS(655), + [anon_sym_true] = ACTIONS(657), + [anon_sym_false] = ACTIONS(657), + [sym_none] = ACTIONS(657), + [sym_undefined] = ACTIONS(657), + [sym_sink] = ACTIONS(657), + [sym_integer] = ACTIONS(657), + [sym_float] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(655), + [sym_multiline_string] = ACTIONS(655), + [sym_character] = ACTIONS(655), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(655), + }, + [STATE(721)] = { + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(977), + [anon_sym_import] = ACTIONS(977), + [anon_sym_test] = ACTIONS(977), + [anon_sym_hide] = ACTIONS(977), + [anon_sym_func] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_void] = ACTIONS(977), + [anon_sym_anyopaque] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_int] = ACTIONS(977), + [anon_sym_uint] = ACTIONS(977), + [anon_sym_float] = ACTIONS(977), + [anon_sym_range] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_c_char] = ACTIONS(977), + [anon_sym_c_schar] = ACTIONS(977), + [anon_sym_c_uchar] = ACTIONS(977), + [anon_sym_c_short] = ACTIONS(977), + [anon_sym_c_ushort] = ACTIONS(977), + [anon_sym_c_int] = ACTIONS(977), + [anon_sym_c_uint] = ACTIONS(977), + [anon_sym_c_long] = ACTIONS(977), + [anon_sym_c_ulong] = ACTIONS(977), + [anon_sym_c_longlong] = ACTIONS(977), + [anon_sym_c_ulonglong] = ACTIONS(977), + [anon_sym_c_float] = ACTIONS(977), + [anon_sym_c_double] = ACTIONS(977), + [anon_sym_c_longdouble] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_defer] = ACTIONS(977), + [anon_sym_errdefer] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_expand] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_orelse] = ACTIONS(977), + [anon_sym_catch] = ACTIONS(977), + [anon_sym_or] = ACTIONS(977), + [anon_sym_and] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_xor] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_LT_LT_PIPE] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_TILDE] = ACTIONS(975), + [anon_sym_try] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [sym_none] = ACTIONS(977), + [sym_undefined] = ACTIONS(977), + [sym_sink] = ACTIONS(977), + [sym_integer] = ACTIONS(977), + [sym_float] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_multiline_string] = ACTIONS(975), + [sym_character] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(975), + }, + [STATE(722)] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_test] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_uint] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_expand] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_xor] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(981), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT_PIPE] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(723)] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_import] = ACTIONS(985), + [anon_sym_test] = ACTIONS(985), + [anon_sym_hide] = ACTIONS(985), + [anon_sym_func] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_DASH] = ACTIONS(983), + [anon_sym_DOLLAR] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_QMARK] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(985), + [anon_sym_anyopaque] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_int] = ACTIONS(985), + [anon_sym_uint] = ACTIONS(985), + [anon_sym_float] = ACTIONS(985), + [anon_sym_range] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_c_char] = ACTIONS(985), + [anon_sym_c_schar] = ACTIONS(985), + [anon_sym_c_uchar] = ACTIONS(985), + [anon_sym_c_short] = ACTIONS(985), + [anon_sym_c_ushort] = ACTIONS(985), + [anon_sym_c_int] = ACTIONS(985), + [anon_sym_c_uint] = ACTIONS(985), + [anon_sym_c_long] = ACTIONS(985), + [anon_sym_c_ulong] = ACTIONS(985), + [anon_sym_c_longlong] = ACTIONS(985), + [anon_sym_c_ulonglong] = ACTIONS(985), + [anon_sym_c_float] = ACTIONS(985), + [anon_sym_c_double] = ACTIONS(985), + [anon_sym_c_longdouble] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_COLON] = ACTIONS(983), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_defer] = ACTIONS(985), + [anon_sym_errdefer] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_expand] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(983), + [anon_sym_orelse] = ACTIONS(985), + [anon_sym_catch] = ACTIONS(985), + [anon_sym_or] = ACTIONS(985), + [anon_sym_and] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_xor] = ACTIONS(985), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_try] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [sym_none] = ACTIONS(985), + [sym_undefined] = ACTIONS(985), + [sym_sink] = ACTIONS(985), + [sym_integer] = ACTIONS(985), + [sym_float] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [sym_multiline_string] = ACTIONS(983), + [sym_character] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(983), + }, + [STATE(724)] = { + [ts_builtin_sym_end] = ACTIONS(659), + [sym_identifier] = ACTIONS(661), + [anon_sym_import] = ACTIONS(661), + [anon_sym_test] = ACTIONS(661), + [anon_sym_hide] = ACTIONS(661), + [anon_sym_func] = ACTIONS(661), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(659), + [anon_sym_PIPE] = ACTIONS(659), + [anon_sym_QMARK] = ACTIONS(659), + [anon_sym_STAR] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(659), + [anon_sym_void] = ACTIONS(661), + [anon_sym_anyopaque] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_int] = ACTIONS(661), + [anon_sym_uint] = ACTIONS(661), + [anon_sym_float] = ACTIONS(661), + [anon_sym_range] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_c_char] = ACTIONS(661), + [anon_sym_c_schar] = ACTIONS(661), + [anon_sym_c_uchar] = ACTIONS(661), + [anon_sym_c_short] = ACTIONS(661), + [anon_sym_c_ushort] = ACTIONS(661), + [anon_sym_c_int] = ACTIONS(661), + [anon_sym_c_uint] = ACTIONS(661), + [anon_sym_c_long] = ACTIONS(661), + [anon_sym_c_ulong] = ACTIONS(661), + [anon_sym_c_longlong] = ACTIONS(661), + [anon_sym_c_ulonglong] = ACTIONS(661), + [anon_sym_c_float] = ACTIONS(661), + [anon_sym_c_double] = ACTIONS(661), + [anon_sym_c_longdouble] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(661), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_break] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_defer] = ACTIONS(661), + [anon_sym_errdefer] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_else] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [anon_sym_expand] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(659), + [anon_sym_orelse] = ACTIONS(661), + [anon_sym_catch] = ACTIONS(661), + [anon_sym_or] = ACTIONS(661), + [anon_sym_and] = ACTIONS(661), + [anon_sym_EQ_EQ] = ACTIONS(659), + [anon_sym_BANG_EQ] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_LT_EQ] = ACTIONS(659), + [anon_sym_GT] = ACTIONS(661), + [anon_sym_GT_EQ] = ACTIONS(659), + [anon_sym_AMP] = ACTIONS(659), + [anon_sym_xor] = ACTIONS(661), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_LT_LT_PIPE] = ACTIONS(659), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_try] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(661), + [anon_sym_CARET] = ACTIONS(659), + [anon_sym_true] = ACTIONS(661), + [anon_sym_false] = ACTIONS(661), + [sym_none] = ACTIONS(661), + [sym_undefined] = ACTIONS(661), + [sym_sink] = ACTIONS(661), + [sym_integer] = ACTIONS(661), + [sym_float] = ACTIONS(659), + [anon_sym_DQUOTE] = ACTIONS(659), + [sym_multiline_string] = ACTIONS(659), + [sym_character] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(659), + }, + [STATE(725)] = { + [ts_builtin_sym_end] = ACTIONS(1029), + [sym_identifier] = ACTIONS(1031), + [anon_sym_import] = ACTIONS(1031), + [anon_sym_test] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_func] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_struct] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_void] = ACTIONS(1031), + [anon_sym_anyopaque] = ACTIONS(1031), + [anon_sym_bool] = ACTIONS(1031), + [anon_sym_int] = ACTIONS(1031), + [anon_sym_uint] = ACTIONS(1031), + [anon_sym_float] = ACTIONS(1031), + [anon_sym_range] = ACTIONS(1031), + [anon_sym_i8] = ACTIONS(1031), + [anon_sym_i16] = ACTIONS(1031), + [anon_sym_i32] = ACTIONS(1031), + [anon_sym_i64] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1031), + [anon_sym_u16] = ACTIONS(1031), + [anon_sym_u32] = ACTIONS(1031), + [anon_sym_u64] = ACTIONS(1031), + [anon_sym_isize] = ACTIONS(1031), + [anon_sym_usize] = ACTIONS(1031), + [anon_sym_f32] = ACTIONS(1031), + [anon_sym_f64] = ACTIONS(1031), + [anon_sym_c_char] = ACTIONS(1031), + [anon_sym_c_schar] = ACTIONS(1031), + [anon_sym_c_uchar] = ACTIONS(1031), + [anon_sym_c_short] = ACTIONS(1031), + [anon_sym_c_ushort] = ACTIONS(1031), + [anon_sym_c_int] = ACTIONS(1031), + [anon_sym_c_uint] = ACTIONS(1031), + [anon_sym_c_long] = ACTIONS(1031), + [anon_sym_c_ulong] = ACTIONS(1031), + [anon_sym_c_longlong] = ACTIONS(1031), + [anon_sym_c_ulonglong] = ACTIONS(1031), + [anon_sym_c_float] = ACTIONS(1031), + [anon_sym_c_double] = ACTIONS(1031), + [anon_sym_c_longdouble] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_yield] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_defer] = ACTIONS(1031), + [anon_sym_errdefer] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_expand] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_orelse] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_or] = ACTIONS(1031), + [anon_sym_and] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1029), + [anon_sym_BANG_EQ] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1029), + [anon_sym_GT] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_xor] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_LT_LT_PIPE] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_TILDE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1031), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [sym_none] = ACTIONS(1031), + [sym_undefined] = ACTIONS(1031), + [sym_sink] = ACTIONS(1031), + [sym_integer] = ACTIONS(1031), + [sym_float] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym_multiline_string] = ACTIONS(1029), + [sym_character] = ACTIONS(1029), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1029), + }, + [STATE(726)] = { + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_identifier] = ACTIONS(1095), + [anon_sym_import] = ACTIONS(1095), + [anon_sym_test] = ACTIONS(1095), + [anon_sym_hide] = ACTIONS(1095), + [anon_sym_func] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_QMARK] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1095), + [anon_sym_anyopaque] = ACTIONS(1095), + [anon_sym_bool] = ACTIONS(1095), + [anon_sym_int] = ACTIONS(1095), + [anon_sym_uint] = ACTIONS(1095), + [anon_sym_float] = ACTIONS(1095), + [anon_sym_range] = ACTIONS(1095), + [anon_sym_i8] = ACTIONS(1095), + [anon_sym_i16] = ACTIONS(1095), + [anon_sym_i32] = ACTIONS(1095), + [anon_sym_i64] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1095), + [anon_sym_u16] = ACTIONS(1095), + [anon_sym_u32] = ACTIONS(1095), + [anon_sym_u64] = ACTIONS(1095), + [anon_sym_isize] = ACTIONS(1095), + [anon_sym_usize] = ACTIONS(1095), + [anon_sym_f32] = ACTIONS(1095), + [anon_sym_f64] = ACTIONS(1095), + [anon_sym_c_char] = ACTIONS(1095), + [anon_sym_c_schar] = ACTIONS(1095), + [anon_sym_c_uchar] = ACTIONS(1095), + [anon_sym_c_short] = ACTIONS(1095), + [anon_sym_c_ushort] = ACTIONS(1095), + [anon_sym_c_int] = ACTIONS(1095), + [anon_sym_c_uint] = ACTIONS(1095), + [anon_sym_c_long] = ACTIONS(1095), + [anon_sym_c_ulong] = ACTIONS(1095), + [anon_sym_c_longlong] = ACTIONS(1095), + [anon_sym_c_ulonglong] = ACTIONS(1095), + [anon_sym_c_float] = ACTIONS(1095), + [anon_sym_c_double] = ACTIONS(1095), + [anon_sym_c_longdouble] = ACTIONS(1095), + [anon_sym_return] = ACTIONS(1095), + [anon_sym_yield] = ACTIONS(1095), + [anon_sym_COLON] = ACTIONS(1093), + [anon_sym_break] = ACTIONS(1095), + [anon_sym_continue] = ACTIONS(1095), + [anon_sym_defer] = ACTIONS(1095), + [anon_sym_errdefer] = ACTIONS(1095), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_else] = ACTIONS(1095), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_expand] = ACTIONS(1095), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1095), + [anon_sym_DOT_DOT] = ACTIONS(1095), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1093), + [anon_sym_orelse] = ACTIONS(1095), + [anon_sym_catch] = ACTIONS(1095), + [anon_sym_or] = ACTIONS(1095), + [anon_sym_and] = ACTIONS(1095), + [anon_sym_EQ_EQ] = ACTIONS(1093), + [anon_sym_BANG_EQ] = ACTIONS(1093), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_LT_EQ] = ACTIONS(1093), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_GT_EQ] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_xor] = ACTIONS(1095), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_GT_GT] = ACTIONS(1093), + [anon_sym_LT_LT_PIPE] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1095), + [anon_sym_CARET] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [sym_none] = ACTIONS(1095), + [sym_undefined] = ACTIONS(1095), + [sym_sink] = ACTIONS(1095), + [sym_integer] = ACTIONS(1095), + [sym_float] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym_multiline_string] = ACTIONS(1093), + [sym_character] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1093), + }, + [STATE(727)] = { + [ts_builtin_sym_end] = ACTIONS(755), + [sym_identifier] = ACTIONS(757), + [anon_sym_import] = ACTIONS(757), + [anon_sym_test] = ACTIONS(757), + [anon_sym_hide] = ACTIONS(757), + [anon_sym_func] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_void] = ACTIONS(757), + [anon_sym_anyopaque] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_int] = ACTIONS(757), + [anon_sym_uint] = ACTIONS(757), + [anon_sym_float] = ACTIONS(757), + [anon_sym_range] = ACTIONS(757), + [anon_sym_i8] = ACTIONS(757), + [anon_sym_i16] = ACTIONS(757), + [anon_sym_i32] = ACTIONS(757), + [anon_sym_i64] = ACTIONS(757), + [anon_sym_u8] = ACTIONS(757), + [anon_sym_u16] = ACTIONS(757), + [anon_sym_u32] = ACTIONS(757), + [anon_sym_u64] = ACTIONS(757), + [anon_sym_isize] = ACTIONS(757), + [anon_sym_usize] = ACTIONS(757), + [anon_sym_f32] = ACTIONS(757), + [anon_sym_f64] = ACTIONS(757), + [anon_sym_c_char] = ACTIONS(757), + [anon_sym_c_schar] = ACTIONS(757), + [anon_sym_c_uchar] = ACTIONS(757), + [anon_sym_c_short] = ACTIONS(757), + [anon_sym_c_ushort] = ACTIONS(757), + [anon_sym_c_int] = ACTIONS(757), + [anon_sym_c_uint] = ACTIONS(757), + [anon_sym_c_long] = ACTIONS(757), + [anon_sym_c_ulong] = ACTIONS(757), + [anon_sym_c_longlong] = ACTIONS(757), + [anon_sym_c_ulonglong] = ACTIONS(757), + [anon_sym_c_float] = ACTIONS(757), + [anon_sym_c_double] = ACTIONS(757), + [anon_sym_c_longdouble] = ACTIONS(757), + [anon_sym_return] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(755), + [anon_sym_break] = ACTIONS(757), + [anon_sym_continue] = ACTIONS(757), + [anon_sym_defer] = ACTIONS(757), + [anon_sym_errdefer] = ACTIONS(757), + [anon_sym_if] = ACTIONS(757), + [anon_sym_else] = ACTIONS(757), + [anon_sym_while] = ACTIONS(757), + [anon_sym_expand] = ACTIONS(757), + [anon_sym_for] = ACTIONS(757), + [anon_sym_match] = ACTIONS(757), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(755), + [anon_sym_orelse] = ACTIONS(757), + [anon_sym_catch] = ACTIONS(757), + [anon_sym_or] = ACTIONS(757), + [anon_sym_and] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(757), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_xor] = ACTIONS(757), + [anon_sym_LT_LT] = ACTIONS(757), + [anon_sym_GT_GT] = ACTIONS(755), + [anon_sym_LT_LT_PIPE] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_TILDE] = ACTIONS(755), + [anon_sym_try] = ACTIONS(757), + [anon_sym_DOT] = ACTIONS(757), + [anon_sym_CARET] = ACTIONS(755), + [anon_sym_true] = ACTIONS(757), + [anon_sym_false] = ACTIONS(757), + [sym_none] = ACTIONS(757), + [sym_undefined] = ACTIONS(757), + [sym_sink] = ACTIONS(757), + [sym_integer] = ACTIONS(757), + [sym_float] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(755), + [sym_multiline_string] = ACTIONS(755), + [sym_character] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(755), + }, + [STATE(728)] = { + [ts_builtin_sym_end] = ACTIONS(759), + [sym_identifier] = ACTIONS(761), + [anon_sym_import] = ACTIONS(761), + [anon_sym_test] = ACTIONS(761), + [anon_sym_hide] = ACTIONS(761), + [anon_sym_func] = ACTIONS(761), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_struct] = ACTIONS(761), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_DASH] = ACTIONS(759), + [anon_sym_DOLLAR] = ACTIONS(759), + [anon_sym_PIPE] = ACTIONS(759), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_STAR] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_void] = ACTIONS(761), + [anon_sym_anyopaque] = ACTIONS(761), + [anon_sym_bool] = ACTIONS(761), + [anon_sym_int] = ACTIONS(761), + [anon_sym_uint] = ACTIONS(761), + [anon_sym_float] = ACTIONS(761), + [anon_sym_range] = ACTIONS(761), + [anon_sym_i8] = ACTIONS(761), + [anon_sym_i16] = ACTIONS(761), + [anon_sym_i32] = ACTIONS(761), + [anon_sym_i64] = ACTIONS(761), + [anon_sym_u8] = ACTIONS(761), + [anon_sym_u16] = ACTIONS(761), + [anon_sym_u32] = ACTIONS(761), + [anon_sym_u64] = ACTIONS(761), + [anon_sym_isize] = ACTIONS(761), + [anon_sym_usize] = ACTIONS(761), + [anon_sym_f32] = ACTIONS(761), + [anon_sym_f64] = ACTIONS(761), + [anon_sym_c_char] = ACTIONS(761), + [anon_sym_c_schar] = ACTIONS(761), + [anon_sym_c_uchar] = ACTIONS(761), + [anon_sym_c_short] = ACTIONS(761), + [anon_sym_c_ushort] = ACTIONS(761), + [anon_sym_c_int] = ACTIONS(761), + [anon_sym_c_uint] = ACTIONS(761), + [anon_sym_c_long] = ACTIONS(761), + [anon_sym_c_ulong] = ACTIONS(761), + [anon_sym_c_longlong] = ACTIONS(761), + [anon_sym_c_ulonglong] = ACTIONS(761), + [anon_sym_c_float] = ACTIONS(761), + [anon_sym_c_double] = ACTIONS(761), + [anon_sym_c_longdouble] = ACTIONS(761), + [anon_sym_return] = ACTIONS(761), + [anon_sym_yield] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(759), + [anon_sym_break] = ACTIONS(761), + [anon_sym_continue] = ACTIONS(761), + [anon_sym_defer] = ACTIONS(761), + [anon_sym_errdefer] = ACTIONS(761), + [anon_sym_if] = ACTIONS(761), + [anon_sym_else] = ACTIONS(761), + [anon_sym_while] = ACTIONS(761), + [anon_sym_expand] = ACTIONS(761), + [anon_sym_for] = ACTIONS(761), + [anon_sym_match] = ACTIONS(761), + [anon_sym_DOT_DOT] = ACTIONS(761), + [anon_sym_DOT_DOT_EQ] = ACTIONS(759), + [anon_sym_orelse] = ACTIONS(761), + [anon_sym_catch] = ACTIONS(761), + [anon_sym_or] = ACTIONS(761), + [anon_sym_and] = ACTIONS(761), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_AMP] = ACTIONS(759), + [anon_sym_xor] = ACTIONS(761), + [anon_sym_LT_LT] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(759), + [anon_sym_LT_LT_PIPE] = ACTIONS(759), + [anon_sym_PLUS] = ACTIONS(759), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_TILDE] = ACTIONS(759), + [anon_sym_try] = ACTIONS(761), + [anon_sym_DOT] = ACTIONS(761), + [anon_sym_CARET] = ACTIONS(759), + [anon_sym_true] = ACTIONS(761), + [anon_sym_false] = ACTIONS(761), + [sym_none] = ACTIONS(761), + [sym_undefined] = ACTIONS(761), + [sym_sink] = ACTIONS(761), + [sym_integer] = ACTIONS(761), + [sym_float] = ACTIONS(759), + [anon_sym_DQUOTE] = ACTIONS(759), + [sym_multiline_string] = ACTIONS(759), + [sym_character] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(759), + }, + [STATE(729)] = { + [ts_builtin_sym_end] = ACTIONS(609), + [sym_identifier] = ACTIONS(611), + [anon_sym_import] = ACTIONS(611), + [anon_sym_test] = ACTIONS(611), + [anon_sym_hide] = ACTIONS(611), + [anon_sym_func] = ACTIONS(611), + [anon_sym_BANG] = ACTIONS(611), + [anon_sym_struct] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_LBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_DASH] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_STAR] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(609), + [anon_sym_void] = ACTIONS(611), + [anon_sym_anyopaque] = ACTIONS(611), + [anon_sym_bool] = ACTIONS(611), + [anon_sym_int] = ACTIONS(611), + [anon_sym_uint] = ACTIONS(611), + [anon_sym_float] = ACTIONS(611), + [anon_sym_range] = ACTIONS(611), + [anon_sym_i8] = ACTIONS(611), + [anon_sym_i16] = ACTIONS(611), + [anon_sym_i32] = ACTIONS(611), + [anon_sym_i64] = ACTIONS(611), + [anon_sym_u8] = ACTIONS(611), + [anon_sym_u16] = ACTIONS(611), + [anon_sym_u32] = ACTIONS(611), + [anon_sym_u64] = ACTIONS(611), + [anon_sym_isize] = ACTIONS(611), + [anon_sym_usize] = ACTIONS(611), + [anon_sym_f32] = ACTIONS(611), + [anon_sym_f64] = ACTIONS(611), + [anon_sym_c_char] = ACTIONS(611), + [anon_sym_c_schar] = ACTIONS(611), + [anon_sym_c_uchar] = ACTIONS(611), + [anon_sym_c_short] = ACTIONS(611), + [anon_sym_c_ushort] = ACTIONS(611), + [anon_sym_c_int] = ACTIONS(611), + [anon_sym_c_uint] = ACTIONS(611), + [anon_sym_c_long] = ACTIONS(611), + [anon_sym_c_ulong] = ACTIONS(611), + [anon_sym_c_longlong] = ACTIONS(611), + [anon_sym_c_ulonglong] = ACTIONS(611), + [anon_sym_c_float] = ACTIONS(611), + [anon_sym_c_double] = ACTIONS(611), + [anon_sym_c_longdouble] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_yield] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_errdefer] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_else] = ACTIONS(611), + [anon_sym_while] = ACTIONS(611), + [anon_sym_expand] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_DOT_DOT] = ACTIONS(611), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_orelse] = ACTIONS(611), + [anon_sym_catch] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_and] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(609), + [anon_sym_xor] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(609), + [anon_sym_LT_LT_PIPE] = ACTIONS(609), + [anon_sym_PLUS] = ACTIONS(609), + [anon_sym_SLASH] = ACTIONS(609), + [anon_sym_TILDE] = ACTIONS(609), + [anon_sym_try] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(609), + [anon_sym_true] = ACTIONS(611), + [anon_sym_false] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_undefined] = ACTIONS(611), + [sym_sink] = ACTIONS(611), + [sym_integer] = ACTIONS(611), + [sym_float] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(609), + [sym_multiline_string] = ACTIONS(609), + [sym_character] = ACTIONS(609), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(609), + }, + [STATE(730)] = { + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1099), + [anon_sym_import] = ACTIONS(1099), + [anon_sym_test] = ACTIONS(1099), + [anon_sym_hide] = ACTIONS(1099), + [anon_sym_func] = ACTIONS(1099), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_DOLLAR] = ACTIONS(1097), + [anon_sym_PIPE] = ACTIONS(1097), + [anon_sym_QMARK] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_void] = ACTIONS(1099), + [anon_sym_anyopaque] = ACTIONS(1099), + [anon_sym_bool] = ACTIONS(1099), + [anon_sym_int] = ACTIONS(1099), + [anon_sym_uint] = ACTIONS(1099), + [anon_sym_float] = ACTIONS(1099), + [anon_sym_range] = ACTIONS(1099), + [anon_sym_i8] = ACTIONS(1099), + [anon_sym_i16] = ACTIONS(1099), + [anon_sym_i32] = ACTIONS(1099), + [anon_sym_i64] = ACTIONS(1099), + [anon_sym_u8] = ACTIONS(1099), + [anon_sym_u16] = ACTIONS(1099), + [anon_sym_u32] = ACTIONS(1099), + [anon_sym_u64] = ACTIONS(1099), + [anon_sym_isize] = ACTIONS(1099), + [anon_sym_usize] = ACTIONS(1099), + [anon_sym_f32] = ACTIONS(1099), + [anon_sym_f64] = ACTIONS(1099), + [anon_sym_c_char] = ACTIONS(1099), + [anon_sym_c_schar] = ACTIONS(1099), + [anon_sym_c_uchar] = ACTIONS(1099), + [anon_sym_c_short] = ACTIONS(1099), + [anon_sym_c_ushort] = ACTIONS(1099), + [anon_sym_c_int] = ACTIONS(1099), + [anon_sym_c_uint] = ACTIONS(1099), + [anon_sym_c_long] = ACTIONS(1099), + [anon_sym_c_ulong] = ACTIONS(1099), + [anon_sym_c_longlong] = ACTIONS(1099), + [anon_sym_c_ulonglong] = ACTIONS(1099), + [anon_sym_c_float] = ACTIONS(1099), + [anon_sym_c_double] = ACTIONS(1099), + [anon_sym_c_longdouble] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_yield] = ACTIONS(1099), + [anon_sym_COLON] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1099), + [anon_sym_continue] = ACTIONS(1099), + [anon_sym_defer] = ACTIONS(1099), + [anon_sym_errdefer] = ACTIONS(1099), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_else] = ACTIONS(1099), + [anon_sym_while] = ACTIONS(1099), + [anon_sym_expand] = ACTIONS(1099), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_match] = ACTIONS(1099), + [anon_sym_DOT_DOT] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1097), + [anon_sym_orelse] = ACTIONS(1099), + [anon_sym_catch] = ACTIONS(1099), + [anon_sym_or] = ACTIONS(1099), + [anon_sym_and] = ACTIONS(1099), + [anon_sym_EQ_EQ] = ACTIONS(1097), + [anon_sym_BANG_EQ] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(1099), + [anon_sym_LT_EQ] = ACTIONS(1097), + [anon_sym_GT] = ACTIONS(1099), + [anon_sym_GT_EQ] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1097), + [anon_sym_xor] = ACTIONS(1099), + [anon_sym_LT_LT] = ACTIONS(1099), + [anon_sym_GT_GT] = ACTIONS(1097), + [anon_sym_LT_LT_PIPE] = ACTIONS(1097), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1099), + [anon_sym_DOT] = ACTIONS(1099), + [anon_sym_CARET] = ACTIONS(1097), + [anon_sym_true] = ACTIONS(1099), + [anon_sym_false] = ACTIONS(1099), + [sym_none] = ACTIONS(1099), + [sym_undefined] = ACTIONS(1099), + [sym_sink] = ACTIONS(1099), + [sym_integer] = ACTIONS(1099), + [sym_float] = ACTIONS(1097), + [anon_sym_DQUOTE] = ACTIONS(1097), + [sym_multiline_string] = ACTIONS(1097), + [sym_character] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1097), + }, + [STATE(731)] = { + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(385), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(390), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_LT_LT_PIPE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(732)] = { + [ts_builtin_sym_end] = ACTIONS(1119), + [sym_identifier] = ACTIONS(1121), + [anon_sym_import] = ACTIONS(1121), + [anon_sym_test] = ACTIONS(1121), + [anon_sym_hide] = ACTIONS(1121), + [anon_sym_func] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1121), + [anon_sym_struct] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_DASH] = ACTIONS(1119), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1119), + [anon_sym_void] = ACTIONS(1121), + [anon_sym_anyopaque] = ACTIONS(1121), + [anon_sym_bool] = ACTIONS(1121), + [anon_sym_int] = ACTIONS(1121), + [anon_sym_uint] = ACTIONS(1121), + [anon_sym_float] = ACTIONS(1121), + [anon_sym_range] = ACTIONS(1121), + [anon_sym_i8] = ACTIONS(1121), + [anon_sym_i16] = ACTIONS(1121), + [anon_sym_i32] = ACTIONS(1121), + [anon_sym_i64] = ACTIONS(1121), + [anon_sym_u8] = ACTIONS(1121), + [anon_sym_u16] = ACTIONS(1121), + [anon_sym_u32] = ACTIONS(1121), + [anon_sym_u64] = ACTIONS(1121), + [anon_sym_isize] = ACTIONS(1121), + [anon_sym_usize] = ACTIONS(1121), + [anon_sym_f32] = ACTIONS(1121), + [anon_sym_f64] = ACTIONS(1121), + [anon_sym_c_char] = ACTIONS(1121), + [anon_sym_c_schar] = ACTIONS(1121), + [anon_sym_c_uchar] = ACTIONS(1121), + [anon_sym_c_short] = ACTIONS(1121), + [anon_sym_c_ushort] = ACTIONS(1121), + [anon_sym_c_int] = ACTIONS(1121), + [anon_sym_c_uint] = ACTIONS(1121), + [anon_sym_c_long] = ACTIONS(1121), + [anon_sym_c_ulong] = ACTIONS(1121), + [anon_sym_c_longlong] = ACTIONS(1121), + [anon_sym_c_ulonglong] = ACTIONS(1121), + [anon_sym_c_float] = ACTIONS(1121), + [anon_sym_c_double] = ACTIONS(1121), + [anon_sym_c_longdouble] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1121), + [anon_sym_yield] = ACTIONS(1121), + [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_defer] = ACTIONS(1121), + [anon_sym_errdefer] = ACTIONS(1121), + [anon_sym_if] = ACTIONS(1121), + [anon_sym_else] = ACTIONS(1121), + [anon_sym_while] = ACTIONS(1121), + [anon_sym_expand] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_match] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1121), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1119), + [anon_sym_orelse] = ACTIONS(1121), + [anon_sym_catch] = ACTIONS(1121), + [anon_sym_or] = ACTIONS(1121), + [anon_sym_and] = ACTIONS(1121), + [anon_sym_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1121), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1121), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_AMP] = ACTIONS(1119), + [anon_sym_xor] = ACTIONS(1121), + [anon_sym_LT_LT] = ACTIONS(1121), + [anon_sym_GT_GT] = ACTIONS(1119), + [anon_sym_LT_LT_PIPE] = ACTIONS(1119), + [anon_sym_PLUS] = ACTIONS(1119), + [anon_sym_SLASH] = ACTIONS(1119), + [anon_sym_TILDE] = ACTIONS(1119), + [anon_sym_try] = ACTIONS(1121), + [anon_sym_DOT] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(1121), + [anon_sym_false] = ACTIONS(1121), + [sym_none] = ACTIONS(1121), + [sym_undefined] = ACTIONS(1121), + [sym_sink] = ACTIONS(1121), + [sym_integer] = ACTIONS(1121), + [sym_float] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1119), + [sym_multiline_string] = ACTIONS(1119), + [sym_character] = ACTIONS(1119), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1119), + }, + [STATE(733)] = { + [ts_builtin_sym_end] = ACTIONS(1033), + [sym_identifier] = ACTIONS(1035), + [anon_sym_import] = ACTIONS(1035), + [anon_sym_test] = ACTIONS(1035), + [anon_sym_hide] = ACTIONS(1035), + [anon_sym_func] = ACTIONS(1035), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_struct] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_void] = ACTIONS(1035), + [anon_sym_anyopaque] = ACTIONS(1035), + [anon_sym_bool] = ACTIONS(1035), + [anon_sym_int] = ACTIONS(1035), + [anon_sym_uint] = ACTIONS(1035), + [anon_sym_float] = ACTIONS(1035), + [anon_sym_range] = ACTIONS(1035), + [anon_sym_i8] = ACTIONS(1035), + [anon_sym_i16] = ACTIONS(1035), + [anon_sym_i32] = ACTIONS(1035), + [anon_sym_i64] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1035), + [anon_sym_u16] = ACTIONS(1035), + [anon_sym_u32] = ACTIONS(1035), + [anon_sym_u64] = ACTIONS(1035), + [anon_sym_isize] = ACTIONS(1035), + [anon_sym_usize] = ACTIONS(1035), + [anon_sym_f32] = ACTIONS(1035), + [anon_sym_f64] = ACTIONS(1035), + [anon_sym_c_char] = ACTIONS(1035), + [anon_sym_c_schar] = ACTIONS(1035), + [anon_sym_c_uchar] = ACTIONS(1035), + [anon_sym_c_short] = ACTIONS(1035), + [anon_sym_c_ushort] = ACTIONS(1035), + [anon_sym_c_int] = ACTIONS(1035), + [anon_sym_c_uint] = ACTIONS(1035), + [anon_sym_c_long] = ACTIONS(1035), + [anon_sym_c_ulong] = ACTIONS(1035), + [anon_sym_c_longlong] = ACTIONS(1035), + [anon_sym_c_ulonglong] = ACTIONS(1035), + [anon_sym_c_float] = ACTIONS(1035), + [anon_sym_c_double] = ACTIONS(1035), + [anon_sym_c_longdouble] = ACTIONS(1035), + [anon_sym_return] = ACTIONS(1035), + [anon_sym_yield] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1035), + [anon_sym_continue] = ACTIONS(1035), + [anon_sym_defer] = ACTIONS(1035), + [anon_sym_errdefer] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1035), + [anon_sym_else] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1035), + [anon_sym_expand] = ACTIONS(1035), + [anon_sym_for] = ACTIONS(1035), + [anon_sym_match] = ACTIONS(1035), + [anon_sym_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_orelse] = ACTIONS(1035), + [anon_sym_catch] = ACTIONS(1035), + [anon_sym_or] = ACTIONS(1035), + [anon_sym_and] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_xor] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_LT_LT_PIPE] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1035), + [anon_sym_false] = ACTIONS(1035), + [sym_none] = ACTIONS(1035), + [sym_undefined] = ACTIONS(1035), + [sym_sink] = ACTIONS(1035), + [sym_integer] = ACTIONS(1035), + [sym_float] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym_multiline_string] = ACTIONS(1033), + [sym_character] = ACTIONS(1033), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1033), + }, + [STATE(734)] = { + [ts_builtin_sym_end] = ACTIONS(773), + [sym_identifier] = ACTIONS(775), + [anon_sym_import] = ACTIONS(775), + [anon_sym_test] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_func] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_struct] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_DASH] = ACTIONS(773), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_void] = ACTIONS(775), + [anon_sym_anyopaque] = ACTIONS(775), + [anon_sym_bool] = ACTIONS(775), + [anon_sym_int] = ACTIONS(775), + [anon_sym_uint] = ACTIONS(775), + [anon_sym_float] = ACTIONS(775), + [anon_sym_range] = ACTIONS(775), + [anon_sym_i8] = ACTIONS(775), + [anon_sym_i16] = ACTIONS(775), + [anon_sym_i32] = ACTIONS(775), + [anon_sym_i64] = ACTIONS(775), + [anon_sym_u8] = ACTIONS(775), + [anon_sym_u16] = ACTIONS(775), + [anon_sym_u32] = ACTIONS(775), + [anon_sym_u64] = ACTIONS(775), + [anon_sym_isize] = ACTIONS(775), + [anon_sym_usize] = ACTIONS(775), + [anon_sym_f32] = ACTIONS(775), + [anon_sym_f64] = ACTIONS(775), + [anon_sym_c_char] = ACTIONS(775), + [anon_sym_c_schar] = ACTIONS(775), + [anon_sym_c_uchar] = ACTIONS(775), + [anon_sym_c_short] = ACTIONS(775), + [anon_sym_c_ushort] = ACTIONS(775), + [anon_sym_c_int] = ACTIONS(775), + [anon_sym_c_uint] = ACTIONS(775), + [anon_sym_c_long] = ACTIONS(775), + [anon_sym_c_ulong] = ACTIONS(775), + [anon_sym_c_longlong] = ACTIONS(775), + [anon_sym_c_ulonglong] = ACTIONS(775), + [anon_sym_c_float] = ACTIONS(775), + [anon_sym_c_double] = ACTIONS(775), + [anon_sym_c_longdouble] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_yield] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(773), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_defer] = ACTIONS(775), + [anon_sym_errdefer] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_else] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_expand] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(773), + [anon_sym_orelse] = ACTIONS(775), + [anon_sym_catch] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_LT_LT] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(773), + [anon_sym_LT_LT_PIPE] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(773), + [anon_sym_SLASH] = ACTIONS(773), + [anon_sym_TILDE] = ACTIONS(773), + [anon_sym_try] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(773), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [sym_none] = ACTIONS(775), + [sym_undefined] = ACTIONS(775), + [sym_sink] = ACTIONS(775), + [sym_integer] = ACTIONS(775), + [sym_float] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(773), + [sym_multiline_string] = ACTIONS(773), + [sym_character] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(773), + }, + [STATE(735)] = { + [ts_builtin_sym_end] = ACTIONS(777), + [sym_identifier] = ACTIONS(779), + [anon_sym_import] = ACTIONS(779), + [anon_sym_test] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_func] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_struct] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(777), + [anon_sym_PIPE] = ACTIONS(777), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_void] = ACTIONS(779), + [anon_sym_anyopaque] = ACTIONS(779), + [anon_sym_bool] = ACTIONS(779), + [anon_sym_int] = ACTIONS(779), + [anon_sym_uint] = ACTIONS(779), + [anon_sym_float] = ACTIONS(779), + [anon_sym_range] = ACTIONS(779), + [anon_sym_i8] = ACTIONS(779), + [anon_sym_i16] = ACTIONS(779), + [anon_sym_i32] = ACTIONS(779), + [anon_sym_i64] = ACTIONS(779), + [anon_sym_u8] = ACTIONS(779), + [anon_sym_u16] = ACTIONS(779), + [anon_sym_u32] = ACTIONS(779), + [anon_sym_u64] = ACTIONS(779), + [anon_sym_isize] = ACTIONS(779), + [anon_sym_usize] = ACTIONS(779), + [anon_sym_f32] = ACTIONS(779), + [anon_sym_f64] = ACTIONS(779), + [anon_sym_c_char] = ACTIONS(779), + [anon_sym_c_schar] = ACTIONS(779), + [anon_sym_c_uchar] = ACTIONS(779), + [anon_sym_c_short] = ACTIONS(779), + [anon_sym_c_ushort] = ACTIONS(779), + [anon_sym_c_int] = ACTIONS(779), + [anon_sym_c_uint] = ACTIONS(779), + [anon_sym_c_long] = ACTIONS(779), + [anon_sym_c_ulong] = ACTIONS(779), + [anon_sym_c_longlong] = ACTIONS(779), + [anon_sym_c_ulonglong] = ACTIONS(779), + [anon_sym_c_float] = ACTIONS(779), + [anon_sym_c_double] = ACTIONS(779), + [anon_sym_c_longdouble] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_defer] = ACTIONS(779), + [anon_sym_errdefer] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_else] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_expand] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(777), + [anon_sym_orelse] = ACTIONS(779), + [anon_sym_catch] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(777), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(777), + [anon_sym_LT_LT_PIPE] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_SLASH] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(777), + [anon_sym_try] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [sym_none] = ACTIONS(779), + [sym_undefined] = ACTIONS(779), + [sym_sink] = ACTIONS(779), + [sym_integer] = ACTIONS(779), + [sym_float] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym_multiline_string] = ACTIONS(777), + [sym_character] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(777), + }, + [STATE(736)] = { + [ts_builtin_sym_end] = ACTIONS(781), + [sym_identifier] = ACTIONS(783), + [anon_sym_import] = ACTIONS(783), + [anon_sym_test] = ACTIONS(783), + [anon_sym_hide] = ACTIONS(783), + [anon_sym_func] = ACTIONS(783), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_struct] = ACTIONS(783), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(781), + [anon_sym_PIPE] = ACTIONS(781), + [anon_sym_QMARK] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(781), + [anon_sym_void] = ACTIONS(783), + [anon_sym_anyopaque] = ACTIONS(783), + [anon_sym_bool] = ACTIONS(783), + [anon_sym_int] = ACTIONS(783), + [anon_sym_uint] = ACTIONS(783), + [anon_sym_float] = ACTIONS(783), + [anon_sym_range] = ACTIONS(783), + [anon_sym_i8] = ACTIONS(783), + [anon_sym_i16] = ACTIONS(783), + [anon_sym_i32] = ACTIONS(783), + [anon_sym_i64] = ACTIONS(783), + [anon_sym_u8] = ACTIONS(783), + [anon_sym_u16] = ACTIONS(783), + [anon_sym_u32] = ACTIONS(783), + [anon_sym_u64] = ACTIONS(783), + [anon_sym_isize] = ACTIONS(783), + [anon_sym_usize] = ACTIONS(783), + [anon_sym_f32] = ACTIONS(783), + [anon_sym_f64] = ACTIONS(783), + [anon_sym_c_char] = ACTIONS(783), + [anon_sym_c_schar] = ACTIONS(783), + [anon_sym_c_uchar] = ACTIONS(783), + [anon_sym_c_short] = ACTIONS(783), + [anon_sym_c_ushort] = ACTIONS(783), + [anon_sym_c_int] = ACTIONS(783), + [anon_sym_c_uint] = ACTIONS(783), + [anon_sym_c_long] = ACTIONS(783), + [anon_sym_c_ulong] = ACTIONS(783), + [anon_sym_c_longlong] = ACTIONS(783), + [anon_sym_c_ulonglong] = ACTIONS(783), + [anon_sym_c_float] = ACTIONS(783), + [anon_sym_c_double] = ACTIONS(783), + [anon_sym_c_longdouble] = ACTIONS(783), + [anon_sym_return] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(783), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_break] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(783), + [anon_sym_defer] = ACTIONS(783), + [anon_sym_errdefer] = ACTIONS(783), + [anon_sym_if] = ACTIONS(783), + [anon_sym_else] = ACTIONS(783), + [anon_sym_while] = ACTIONS(783), + [anon_sym_expand] = ACTIONS(783), + [anon_sym_for] = ACTIONS(783), + [anon_sym_match] = ACTIONS(783), + [anon_sym_DOT_DOT] = ACTIONS(783), + [anon_sym_DOT_DOT_EQ] = ACTIONS(781), + [anon_sym_orelse] = ACTIONS(783), + [anon_sym_catch] = ACTIONS(783), + [anon_sym_or] = ACTIONS(783), + [anon_sym_and] = ACTIONS(783), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(781), + [anon_sym_LT] = ACTIONS(783), + [anon_sym_LT_EQ] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(783), + [anon_sym_GT_EQ] = ACTIONS(781), + [anon_sym_AMP] = ACTIONS(781), + [anon_sym_xor] = ACTIONS(783), + [anon_sym_LT_LT] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(781), + [anon_sym_LT_LT_PIPE] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(781), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_try] = ACTIONS(783), + [anon_sym_DOT] = ACTIONS(783), + [anon_sym_CARET] = ACTIONS(781), + [anon_sym_true] = ACTIONS(783), + [anon_sym_false] = ACTIONS(783), + [sym_none] = ACTIONS(783), + [sym_undefined] = ACTIONS(783), + [sym_sink] = ACTIONS(783), + [sym_integer] = ACTIONS(783), + [sym_float] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(781), + [sym_multiline_string] = ACTIONS(781), + [sym_character] = ACTIONS(781), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(781), + }, + [STATE(737)] = { + [ts_builtin_sym_end] = ACTIONS(845), + [sym_identifier] = ACTIONS(847), + [anon_sym_import] = ACTIONS(847), + [anon_sym_test] = ACTIONS(847), + [anon_sym_hide] = ACTIONS(847), + [anon_sym_func] = ACTIONS(847), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_struct] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [anon_sym_QMARK] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_void] = ACTIONS(847), + [anon_sym_anyopaque] = ACTIONS(847), + [anon_sym_bool] = ACTIONS(847), + [anon_sym_int] = ACTIONS(847), + [anon_sym_uint] = ACTIONS(847), + [anon_sym_float] = ACTIONS(847), + [anon_sym_range] = ACTIONS(847), + [anon_sym_i8] = ACTIONS(847), + [anon_sym_i16] = ACTIONS(847), + [anon_sym_i32] = ACTIONS(847), + [anon_sym_i64] = ACTIONS(847), + [anon_sym_u8] = ACTIONS(847), + [anon_sym_u16] = ACTIONS(847), + [anon_sym_u32] = ACTIONS(847), + [anon_sym_u64] = ACTIONS(847), + [anon_sym_isize] = ACTIONS(847), + [anon_sym_usize] = ACTIONS(847), + [anon_sym_f32] = ACTIONS(847), + [anon_sym_f64] = ACTIONS(847), + [anon_sym_c_char] = ACTIONS(847), + [anon_sym_c_schar] = ACTIONS(847), + [anon_sym_c_uchar] = ACTIONS(847), + [anon_sym_c_short] = ACTIONS(847), + [anon_sym_c_ushort] = ACTIONS(847), + [anon_sym_c_int] = ACTIONS(847), + [anon_sym_c_uint] = ACTIONS(847), + [anon_sym_c_long] = ACTIONS(847), + [anon_sym_c_ulong] = ACTIONS(847), + [anon_sym_c_longlong] = ACTIONS(847), + [anon_sym_c_ulonglong] = ACTIONS(847), + [anon_sym_c_float] = ACTIONS(847), + [anon_sym_c_double] = ACTIONS(847), + [anon_sym_c_longdouble] = ACTIONS(847), + [anon_sym_return] = ACTIONS(847), + [anon_sym_yield] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_break] = ACTIONS(847), + [anon_sym_continue] = ACTIONS(847), + [anon_sym_defer] = ACTIONS(847), + [anon_sym_errdefer] = ACTIONS(847), + [anon_sym_if] = ACTIONS(847), + [anon_sym_else] = ACTIONS(847), + [anon_sym_while] = ACTIONS(847), + [anon_sym_expand] = ACTIONS(847), + [anon_sym_for] = ACTIONS(847), + [anon_sym_match] = ACTIONS(847), + [anon_sym_DOT_DOT] = ACTIONS(847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(845), + [anon_sym_orelse] = ACTIONS(847), + [anon_sym_catch] = ACTIONS(847), + [anon_sym_or] = ACTIONS(847), + [anon_sym_and] = ACTIONS(847), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_LT] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_AMP] = ACTIONS(845), + [anon_sym_xor] = ACTIONS(847), + [anon_sym_LT_LT] = ACTIONS(847), + [anon_sym_GT_GT] = ACTIONS(845), + [anon_sym_LT_LT_PIPE] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_TILDE] = ACTIONS(845), + [anon_sym_try] = ACTIONS(847), + [anon_sym_DOT] = ACTIONS(847), + [anon_sym_CARET] = ACTIONS(845), + [anon_sym_true] = ACTIONS(847), + [anon_sym_false] = ACTIONS(847), + [sym_none] = ACTIONS(847), + [sym_undefined] = ACTIONS(847), + [sym_sink] = ACTIONS(847), + [sym_integer] = ACTIONS(847), + [sym_float] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [sym_multiline_string] = ACTIONS(845), + [sym_character] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(845), + }, + [STATE(738)] = { + [ts_builtin_sym_end] = ACTIONS(849), + [sym_identifier] = ACTIONS(851), + [anon_sym_import] = ACTIONS(851), + [anon_sym_test] = ACTIONS(851), + [anon_sym_hide] = ACTIONS(851), + [anon_sym_func] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_struct] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_RBRACE] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_QMARK] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_void] = ACTIONS(851), + [anon_sym_anyopaque] = ACTIONS(851), + [anon_sym_bool] = ACTIONS(851), + [anon_sym_int] = ACTIONS(851), + [anon_sym_uint] = ACTIONS(851), + [anon_sym_float] = ACTIONS(851), + [anon_sym_range] = ACTIONS(851), + [anon_sym_i8] = ACTIONS(851), + [anon_sym_i16] = ACTIONS(851), + [anon_sym_i32] = ACTIONS(851), + [anon_sym_i64] = ACTIONS(851), + [anon_sym_u8] = ACTIONS(851), + [anon_sym_u16] = ACTIONS(851), + [anon_sym_u32] = ACTIONS(851), + [anon_sym_u64] = ACTIONS(851), + [anon_sym_isize] = ACTIONS(851), + [anon_sym_usize] = ACTIONS(851), + [anon_sym_f32] = ACTIONS(851), + [anon_sym_f64] = ACTIONS(851), + [anon_sym_c_char] = ACTIONS(851), + [anon_sym_c_schar] = ACTIONS(851), + [anon_sym_c_uchar] = ACTIONS(851), + [anon_sym_c_short] = ACTIONS(851), + [anon_sym_c_ushort] = ACTIONS(851), + [anon_sym_c_int] = ACTIONS(851), + [anon_sym_c_uint] = ACTIONS(851), + [anon_sym_c_long] = ACTIONS(851), + [anon_sym_c_ulong] = ACTIONS(851), + [anon_sym_c_longlong] = ACTIONS(851), + [anon_sym_c_ulonglong] = ACTIONS(851), + [anon_sym_c_float] = ACTIONS(851), + [anon_sym_c_double] = ACTIONS(851), + [anon_sym_c_longdouble] = ACTIONS(851), + [anon_sym_return] = ACTIONS(851), + [anon_sym_yield] = ACTIONS(851), + [anon_sym_COLON] = ACTIONS(849), + [anon_sym_break] = ACTIONS(851), + [anon_sym_continue] = ACTIONS(851), + [anon_sym_defer] = ACTIONS(851), + [anon_sym_errdefer] = ACTIONS(851), + [anon_sym_if] = ACTIONS(851), + [anon_sym_else] = ACTIONS(851), + [anon_sym_while] = ACTIONS(851), + [anon_sym_expand] = ACTIONS(851), + [anon_sym_for] = ACTIONS(851), + [anon_sym_match] = ACTIONS(851), + [anon_sym_DOT_DOT] = ACTIONS(851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(849), + [anon_sym_orelse] = ACTIONS(851), + [anon_sym_catch] = ACTIONS(851), + [anon_sym_or] = ACTIONS(851), + [anon_sym_and] = ACTIONS(851), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT] = ACTIONS(851), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(851), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(849), + [anon_sym_xor] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(851), + [anon_sym_GT_GT] = ACTIONS(849), + [anon_sym_LT_LT_PIPE] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_try] = ACTIONS(851), + [anon_sym_DOT] = ACTIONS(851), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_true] = ACTIONS(851), + [anon_sym_false] = ACTIONS(851), + [sym_none] = ACTIONS(851), + [sym_undefined] = ACTIONS(851), + [sym_sink] = ACTIONS(851), + [sym_integer] = ACTIONS(851), + [sym_float] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [sym_multiline_string] = ACTIONS(849), + [sym_character] = ACTIONS(849), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(849), + }, + [STATE(739)] = { + [ts_builtin_sym_end] = ACTIONS(989), + [sym_identifier] = ACTIONS(991), + [anon_sym_import] = ACTIONS(991), + [anon_sym_test] = ACTIONS(991), + [anon_sym_hide] = ACTIONS(991), + [anon_sym_func] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(991), + [anon_sym_struct] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_void] = ACTIONS(991), + [anon_sym_anyopaque] = ACTIONS(991), + [anon_sym_bool] = ACTIONS(991), + [anon_sym_int] = ACTIONS(991), + [anon_sym_uint] = ACTIONS(991), + [anon_sym_float] = ACTIONS(991), + [anon_sym_range] = ACTIONS(991), + [anon_sym_i8] = ACTIONS(991), + [anon_sym_i16] = ACTIONS(991), + [anon_sym_i32] = ACTIONS(991), + [anon_sym_i64] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(991), + [anon_sym_u16] = ACTIONS(991), + [anon_sym_u32] = ACTIONS(991), + [anon_sym_u64] = ACTIONS(991), + [anon_sym_isize] = ACTIONS(991), + [anon_sym_usize] = ACTIONS(991), + [anon_sym_f32] = ACTIONS(991), + [anon_sym_f64] = ACTIONS(991), + [anon_sym_c_char] = ACTIONS(991), + [anon_sym_c_schar] = ACTIONS(991), + [anon_sym_c_uchar] = ACTIONS(991), + [anon_sym_c_short] = ACTIONS(991), + [anon_sym_c_ushort] = ACTIONS(991), + [anon_sym_c_int] = ACTIONS(991), + [anon_sym_c_uint] = ACTIONS(991), + [anon_sym_c_long] = ACTIONS(991), + [anon_sym_c_ulong] = ACTIONS(991), + [anon_sym_c_longlong] = ACTIONS(991), + [anon_sym_c_ulonglong] = ACTIONS(991), + [anon_sym_c_float] = ACTIONS(991), + [anon_sym_c_double] = ACTIONS(991), + [anon_sym_c_longdouble] = ACTIONS(991), + [anon_sym_return] = ACTIONS(991), + [anon_sym_yield] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_break] = ACTIONS(991), + [anon_sym_continue] = ACTIONS(991), + [anon_sym_defer] = ACTIONS(991), + [anon_sym_errdefer] = ACTIONS(991), + [anon_sym_if] = ACTIONS(991), + [anon_sym_else] = ACTIONS(991), + [anon_sym_while] = ACTIONS(991), + [anon_sym_expand] = ACTIONS(991), + [anon_sym_for] = ACTIONS(991), + [anon_sym_match] = ACTIONS(991), + [anon_sym_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(989), + [anon_sym_orelse] = ACTIONS(991), + [anon_sym_catch] = ACTIONS(991), + [anon_sym_or] = ACTIONS(991), + [anon_sym_and] = ACTIONS(991), + [anon_sym_EQ_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_xor] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(991), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_LT_LT_PIPE] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(989), + [anon_sym_try] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_true] = ACTIONS(991), + [anon_sym_false] = ACTIONS(991), + [sym_none] = ACTIONS(991), + [sym_undefined] = ACTIONS(991), + [sym_sink] = ACTIONS(991), + [sym_integer] = ACTIONS(991), + [sym_float] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(989), + [sym_multiline_string] = ACTIONS(989), + [sym_character] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(989), + }, + [STATE(740)] = { + [ts_builtin_sym_end] = ACTIONS(993), + [sym_identifier] = ACTIONS(995), + [anon_sym_import] = ACTIONS(995), + [anon_sym_test] = ACTIONS(995), + [anon_sym_hide] = ACTIONS(995), + [anon_sym_func] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_struct] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_void] = ACTIONS(995), + [anon_sym_anyopaque] = ACTIONS(995), + [anon_sym_bool] = ACTIONS(995), + [anon_sym_int] = ACTIONS(995), + [anon_sym_uint] = ACTIONS(995), + [anon_sym_float] = ACTIONS(995), + [anon_sym_range] = ACTIONS(995), + [anon_sym_i8] = ACTIONS(995), + [anon_sym_i16] = ACTIONS(995), + [anon_sym_i32] = ACTIONS(995), + [anon_sym_i64] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(995), + [anon_sym_u16] = ACTIONS(995), + [anon_sym_u32] = ACTIONS(995), + [anon_sym_u64] = ACTIONS(995), + [anon_sym_isize] = ACTIONS(995), + [anon_sym_usize] = ACTIONS(995), + [anon_sym_f32] = ACTIONS(995), + [anon_sym_f64] = ACTIONS(995), + [anon_sym_c_char] = ACTIONS(995), + [anon_sym_c_schar] = ACTIONS(995), + [anon_sym_c_uchar] = ACTIONS(995), + [anon_sym_c_short] = ACTIONS(995), + [anon_sym_c_ushort] = ACTIONS(995), + [anon_sym_c_int] = ACTIONS(995), + [anon_sym_c_uint] = ACTIONS(995), + [anon_sym_c_long] = ACTIONS(995), + [anon_sym_c_ulong] = ACTIONS(995), + [anon_sym_c_longlong] = ACTIONS(995), + [anon_sym_c_ulonglong] = ACTIONS(995), + [anon_sym_c_float] = ACTIONS(995), + [anon_sym_c_double] = ACTIONS(995), + [anon_sym_c_longdouble] = ACTIONS(995), + [anon_sym_return] = ACTIONS(995), + [anon_sym_yield] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_break] = ACTIONS(995), + [anon_sym_continue] = ACTIONS(995), + [anon_sym_defer] = ACTIONS(995), + [anon_sym_errdefer] = ACTIONS(995), + [anon_sym_if] = ACTIONS(995), + [anon_sym_else] = ACTIONS(995), + [anon_sym_while] = ACTIONS(995), + [anon_sym_expand] = ACTIONS(995), + [anon_sym_for] = ACTIONS(995), + [anon_sym_match] = ACTIONS(995), + [anon_sym_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(993), + [anon_sym_orelse] = ACTIONS(995), + [anon_sym_catch] = ACTIONS(995), + [anon_sym_or] = ACTIONS(995), + [anon_sym_and] = ACTIONS(995), + [anon_sym_EQ_EQ] = ACTIONS(993), + [anon_sym_BANG_EQ] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(993), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_xor] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(995), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_LT_LT_PIPE] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(993), + [anon_sym_try] = ACTIONS(995), + [anon_sym_DOT] = ACTIONS(995), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_true] = ACTIONS(995), + [anon_sym_false] = ACTIONS(995), + [sym_none] = ACTIONS(995), + [sym_undefined] = ACTIONS(995), + [sym_sink] = ACTIONS(995), + [sym_integer] = ACTIONS(995), + [sym_float] = ACTIONS(993), + [anon_sym_DQUOTE] = ACTIONS(993), + [sym_multiline_string] = ACTIONS(993), + [sym_character] = ACTIONS(993), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(993), + }, + [STATE(741)] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [anon_sym_import] = ACTIONS(999), + [anon_sym_test] = ACTIONS(999), + [anon_sym_hide] = ACTIONS(999), + [anon_sym_func] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_void] = ACTIONS(999), + [anon_sym_anyopaque] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_int] = ACTIONS(999), + [anon_sym_uint] = ACTIONS(999), + [anon_sym_float] = ACTIONS(999), + [anon_sym_range] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_c_char] = ACTIONS(999), + [anon_sym_c_schar] = ACTIONS(999), + [anon_sym_c_uchar] = ACTIONS(999), + [anon_sym_c_short] = ACTIONS(999), + [anon_sym_c_ushort] = ACTIONS(999), + [anon_sym_c_int] = ACTIONS(999), + [anon_sym_c_uint] = ACTIONS(999), + [anon_sym_c_long] = ACTIONS(999), + [anon_sym_c_ulong] = ACTIONS(999), + [anon_sym_c_longlong] = ACTIONS(999), + [anon_sym_c_ulonglong] = ACTIONS(999), + [anon_sym_c_float] = ACTIONS(999), + [anon_sym_c_double] = ACTIONS(999), + [anon_sym_c_longdouble] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_break] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_defer] = ACTIONS(999), + [anon_sym_errdefer] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [anon_sym_expand] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(997), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_catch] = ACTIONS(999), + [anon_sym_or] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(997), + [anon_sym_BANG_EQ] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_xor] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_LT_LT_PIPE] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_try] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [sym_none] = ACTIONS(999), + [sym_undefined] = ACTIONS(999), + [sym_sink] = ACTIONS(999), + [sym_integer] = ACTIONS(999), + [sym_float] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(997), + [sym_multiline_string] = ACTIONS(997), + [sym_character] = ACTIONS(997), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(997), + }, + [STATE(742)] = { + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_identifier] = ACTIONS(1039), + [anon_sym_import] = ACTIONS(1039), + [anon_sym_test] = ACTIONS(1039), + [anon_sym_hide] = ACTIONS(1039), + [anon_sym_func] = ACTIONS(1039), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_struct] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1037), + [anon_sym_void] = ACTIONS(1039), + [anon_sym_anyopaque] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_int] = ACTIONS(1039), + [anon_sym_uint] = ACTIONS(1039), + [anon_sym_float] = ACTIONS(1039), + [anon_sym_range] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_c_char] = ACTIONS(1039), + [anon_sym_c_schar] = ACTIONS(1039), + [anon_sym_c_uchar] = ACTIONS(1039), + [anon_sym_c_short] = ACTIONS(1039), + [anon_sym_c_ushort] = ACTIONS(1039), + [anon_sym_c_int] = ACTIONS(1039), + [anon_sym_c_uint] = ACTIONS(1039), + [anon_sym_c_long] = ACTIONS(1039), + [anon_sym_c_ulong] = ACTIONS(1039), + [anon_sym_c_longlong] = ACTIONS(1039), + [anon_sym_c_ulonglong] = ACTIONS(1039), + [anon_sym_c_float] = ACTIONS(1039), + [anon_sym_c_double] = ACTIONS(1039), + [anon_sym_c_longdouble] = ACTIONS(1039), + [anon_sym_return] = ACTIONS(1039), + [anon_sym_yield] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1039), + [anon_sym_continue] = ACTIONS(1039), + [anon_sym_defer] = ACTIONS(1039), + [anon_sym_errdefer] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1039), + [anon_sym_expand] = ACTIONS(1039), + [anon_sym_for] = ACTIONS(1039), + [anon_sym_match] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1037), + [anon_sym_orelse] = ACTIONS(1039), + [anon_sym_catch] = ACTIONS(1039), + [anon_sym_or] = ACTIONS(1039), + [anon_sym_and] = ACTIONS(1039), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1039), + [anon_sym_GT_EQ] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_xor] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1039), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_LT_LT_PIPE] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1039), + [anon_sym_DOT] = ACTIONS(1039), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [sym_none] = ACTIONS(1039), + [sym_undefined] = ACTIONS(1039), + [sym_sink] = ACTIONS(1039), + [sym_integer] = ACTIONS(1039), + [sym_float] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(1037), + [sym_multiline_string] = ACTIONS(1037), + [sym_character] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1037), + }, + [STATE(743)] = { + [ts_builtin_sym_end] = ACTIONS(853), + [sym_identifier] = ACTIONS(855), + [anon_sym_import] = ACTIONS(855), + [anon_sym_test] = ACTIONS(855), + [anon_sym_hide] = ACTIONS(855), + [anon_sym_func] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_struct] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(853), + [anon_sym_QMARK] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_void] = ACTIONS(855), + [anon_sym_anyopaque] = ACTIONS(855), + [anon_sym_bool] = ACTIONS(855), + [anon_sym_int] = ACTIONS(855), + [anon_sym_uint] = ACTIONS(855), + [anon_sym_float] = ACTIONS(855), + [anon_sym_range] = ACTIONS(855), + [anon_sym_i8] = ACTIONS(855), + [anon_sym_i16] = ACTIONS(855), + [anon_sym_i32] = ACTIONS(855), + [anon_sym_i64] = ACTIONS(855), + [anon_sym_u8] = ACTIONS(855), + [anon_sym_u16] = ACTIONS(855), + [anon_sym_u32] = ACTIONS(855), + [anon_sym_u64] = ACTIONS(855), + [anon_sym_isize] = ACTIONS(855), + [anon_sym_usize] = ACTIONS(855), + [anon_sym_f32] = ACTIONS(855), + [anon_sym_f64] = ACTIONS(855), + [anon_sym_c_char] = ACTIONS(855), + [anon_sym_c_schar] = ACTIONS(855), + [anon_sym_c_uchar] = ACTIONS(855), + [anon_sym_c_short] = ACTIONS(855), + [anon_sym_c_ushort] = ACTIONS(855), + [anon_sym_c_int] = ACTIONS(855), + [anon_sym_c_uint] = ACTIONS(855), + [anon_sym_c_long] = ACTIONS(855), + [anon_sym_c_ulong] = ACTIONS(855), + [anon_sym_c_longlong] = ACTIONS(855), + [anon_sym_c_ulonglong] = ACTIONS(855), + [anon_sym_c_float] = ACTIONS(855), + [anon_sym_c_double] = ACTIONS(855), + [anon_sym_c_longdouble] = ACTIONS(855), + [anon_sym_return] = ACTIONS(855), + [anon_sym_yield] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(853), + [anon_sym_break] = ACTIONS(855), + [anon_sym_continue] = ACTIONS(855), + [anon_sym_defer] = ACTIONS(855), + [anon_sym_errdefer] = ACTIONS(855), + [anon_sym_if] = ACTIONS(855), + [anon_sym_else] = ACTIONS(855), + [anon_sym_while] = ACTIONS(855), + [anon_sym_expand] = ACTIONS(855), + [anon_sym_for] = ACTIONS(855), + [anon_sym_match] = ACTIONS(855), + [anon_sym_DOT_DOT] = ACTIONS(855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [anon_sym_orelse] = ACTIONS(855), + [anon_sym_catch] = ACTIONS(855), + [anon_sym_or] = ACTIONS(855), + [anon_sym_and] = ACTIONS(855), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(853), + [anon_sym_xor] = ACTIONS(855), + [anon_sym_LT_LT] = ACTIONS(855), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_LT_LT_PIPE] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_try] = ACTIONS(855), + [anon_sym_DOT] = ACTIONS(855), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_true] = ACTIONS(855), + [anon_sym_false] = ACTIONS(855), + [sym_none] = ACTIONS(855), + [sym_undefined] = ACTIONS(855), + [sym_sink] = ACTIONS(855), + [sym_integer] = ACTIONS(855), + [sym_float] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [sym_multiline_string] = ACTIONS(853), + [sym_character] = ACTIONS(853), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(853), + }, + [STATE(744)] = { + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(859), + [anon_sym_import] = ACTIONS(859), + [anon_sym_test] = ACTIONS(859), + [anon_sym_hide] = ACTIONS(859), + [anon_sym_func] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_QMARK] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_void] = ACTIONS(859), + [anon_sym_anyopaque] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_int] = ACTIONS(859), + [anon_sym_uint] = ACTIONS(859), + [anon_sym_float] = ACTIONS(859), + [anon_sym_range] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_c_char] = ACTIONS(859), + [anon_sym_c_schar] = ACTIONS(859), + [anon_sym_c_uchar] = ACTIONS(859), + [anon_sym_c_short] = ACTIONS(859), + [anon_sym_c_ushort] = ACTIONS(859), + [anon_sym_c_int] = ACTIONS(859), + [anon_sym_c_uint] = ACTIONS(859), + [anon_sym_c_long] = ACTIONS(859), + [anon_sym_c_ulong] = ACTIONS(859), + [anon_sym_c_longlong] = ACTIONS(859), + [anon_sym_c_ulonglong] = ACTIONS(859), + [anon_sym_c_float] = ACTIONS(859), + [anon_sym_c_double] = ACTIONS(859), + [anon_sym_c_longdouble] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_defer] = ACTIONS(859), + [anon_sym_errdefer] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_expand] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [anon_sym_orelse] = ACTIONS(859), + [anon_sym_catch] = ACTIONS(859), + [anon_sym_or] = ACTIONS(859), + [anon_sym_and] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(857), + [anon_sym_xor] = ACTIONS(859), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(857), + [anon_sym_LT_LT_PIPE] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_try] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [sym_none] = ACTIONS(859), + [sym_undefined] = ACTIONS(859), + [sym_sink] = ACTIONS(859), + [sym_integer] = ACTIONS(859), + [sym_float] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym_multiline_string] = ACTIONS(857), + [sym_character] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(857), + }, + [STATE(745)] = { + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_identifier] = ACTIONS(1003), + [anon_sym_import] = ACTIONS(1003), + [anon_sym_test] = ACTIONS(1003), + [anon_sym_hide] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1003), + [anon_sym_anyopaque] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_int] = ACTIONS(1003), + [anon_sym_uint] = ACTIONS(1003), + [anon_sym_float] = ACTIONS(1003), + [anon_sym_range] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_c_char] = ACTIONS(1003), + [anon_sym_c_schar] = ACTIONS(1003), + [anon_sym_c_uchar] = ACTIONS(1003), + [anon_sym_c_short] = ACTIONS(1003), + [anon_sym_c_ushort] = ACTIONS(1003), + [anon_sym_c_int] = ACTIONS(1003), + [anon_sym_c_uint] = ACTIONS(1003), + [anon_sym_c_long] = ACTIONS(1003), + [anon_sym_c_ulong] = ACTIONS(1003), + [anon_sym_c_longlong] = ACTIONS(1003), + [anon_sym_c_ulonglong] = ACTIONS(1003), + [anon_sym_c_float] = ACTIONS(1003), + [anon_sym_c_double] = ACTIONS(1003), + [anon_sym_c_longdouble] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_defer] = ACTIONS(1003), + [anon_sym_errdefer] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [anon_sym_expand] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_xor] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LT_LT_PIPE] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [sym_none] = ACTIONS(1003), + [sym_undefined] = ACTIONS(1003), + [sym_sink] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [sym_float] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [sym_multiline_string] = ACTIONS(1001), + [sym_character] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(746)] = { + [ts_builtin_sym_end] = ACTIONS(363), + [sym_identifier] = ACTIONS(361), + [anon_sym_import] = ACTIONS(361), + [anon_sym_test] = ACTIONS(361), + [anon_sym_hide] = ACTIONS(361), + [anon_sym_func] = ACTIONS(361), + [anon_sym_BANG] = ACTIONS(361), + [anon_sym_struct] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_DASH] = ACTIONS(363), + [anon_sym_DOLLAR] = ACTIONS(363), + [anon_sym_PIPE] = ACTIONS(363), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_void] = ACTIONS(361), + [anon_sym_anyopaque] = ACTIONS(361), + [anon_sym_bool] = ACTIONS(361), + [anon_sym_int] = ACTIONS(361), + [anon_sym_uint] = ACTIONS(361), + [anon_sym_float] = ACTIONS(361), + [anon_sym_range] = ACTIONS(361), + [anon_sym_i8] = ACTIONS(361), + [anon_sym_i16] = ACTIONS(361), + [anon_sym_i32] = ACTIONS(361), + [anon_sym_i64] = ACTIONS(361), + [anon_sym_u8] = ACTIONS(361), + [anon_sym_u16] = ACTIONS(361), + [anon_sym_u32] = ACTIONS(361), + [anon_sym_u64] = ACTIONS(361), + [anon_sym_isize] = ACTIONS(361), + [anon_sym_usize] = ACTIONS(361), + [anon_sym_f32] = ACTIONS(361), + [anon_sym_f64] = ACTIONS(361), + [anon_sym_c_char] = ACTIONS(361), + [anon_sym_c_schar] = ACTIONS(361), + [anon_sym_c_uchar] = ACTIONS(361), + [anon_sym_c_short] = ACTIONS(361), + [anon_sym_c_ushort] = ACTIONS(361), + [anon_sym_c_int] = ACTIONS(361), + [anon_sym_c_uint] = ACTIONS(361), + [anon_sym_c_long] = ACTIONS(361), + [anon_sym_c_ulong] = ACTIONS(361), + [anon_sym_c_longlong] = ACTIONS(361), + [anon_sym_c_ulonglong] = ACTIONS(361), + [anon_sym_c_float] = ACTIONS(361), + [anon_sym_c_double] = ACTIONS(361), + [anon_sym_c_longdouble] = ACTIONS(361), + [anon_sym_return] = ACTIONS(361), + [anon_sym_yield] = ACTIONS(361), + [anon_sym_COLON] = ACTIONS(363), + [anon_sym_break] = ACTIONS(361), + [anon_sym_continue] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(361), + [anon_sym_errdefer] = ACTIONS(361), + [anon_sym_if] = ACTIONS(361), + [anon_sym_else] = ACTIONS(361), + [anon_sym_while] = ACTIONS(361), + [anon_sym_expand] = ACTIONS(361), + [anon_sym_for] = ACTIONS(361), + [anon_sym_match] = ACTIONS(361), + [anon_sym_DOT_DOT] = ACTIONS(361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_orelse] = ACTIONS(361), + [anon_sym_catch] = ACTIONS(361), + [anon_sym_or] = ACTIONS(361), + [anon_sym_and] = ACTIONS(361), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(361), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT] = ACTIONS(361), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_AMP] = ACTIONS(363), + [anon_sym_xor] = ACTIONS(361), + [anon_sym_LT_LT] = ACTIONS(361), + [anon_sym_GT_GT] = ACTIONS(363), + [anon_sym_LT_LT_PIPE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(363), + [anon_sym_SLASH] = ACTIONS(363), + [anon_sym_TILDE] = ACTIONS(363), + [anon_sym_try] = ACTIONS(361), + [anon_sym_DOT] = ACTIONS(361), + [anon_sym_CARET] = ACTIONS(363), + [anon_sym_true] = ACTIONS(361), + [anon_sym_false] = ACTIONS(361), + [sym_none] = ACTIONS(361), + [sym_undefined] = ACTIONS(361), + [sym_sink] = ACTIONS(361), + [sym_integer] = ACTIONS(361), + [sym_float] = ACTIONS(363), + [anon_sym_DQUOTE] = ACTIONS(363), + [sym_multiline_string] = ACTIONS(363), + [sym_character] = ACTIONS(363), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(363), + }, + [STATE(747)] = { + [ts_builtin_sym_end] = ACTIONS(359), + [sym_identifier] = ACTIONS(357), + [anon_sym_import] = ACTIONS(357), + [anon_sym_test] = ACTIONS(357), + [anon_sym_hide] = ACTIONS(357), + [anon_sym_func] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_struct] = ACTIONS(357), + [anon_sym_LPAREN] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_PIPE] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(359), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_void] = ACTIONS(357), + [anon_sym_anyopaque] = ACTIONS(357), + [anon_sym_bool] = ACTIONS(357), + [anon_sym_int] = ACTIONS(357), + [anon_sym_uint] = ACTIONS(357), + [anon_sym_float] = ACTIONS(357), + [anon_sym_range] = ACTIONS(357), + [anon_sym_i8] = ACTIONS(357), + [anon_sym_i16] = ACTIONS(357), + [anon_sym_i32] = ACTIONS(357), + [anon_sym_i64] = ACTIONS(357), + [anon_sym_u8] = ACTIONS(357), + [anon_sym_u16] = ACTIONS(357), + [anon_sym_u32] = ACTIONS(357), + [anon_sym_u64] = ACTIONS(357), + [anon_sym_isize] = ACTIONS(357), + [anon_sym_usize] = ACTIONS(357), + [anon_sym_f32] = ACTIONS(357), + [anon_sym_f64] = ACTIONS(357), + [anon_sym_c_char] = ACTIONS(357), + [anon_sym_c_schar] = ACTIONS(357), + [anon_sym_c_uchar] = ACTIONS(357), + [anon_sym_c_short] = ACTIONS(357), + [anon_sym_c_ushort] = ACTIONS(357), + [anon_sym_c_int] = ACTIONS(357), + [anon_sym_c_uint] = ACTIONS(357), + [anon_sym_c_long] = ACTIONS(357), + [anon_sym_c_ulong] = ACTIONS(357), + [anon_sym_c_longlong] = ACTIONS(357), + [anon_sym_c_ulonglong] = ACTIONS(357), + [anon_sym_c_float] = ACTIONS(357), + [anon_sym_c_double] = ACTIONS(357), + [anon_sym_c_longdouble] = ACTIONS(357), + [anon_sym_return] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(357), + [anon_sym_COLON] = ACTIONS(359), + [anon_sym_break] = ACTIONS(357), + [anon_sym_continue] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(357), + [anon_sym_errdefer] = ACTIONS(357), + [anon_sym_if] = ACTIONS(357), + [anon_sym_else] = ACTIONS(357), + [anon_sym_while] = ACTIONS(357), + [anon_sym_expand] = ACTIONS(357), + [anon_sym_for] = ACTIONS(357), + [anon_sym_match] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(359), + [anon_sym_orelse] = ACTIONS(357), + [anon_sym_catch] = ACTIONS(357), + [anon_sym_or] = ACTIONS(357), + [anon_sym_and] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(359), + [anon_sym_BANG_EQ] = ACTIONS(359), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_LT_EQ] = ACTIONS(359), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(359), + [anon_sym_xor] = ACTIONS(357), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(359), + [anon_sym_LT_LT_PIPE] = ACTIONS(359), + [anon_sym_PLUS] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(359), + [anon_sym_TILDE] = ACTIONS(359), + [anon_sym_try] = ACTIONS(357), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(359), + [anon_sym_true] = ACTIONS(357), + [anon_sym_false] = ACTIONS(357), + [sym_none] = ACTIONS(357), + [sym_undefined] = ACTIONS(357), + [sym_sink] = ACTIONS(357), + [sym_integer] = ACTIONS(357), + [sym_float] = ACTIONS(359), + [anon_sym_DQUOTE] = ACTIONS(359), + [sym_multiline_string] = ACTIONS(359), + [sym_character] = ACTIONS(359), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(359), + }, + [STATE(748)] = { + [ts_builtin_sym_end] = ACTIONS(1041), + [sym_identifier] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1043), + [anon_sym_test] = ACTIONS(1043), + [anon_sym_hide] = ACTIONS(1043), + [anon_sym_func] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_void] = ACTIONS(1043), + [anon_sym_anyopaque] = ACTIONS(1043), + [anon_sym_bool] = ACTIONS(1043), + [anon_sym_int] = ACTIONS(1043), + [anon_sym_uint] = ACTIONS(1043), + [anon_sym_float] = ACTIONS(1043), + [anon_sym_range] = ACTIONS(1043), + [anon_sym_i8] = ACTIONS(1043), + [anon_sym_i16] = ACTIONS(1043), + [anon_sym_i32] = ACTIONS(1043), + [anon_sym_i64] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1043), + [anon_sym_u16] = ACTIONS(1043), + [anon_sym_u32] = ACTIONS(1043), + [anon_sym_u64] = ACTIONS(1043), + [anon_sym_isize] = ACTIONS(1043), + [anon_sym_usize] = ACTIONS(1043), + [anon_sym_f32] = ACTIONS(1043), + [anon_sym_f64] = ACTIONS(1043), + [anon_sym_c_char] = ACTIONS(1043), + [anon_sym_c_schar] = ACTIONS(1043), + [anon_sym_c_uchar] = ACTIONS(1043), + [anon_sym_c_short] = ACTIONS(1043), + [anon_sym_c_ushort] = ACTIONS(1043), + [anon_sym_c_int] = ACTIONS(1043), + [anon_sym_c_uint] = ACTIONS(1043), + [anon_sym_c_long] = ACTIONS(1043), + [anon_sym_c_ulong] = ACTIONS(1043), + [anon_sym_c_longlong] = ACTIONS(1043), + [anon_sym_c_ulonglong] = ACTIONS(1043), + [anon_sym_c_float] = ACTIONS(1043), + [anon_sym_c_double] = ACTIONS(1043), + [anon_sym_c_longdouble] = ACTIONS(1043), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_defer] = ACTIONS(1043), + [anon_sym_errdefer] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1043), + [anon_sym_expand] = ACTIONS(1043), + [anon_sym_for] = ACTIONS(1043), + [anon_sym_match] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1041), + [anon_sym_orelse] = ACTIONS(1043), + [anon_sym_catch] = ACTIONS(1043), + [anon_sym_or] = ACTIONS(1043), + [anon_sym_and] = ACTIONS(1043), + [anon_sym_EQ_EQ] = ACTIONS(1041), + [anon_sym_BANG_EQ] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1043), + [anon_sym_GT_EQ] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_xor] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_LT_LT_PIPE] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1043), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1043), + [anon_sym_false] = ACTIONS(1043), + [sym_none] = ACTIONS(1043), + [sym_undefined] = ACTIONS(1043), + [sym_sink] = ACTIONS(1043), + [sym_integer] = ACTIONS(1043), + [sym_float] = ACTIONS(1041), + [anon_sym_DQUOTE] = ACTIONS(1041), + [sym_multiline_string] = ACTIONS(1041), + [sym_character] = ACTIONS(1041), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1041), + }, + [STATE(749)] = { + [ts_builtin_sym_end] = ACTIONS(831), + [sym_identifier] = ACTIONS(833), + [anon_sym_import] = ACTIONS(833), + [anon_sym_test] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_func] = ACTIONS(833), + [anon_sym_BANG] = ACTIONS(833), + [anon_sym_struct] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_LBRACE] = ACTIONS(831), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_DASH] = ACTIONS(831), + [anon_sym_DOLLAR] = ACTIONS(831), + [anon_sym_PIPE] = ACTIONS(831), + [anon_sym_QMARK] = ACTIONS(831), + [anon_sym_STAR] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(831), + [anon_sym_void] = ACTIONS(833), + [anon_sym_anyopaque] = ACTIONS(833), + [anon_sym_bool] = ACTIONS(833), + [anon_sym_int] = ACTIONS(833), + [anon_sym_uint] = ACTIONS(833), + [anon_sym_float] = ACTIONS(833), + [anon_sym_range] = ACTIONS(833), + [anon_sym_i8] = ACTIONS(833), + [anon_sym_i16] = ACTIONS(833), + [anon_sym_i32] = ACTIONS(833), + [anon_sym_i64] = ACTIONS(833), + [anon_sym_u8] = ACTIONS(833), + [anon_sym_u16] = ACTIONS(833), + [anon_sym_u32] = ACTIONS(833), + [anon_sym_u64] = ACTIONS(833), + [anon_sym_isize] = ACTIONS(833), + [anon_sym_usize] = ACTIONS(833), + [anon_sym_f32] = ACTIONS(833), + [anon_sym_f64] = ACTIONS(833), + [anon_sym_c_char] = ACTIONS(833), + [anon_sym_c_schar] = ACTIONS(833), + [anon_sym_c_uchar] = ACTIONS(833), + [anon_sym_c_short] = ACTIONS(833), + [anon_sym_c_ushort] = ACTIONS(833), + [anon_sym_c_int] = ACTIONS(833), + [anon_sym_c_uint] = ACTIONS(833), + [anon_sym_c_long] = ACTIONS(833), + [anon_sym_c_ulong] = ACTIONS(833), + [anon_sym_c_longlong] = ACTIONS(833), + [anon_sym_c_ulonglong] = ACTIONS(833), + [anon_sym_c_float] = ACTIONS(833), + [anon_sym_c_double] = ACTIONS(833), + [anon_sym_c_longdouble] = ACTIONS(833), + [anon_sym_return] = ACTIONS(833), + [anon_sym_yield] = ACTIONS(833), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_break] = ACTIONS(833), + [anon_sym_continue] = ACTIONS(833), + [anon_sym_defer] = ACTIONS(833), + [anon_sym_errdefer] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_else] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_expand] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_match] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(831), + [anon_sym_orelse] = ACTIONS(833), + [anon_sym_catch] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(831), + [anon_sym_BANG_EQ] = ACTIONS(831), + [anon_sym_LT] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(831), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(831), + [anon_sym_AMP] = ACTIONS(831), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_LT_LT] = ACTIONS(833), + [anon_sym_GT_GT] = ACTIONS(831), + [anon_sym_LT_LT_PIPE] = ACTIONS(831), + [anon_sym_PLUS] = ACTIONS(831), + [anon_sym_SLASH] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_try] = ACTIONS(833), + [anon_sym_DOT] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(831), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [sym_none] = ACTIONS(833), + [sym_undefined] = ACTIONS(833), + [sym_sink] = ACTIONS(833), + [sym_integer] = ACTIONS(833), + [sym_float] = ACTIONS(831), + [anon_sym_DQUOTE] = ACTIONS(831), + [sym_multiline_string] = ACTIONS(831), + [sym_character] = ACTIONS(831), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(831), + }, + [STATE(750)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1537), + [anon_sym_import] = ACTIONS(1713), + [anon_sym_test] = ACTIONS(1713), + [anon_sym_hide] = ACTIONS(1713), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), }, - [STATE(698)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(1239), - [sym_labeled_block] = STATE(1239), - [sym_if_statement] = STATE(1239), - [sym_while_statement] = STATE(1239), - [sym_for_statement] = STATE(1239), - [sym_match_statement] = STATE(1239), - [sym__value] = STATE(1239), - [sym_expression] = STATE(1487), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1094), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), + [STATE(751)] = { + [sym_argument_list] = STATE(99), + [sym_identifier] = ACTIONS(1593), + [anon_sym_func] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_QMARK] = ACTIONS(459), + [anon_sym_STAR] = ACTIONS(461), + [anon_sym_LBRACK] = ACTIONS(463), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_anyopaque] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_range] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_c_char] = ACTIONS(1593), + [anon_sym_c_schar] = ACTIONS(1593), + [anon_sym_c_uchar] = ACTIONS(1593), + [anon_sym_c_short] = ACTIONS(1593), + [anon_sym_c_ushort] = ACTIONS(1593), + [anon_sym_c_int] = ACTIONS(1593), + [anon_sym_c_uint] = ACTIONS(1593), + [anon_sym_c_long] = ACTIONS(1593), + [anon_sym_c_ulong] = ACTIONS(1593), + [anon_sym_c_longlong] = ACTIONS(1593), + [anon_sym_c_ulonglong] = ACTIONS(1593), + [anon_sym_c_float] = ACTIONS(1593), + [anon_sym_c_double] = ACTIONS(1593), + [anon_sym_c_longdouble] = ACTIONS(1593), + [anon_sym_PLUS_EQ] = ACTIONS(1736), + [anon_sym_DASH_EQ] = ACTIONS(1736), + [anon_sym_STAR_EQ] = ACTIONS(1736), + [anon_sym_SLASH_EQ] = ACTIONS(1736), + [anon_sym_AMP_EQ] = ACTIONS(1736), + [anon_sym_PIPE_EQ] = ACTIONS(1736), + [anon_sym_xor_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_EQ] = ACTIONS(1736), + [anon_sym_GT_GT_EQ] = ACTIONS(1736), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1736), + [anon_sym_else] = ACTIONS(1593), + [anon_sym_expand] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1603), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_orelse] = ACTIONS(553), + [anon_sym_catch] = ACTIONS(555), + [anon_sym_or] = ACTIONS(465), + [anon_sym_and] = ACTIONS(467), + [anon_sym_EQ_EQ] = ACTIONS(469), + [anon_sym_BANG_EQ] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_LT_EQ] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_EQ] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(457), + [anon_sym_xor] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(473), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_LT_LT_PIPE] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(461), + [anon_sym_TILDE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_DOT] = ACTIONS(475), + [anon_sym_CARET] = ACTIONS(459), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [sym_none] = ACTIONS(1593), + [sym_undefined] = ACTIONS(1593), + [sym_sink] = ACTIONS(1593), + [sym_integer] = ACTIONS(1593), + [sym_float] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym_multiline_string] = ACTIONS(1597), + [sym_character] = ACTIONS(1597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1597), + }, + [STATE(752)] = { + [sym_type] = STATE(3342), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(753)] = { + [aux_sym_import_declaration_repeat1] = STATE(3280), + [aux_sym_capture_list_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_LT_LT_PIPE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1747), + }, + [STATE(754)] = { + [aux_sym_import_declaration_repeat1] = STATE(3280), + [aux_sym_capture_list_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_LT_LT_PIPE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1747), + }, + [STATE(755)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_else] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(756)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_else] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(757)] = { + [sym_variant_payload] = STATE(727), + [sym_identifier] = ACTIONS(483), + [anon_sym_func] = ACTIONS(483), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_struct] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(481), + [anon_sym_QMARK] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(481), + [anon_sym_LBRACK] = ACTIONS(481), + [anon_sym_void] = ACTIONS(483), + [anon_sym_anyopaque] = ACTIONS(483), + [anon_sym_bool] = ACTIONS(483), + [anon_sym_int] = ACTIONS(483), + [anon_sym_uint] = ACTIONS(483), + [anon_sym_float] = ACTIONS(483), + [anon_sym_range] = ACTIONS(483), + [anon_sym_i8] = ACTIONS(483), + [anon_sym_i16] = ACTIONS(483), + [anon_sym_i32] = ACTIONS(483), + [anon_sym_i64] = ACTIONS(483), + [anon_sym_u8] = ACTIONS(483), + [anon_sym_u16] = ACTIONS(483), + [anon_sym_u32] = ACTIONS(483), + [anon_sym_u64] = ACTIONS(483), + [anon_sym_isize] = ACTIONS(483), + [anon_sym_usize] = ACTIONS(483), + [anon_sym_f32] = ACTIONS(483), + [anon_sym_f64] = ACTIONS(483), + [anon_sym_c_char] = ACTIONS(483), + [anon_sym_c_schar] = ACTIONS(483), + [anon_sym_c_uchar] = ACTIONS(483), + [anon_sym_c_short] = ACTIONS(483), + [anon_sym_c_ushort] = ACTIONS(483), + [anon_sym_c_int] = ACTIONS(483), + [anon_sym_c_uint] = ACTIONS(483), + [anon_sym_c_long] = ACTIONS(483), + [anon_sym_c_ulong] = ACTIONS(483), + [anon_sym_c_longlong] = ACTIONS(483), + [anon_sym_c_ulonglong] = ACTIONS(483), + [anon_sym_c_float] = ACTIONS(483), + [anon_sym_c_double] = ACTIONS(483), + [anon_sym_c_longdouble] = ACTIONS(483), + [anon_sym_return] = ACTIONS(483), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_COLON] = ACTIONS(481), + [anon_sym_break] = ACTIONS(483), + [anon_sym_continue] = ACTIONS(483), + [anon_sym_defer] = ACTIONS(483), + [anon_sym_errdefer] = ACTIONS(483), + [anon_sym_if] = ACTIONS(483), + [anon_sym_else] = ACTIONS(483), + [anon_sym_while] = ACTIONS(483), + [anon_sym_expand] = ACTIONS(483), + [anon_sym_for] = ACTIONS(483), + [anon_sym_match] = ACTIONS(483), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(481), + [anon_sym_orelse] = ACTIONS(483), + [anon_sym_catch] = ACTIONS(483), + [anon_sym_or] = ACTIONS(483), + [anon_sym_and] = ACTIONS(483), + [anon_sym_EQ_EQ] = ACTIONS(481), + [anon_sym_BANG_EQ] = ACTIONS(481), + [anon_sym_LT] = ACTIONS(483), + [anon_sym_LT_EQ] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(483), + [anon_sym_GT_EQ] = ACTIONS(481), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_xor] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(483), + [anon_sym_GT_GT] = ACTIONS(481), + [anon_sym_LT_LT_PIPE] = ACTIONS(481), + [anon_sym_PLUS] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_try] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(483), + [anon_sym_CARET] = ACTIONS(481), + [anon_sym_true] = ACTIONS(483), + [anon_sym_false] = ACTIONS(483), + [sym_none] = ACTIONS(483), + [sym_undefined] = ACTIONS(483), + [sym_sink] = ACTIONS(483), + [sym_integer] = ACTIONS(483), + [sym_float] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(481), + [sym_multiline_string] = ACTIONS(481), + [sym_character] = ACTIONS(481), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(481), + }, + [STATE(758)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(851), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1765), + }, + [STATE(759)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(71), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(760)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(761)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(563), + [anon_sym_anyopaque] = ACTIONS(563), + [anon_sym_bool] = ACTIONS(563), + [anon_sym_int] = ACTIONS(563), + [anon_sym_uint] = ACTIONS(563), + [anon_sym_float] = ACTIONS(563), + [anon_sym_range] = ACTIONS(563), + [anon_sym_i8] = ACTIONS(563), + [anon_sym_i16] = ACTIONS(563), + [anon_sym_i32] = ACTIONS(563), + [anon_sym_i64] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(563), + [anon_sym_u16] = ACTIONS(563), + [anon_sym_u32] = ACTIONS(563), + [anon_sym_u64] = ACTIONS(563), + [anon_sym_isize] = ACTIONS(563), + [anon_sym_usize] = ACTIONS(563), + [anon_sym_f32] = ACTIONS(563), + [anon_sym_f64] = ACTIONS(563), + [anon_sym_c_char] = ACTIONS(563), + [anon_sym_c_schar] = ACTIONS(563), + [anon_sym_c_uchar] = ACTIONS(563), + [anon_sym_c_short] = ACTIONS(563), + [anon_sym_c_ushort] = ACTIONS(563), + [anon_sym_c_int] = ACTIONS(563), + [anon_sym_c_uint] = ACTIONS(563), + [anon_sym_c_long] = ACTIONS(563), + [anon_sym_c_ulong] = ACTIONS(563), + [anon_sym_c_longlong] = ACTIONS(563), + [anon_sym_c_ulonglong] = ACTIONS(563), + [anon_sym_c_float] = ACTIONS(563), + [anon_sym_c_double] = ACTIONS(563), + [anon_sym_c_longdouble] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_errdefer] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_expand] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(561), + [anon_sym_orelse] = ACTIONS(563), + [anon_sym_catch] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_try] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(563), + [anon_sym_false] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [sym_sink] = ACTIONS(563), + [sym_integer] = ACTIONS(563), + [sym_float] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_multiline_string] = ACTIONS(561), + [sym_character] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(561), + }, + [STATE(762)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(563), + [anon_sym_func] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(563), + [anon_sym_anyopaque] = ACTIONS(563), + [anon_sym_bool] = ACTIONS(563), + [anon_sym_int] = ACTIONS(563), + [anon_sym_uint] = ACTIONS(563), + [anon_sym_float] = ACTIONS(563), + [anon_sym_range] = ACTIONS(563), + [anon_sym_i8] = ACTIONS(563), + [anon_sym_i16] = ACTIONS(563), + [anon_sym_i32] = ACTIONS(563), + [anon_sym_i64] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(563), + [anon_sym_u16] = ACTIONS(563), + [anon_sym_u32] = ACTIONS(563), + [anon_sym_u64] = ACTIONS(563), + [anon_sym_isize] = ACTIONS(563), + [anon_sym_usize] = ACTIONS(563), + [anon_sym_f32] = ACTIONS(563), + [anon_sym_f64] = ACTIONS(563), + [anon_sym_c_char] = ACTIONS(563), + [anon_sym_c_schar] = ACTIONS(563), + [anon_sym_c_uchar] = ACTIONS(563), + [anon_sym_c_short] = ACTIONS(563), + [anon_sym_c_ushort] = ACTIONS(563), + [anon_sym_c_int] = ACTIONS(563), + [anon_sym_c_uint] = ACTIONS(563), + [anon_sym_c_long] = ACTIONS(563), + [anon_sym_c_ulong] = ACTIONS(563), + [anon_sym_c_longlong] = ACTIONS(563), + [anon_sym_c_ulonglong] = ACTIONS(563), + [anon_sym_c_float] = ACTIONS(563), + [anon_sym_c_double] = ACTIONS(563), + [anon_sym_c_longdouble] = ACTIONS(563), + [anon_sym_return] = ACTIONS(563), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_break] = ACTIONS(563), + [anon_sym_continue] = ACTIONS(563), + [anon_sym_defer] = ACTIONS(563), + [anon_sym_errdefer] = ACTIONS(563), + [anon_sym_if] = ACTIONS(563), + [anon_sym_else] = ACTIONS(563), + [anon_sym_while] = ACTIONS(563), + [anon_sym_expand] = ACTIONS(563), + [anon_sym_for] = ACTIONS(563), + [anon_sym_match] = ACTIONS(563), + [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(561), + [anon_sym_orelse] = ACTIONS(563), + [anon_sym_catch] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_and] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(561), + [anon_sym_try] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(563), + [anon_sym_false] = ACTIONS(563), + [sym_none] = ACTIONS(563), + [sym_undefined] = ACTIONS(563), + [sym_sink] = ACTIONS(563), + [sym_integer] = ACTIONS(563), + [sym_float] = ACTIONS(561), + [anon_sym_DQUOTE] = ACTIONS(561), + [sym_multiline_string] = ACTIONS(561), + [sym_character] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(561), + }, + [STATE(763)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(764)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_LT_LT_PIPE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(765)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(766)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(777), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1775), + }, + [STATE(767)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(778), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1777), + }, + [STATE(768)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(769)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_LT_LT_PIPE] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(770)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(771)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(69), + [anon_sym_catch] = ACTIONS(71), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(772)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(73), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(773)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(479), + [anon_sym_func] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(479), + [anon_sym_anyopaque] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_uint] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_range] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_c_char] = ACTIONS(479), + [anon_sym_c_schar] = ACTIONS(479), + [anon_sym_c_uchar] = ACTIONS(479), + [anon_sym_c_short] = ACTIONS(479), + [anon_sym_c_ushort] = ACTIONS(479), + [anon_sym_c_int] = ACTIONS(479), + [anon_sym_c_uint] = ACTIONS(479), + [anon_sym_c_long] = ACTIONS(479), + [anon_sym_c_ulong] = ACTIONS(479), + [anon_sym_c_longlong] = ACTIONS(479), + [anon_sym_c_ulonglong] = ACTIONS(479), + [anon_sym_c_float] = ACTIONS(479), + [anon_sym_c_double] = ACTIONS(479), + [anon_sym_c_longdouble] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_yield] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_defer] = ACTIONS(479), + [anon_sym_errdefer] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_expand] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(477), + [anon_sym_orelse] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_or] = ACTIONS(479), + [anon_sym_and] = ACTIONS(75), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_try] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [sym_none] = ACTIONS(479), + [sym_undefined] = ACTIONS(479), + [sym_sink] = ACTIONS(479), + [sym_integer] = ACTIONS(479), + [sym_float] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(477), + [sym_multiline_string] = ACTIONS(477), + [sym_character] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(477), + }, + [STATE(774)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(479), + [anon_sym_func] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_struct] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(477), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(477), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(479), + [anon_sym_anyopaque] = ACTIONS(479), + [anon_sym_bool] = ACTIONS(479), + [anon_sym_int] = ACTIONS(479), + [anon_sym_uint] = ACTIONS(479), + [anon_sym_float] = ACTIONS(479), + [anon_sym_range] = ACTIONS(479), + [anon_sym_i8] = ACTIONS(479), + [anon_sym_i16] = ACTIONS(479), + [anon_sym_i32] = ACTIONS(479), + [anon_sym_i64] = ACTIONS(479), + [anon_sym_u8] = ACTIONS(479), + [anon_sym_u16] = ACTIONS(479), + [anon_sym_u32] = ACTIONS(479), + [anon_sym_u64] = ACTIONS(479), + [anon_sym_isize] = ACTIONS(479), + [anon_sym_usize] = ACTIONS(479), + [anon_sym_f32] = ACTIONS(479), + [anon_sym_f64] = ACTIONS(479), + [anon_sym_c_char] = ACTIONS(479), + [anon_sym_c_schar] = ACTIONS(479), + [anon_sym_c_uchar] = ACTIONS(479), + [anon_sym_c_short] = ACTIONS(479), + [anon_sym_c_ushort] = ACTIONS(479), + [anon_sym_c_int] = ACTIONS(479), + [anon_sym_c_uint] = ACTIONS(479), + [anon_sym_c_long] = ACTIONS(479), + [anon_sym_c_ulong] = ACTIONS(479), + [anon_sym_c_longlong] = ACTIONS(479), + [anon_sym_c_ulonglong] = ACTIONS(479), + [anon_sym_c_float] = ACTIONS(479), + [anon_sym_c_double] = ACTIONS(479), + [anon_sym_c_longdouble] = ACTIONS(479), + [anon_sym_return] = ACTIONS(479), + [anon_sym_yield] = ACTIONS(479), + [anon_sym_break] = ACTIONS(479), + [anon_sym_continue] = ACTIONS(479), + [anon_sym_defer] = ACTIONS(479), + [anon_sym_errdefer] = ACTIONS(479), + [anon_sym_if] = ACTIONS(479), + [anon_sym_else] = ACTIONS(479), + [anon_sym_while] = ACTIONS(479), + [anon_sym_expand] = ACTIONS(479), + [anon_sym_for] = ACTIONS(479), + [anon_sym_match] = ACTIONS(479), + [anon_sym_DOT_DOT] = ACTIONS(479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(477), + [anon_sym_orelse] = ACTIONS(479), + [anon_sym_catch] = ACTIONS(479), + [anon_sym_or] = ACTIONS(479), + [anon_sym_and] = ACTIONS(479), + [anon_sym_EQ_EQ] = ACTIONS(77), + [anon_sym_BANG_EQ] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(79), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(79), + [anon_sym_GT_EQ] = ACTIONS(77), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(477), + [anon_sym_try] = ACTIONS(479), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(479), + [anon_sym_false] = ACTIONS(479), + [sym_none] = ACTIONS(479), + [sym_undefined] = ACTIONS(479), + [sym_sink] = ACTIONS(479), + [sym_integer] = ACTIONS(479), + [sym_float] = ACTIONS(477), + [anon_sym_DQUOTE] = ACTIONS(477), + [sym_multiline_string] = ACTIONS(477), + [sym_character] = ACTIONS(477), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(477), + }, + [STATE(775)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(776)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(451), + [anon_sym_func] = ACTIONS(451), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(449), + [anon_sym_PIPE] = ACTIONS(449), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(451), + [anon_sym_anyopaque] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_int] = ACTIONS(451), + [anon_sym_uint] = ACTIONS(451), + [anon_sym_float] = ACTIONS(451), + [anon_sym_range] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_c_char] = ACTIONS(451), + [anon_sym_c_schar] = ACTIONS(451), + [anon_sym_c_uchar] = ACTIONS(451), + [anon_sym_c_short] = ACTIONS(451), + [anon_sym_c_ushort] = ACTIONS(451), + [anon_sym_c_int] = ACTIONS(451), + [anon_sym_c_uint] = ACTIONS(451), + [anon_sym_c_long] = ACTIONS(451), + [anon_sym_c_ulong] = ACTIONS(451), + [anon_sym_c_longlong] = ACTIONS(451), + [anon_sym_c_ulonglong] = ACTIONS(451), + [anon_sym_c_float] = ACTIONS(451), + [anon_sym_c_double] = ACTIONS(451), + [anon_sym_c_longdouble] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_defer] = ACTIONS(451), + [anon_sym_errdefer] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_expand] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(449), + [anon_sym_orelse] = ACTIONS(451), + [anon_sym_catch] = ACTIONS(451), + [anon_sym_or] = ACTIONS(451), + [anon_sym_and] = ACTIONS(451), + [anon_sym_EQ_EQ] = ACTIONS(449), + [anon_sym_BANG_EQ] = ACTIONS(449), + [anon_sym_LT] = ACTIONS(451), + [anon_sym_LT_EQ] = ACTIONS(449), + [anon_sym_GT] = ACTIONS(451), + [anon_sym_GT_EQ] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(449), + [anon_sym_xor] = ACTIONS(451), + [anon_sym_LT_LT] = ACTIONS(451), + [anon_sym_GT_GT] = ACTIONS(449), + [anon_sym_LT_LT_PIPE] = ACTIONS(449), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(449), + [anon_sym_try] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_none] = ACTIONS(451), + [sym_undefined] = ACTIONS(451), + [sym_sink] = ACTIONS(451), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(449), + [anon_sym_DQUOTE] = ACTIONS(449), + [sym_multiline_string] = ACTIONS(449), + [sym_character] = ACTIONS(449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(449), + }, + [STATE(777)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(778)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(779)] = { + [sym_identifier] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_LT_LT_PIPE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(780)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(796), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1781), + }, + [STATE(781)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(805), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1783), + }, + [STATE(782)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2571), + [sym_labeled_block] = STATE(2571), + [sym_if_statement] = STATE(2571), + [sym_while_statement] = STATE(2571), + [sym_for_statement] = STATE(2571), + [sym_match_statement] = STATE(2571), + [sym__value] = STATE(2571), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1785), + }, + [STATE(783)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2557), + [sym_labeled_block] = STATE(2557), + [sym_if_statement] = STATE(2557), + [sym_while_statement] = STATE(2557), + [sym_for_statement] = STATE(2557), + [sym_match_statement] = STATE(2557), + [sym__value] = STATE(2557), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(810), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1787), + }, + [STATE(784)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1789), + }, + [STATE(785)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2555), + [sym_labeled_block] = STATE(2555), + [sym_if_statement] = STATE(2555), + [sym_while_statement] = STATE(2555), + [sym_for_statement] = STATE(2555), + [sym_match_statement] = STATE(2555), + [sym__value] = STATE(2555), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(786)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2570), + [sym_labeled_block] = STATE(2570), + [sym_if_statement] = STATE(2570), + [sym_while_statement] = STATE(2570), + [sym_for_statement] = STATE(2570), + [sym_match_statement] = STATE(2570), + [sym__value] = STATE(2570), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(813), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1791), + }, + [STATE(787)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2574), + [sym_labeled_block] = STATE(2574), + [sym_if_statement] = STATE(2574), + [sym_while_statement] = STATE(2574), + [sym_for_statement] = STATE(2574), + [sym_match_statement] = STATE(2574), + [sym__value] = STATE(2574), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(817), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1793), + }, + [STATE(788)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(858), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1795), + }, + [STATE(789)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), [anon_sym_if] = ACTIONS(55), [anon_sym_while] = ACTIONS(57), [anon_sym_expand] = ACTIONS(59), [anon_sym_for] = ACTIONS(61), [anon_sym_match] = ACTIONS(63), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [STATE(699)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1627), - [anon_sym_func] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1627), - [anon_sym_struct] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1629), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_anyopaque] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_range] = ACTIONS(1627), - [anon_sym_i8] = ACTIONS(1627), - [anon_sym_i16] = ACTIONS(1627), - [anon_sym_i32] = ACTIONS(1627), - [anon_sym_i64] = ACTIONS(1627), - [anon_sym_u8] = ACTIONS(1627), - [anon_sym_u16] = ACTIONS(1627), - [anon_sym_u32] = ACTIONS(1627), - [anon_sym_u64] = ACTIONS(1627), - [anon_sym_isize] = ACTIONS(1627), - [anon_sym_usize] = ACTIONS(1627), - [anon_sym_f32] = ACTIONS(1627), - [anon_sym_f64] = ACTIONS(1627), - [anon_sym_c_char] = ACTIONS(1627), - [anon_sym_c_schar] = ACTIONS(1627), - [anon_sym_c_uchar] = ACTIONS(1627), - [anon_sym_c_short] = ACTIONS(1627), - [anon_sym_c_ushort] = ACTIONS(1627), - [anon_sym_c_int] = ACTIONS(1627), - [anon_sym_c_uint] = ACTIONS(1627), - [anon_sym_c_long] = ACTIONS(1627), - [anon_sym_c_ulong] = ACTIONS(1627), - [anon_sym_c_longlong] = ACTIONS(1627), - [anon_sym_c_ulonglong] = ACTIONS(1627), - [anon_sym_c_float] = ACTIONS(1627), - [anon_sym_c_double] = ACTIONS(1627), - [anon_sym_c_longdouble] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_yield] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_errdefer] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_else] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_expand] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_SLASH] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1627), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [sym_none] = ACTIONS(1627), - [sym_undefined] = ACTIONS(1627), - [sym_sink] = ACTIONS(1627), - [sym_integer] = ACTIONS(1627), - [sym_float] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_multiline_string] = ACTIONS(1629), - [sym_character] = ACTIONS(1629), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1629), - }, - [STATE(700)] = { - [sym_identifier] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_LBRACK] = ACTIONS(1011), - [anon_sym_void] = ACTIONS(1006), - [anon_sym_anyopaque] = ACTIONS(1006), - [anon_sym_bool] = ACTIONS(1006), - [anon_sym_int] = ACTIONS(1006), - [anon_sym_uint] = ACTIONS(1006), - [anon_sym_float] = ACTIONS(1006), - [anon_sym_range] = ACTIONS(1006), - [anon_sym_i8] = ACTIONS(1006), - [anon_sym_i16] = ACTIONS(1006), - [anon_sym_i32] = ACTIONS(1006), - [anon_sym_i64] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1006), - [anon_sym_u16] = ACTIONS(1006), - [anon_sym_u32] = ACTIONS(1006), - [anon_sym_u64] = ACTIONS(1006), - [anon_sym_isize] = ACTIONS(1006), - [anon_sym_usize] = ACTIONS(1006), - [anon_sym_f32] = ACTIONS(1006), - [anon_sym_f64] = ACTIONS(1006), - [anon_sym_c_char] = ACTIONS(1006), - [anon_sym_c_schar] = ACTIONS(1006), - [anon_sym_c_uchar] = ACTIONS(1006), - [anon_sym_c_short] = ACTIONS(1006), - [anon_sym_c_ushort] = ACTIONS(1006), - [anon_sym_c_int] = ACTIONS(1006), - [anon_sym_c_uint] = ACTIONS(1006), - [anon_sym_c_long] = ACTIONS(1006), - [anon_sym_c_ulong] = ACTIONS(1006), - [anon_sym_c_longlong] = ACTIONS(1006), - [anon_sym_c_ulonglong] = ACTIONS(1006), - [anon_sym_c_float] = ACTIONS(1006), - [anon_sym_c_double] = ACTIONS(1006), - [anon_sym_c_longdouble] = ACTIONS(1006), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1635), - [anon_sym_break] = ACTIONS(1006), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_defer] = ACTIONS(1006), - [anon_sym_errdefer] = ACTIONS(1006), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_expand] = ACTIONS(1006), - [anon_sym_for] = ACTIONS(1006), - [anon_sym_match] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1006), - [anon_sym_false] = ACTIONS(1006), - [sym_none] = ACTIONS(1006), - [sym_undefined] = ACTIONS(1006), - [sym_sink] = ACTIONS(1006), - [sym_integer] = ACTIONS(1006), - [sym_float] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym_multiline_string] = ACTIONS(1011), - [sym_character] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(701)] = { - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1637), - [anon_sym_import] = ACTIONS(1637), - [anon_sym_func] = ACTIONS(1637), - [anon_sym_c_func] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_c_struct] = ACTIONS(1637), - [sym_opaque_type] = ACTIONS(1637), - [anon_sym_distinct] = ACTIONS(1637), - [anon_sym_alias] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_enum] = ACTIONS(1637), - [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_DOT_DOT_DOT] = ACTIONS(1639), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_QMARK] = ACTIONS(1639), - [anon_sym_AT] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_RBRACK] = ACTIONS(1639), - [anon_sym_void] = 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_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_AMP] = ACTIONS(1639), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_DOT] = ACTIONS(1637), - [anon_sym_true] = ACTIONS(1637), - [anon_sym_false] = ACTIONS(1637), - [sym_none] = ACTIONS(1637), - [sym_undefined] = ACTIONS(1637), - [sym_sink] = ACTIONS(1637), - [sym_integer] = ACTIONS(1637), - [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(1641), - }, - [STATE(702)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1503), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1652), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1660), - }, - [STATE(703)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(708), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(708), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1676), - }, - [STATE(704)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(708), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(708), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1676), - }, - [STATE(705)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(708), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(708), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1676), - }, - [STATE(706)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(704), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1682), - }, - [STATE(707)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1503), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1684), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1660), - }, - [STATE(708)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(708), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(708), - [sym_identifier] = ACTIONS(1686), - [anon_sym_func] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1701), - [anon_sym_RBRACE] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1712), - [anon_sym_anyopaque] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_int] = ACTIONS(1712), - [anon_sym_uint] = ACTIONS(1712), - [anon_sym_float] = ACTIONS(1712), - [anon_sym_range] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_c_char] = ACTIONS(1712), - [anon_sym_c_schar] = ACTIONS(1712), - [anon_sym_c_uchar] = ACTIONS(1712), - [anon_sym_c_short] = ACTIONS(1712), - [anon_sym_c_ushort] = ACTIONS(1712), - [anon_sym_c_int] = ACTIONS(1712), - [anon_sym_c_uint] = ACTIONS(1712), - [anon_sym_c_long] = ACTIONS(1712), - [anon_sym_c_ulong] = ACTIONS(1712), - [anon_sym_c_longlong] = ACTIONS(1712), - [anon_sym_c_ulonglong] = ACTIONS(1712), - [anon_sym_c_float] = ACTIONS(1712), - [anon_sym_c_double] = ACTIONS(1712), - [anon_sym_c_longdouble] = ACTIONS(1712), - [anon_sym_else] = ACTIONS(1715), - [anon_sym_expand] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1724), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [sym_none] = ACTIONS(1730), - [sym_undefined] = ACTIONS(1730), - [sym_sink] = ACTIONS(1730), - [sym_integer] = ACTIONS(1730), - [sym_float] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1736), - [sym_multiline_string] = ACTIONS(1733), - [sym_character] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), - }, - [STATE(709)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(708), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(708), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1676), - }, - [STATE(710)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(705), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(705), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1746), - }, - [STATE(711)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1501), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(712), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1758), - }, - [STATE(712)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1503), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1305), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1760), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1660), - }, - [STATE(713)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1501), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(707), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1762), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1764), - }, - [STATE(714)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1501), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(702), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1768), - }, - [STATE(715)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(709), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(709), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1772), - }, - [STATE(716)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_match_arm] = STATE(703), - [sym_expression] = STATE(1488), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_match_statement_repeat1] = STATE(703), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_expand] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1774), - }, - [STATE(717)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1494), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1652), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1776), - }, - [STATE(718)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1491), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(727), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1762), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1778), - }, - [STATE(719)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1496), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(720), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1752), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1780), - }, - [STATE(720)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1497), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1760), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1776), - }, - [STATE(721)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1502), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(722), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(1786), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1788), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1790), - }, - [STATE(722)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1500), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1798), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1800), - }, - [STATE(723)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1498), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(724), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(1802), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1788), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1804), - }, - [STATE(724)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1499), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1806), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1798), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1800), - }, - [STATE(725)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1529), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1798), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1800), - }, - [STATE(726)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1493), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(717), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_RBRACK] = ACTIONS(1766), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1756), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1810), - }, - [STATE(727)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1495), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1308), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_RBRACK] = ACTIONS(1684), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1658), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1776), - }, - [STATE(728)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1535), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(725), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(1788), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1814), - }, - [STATE(729)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1540), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(2100), - [aux_sym_tuple_literal_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1818), - }, - [STATE(730)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2178), - [sym_expression_statement] = STATE(2178), - [sym_expression] = STATE(1484), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(731)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1554), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2139), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(732)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2094), - [sym_expression_statement] = STATE(2094), - [sym_expression] = STATE(1483), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(743), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1824), - }, - [STATE(733)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(734)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(737), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1826), - }, - [STATE(735)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2085), - [sym_expression_statement] = STATE(2085), - [sym_expression] = STATE(1484), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(736)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1543), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(760), - [aux_sym_tuple_literal_repeat1] = STATE(729), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1830), - }, - [STATE(737)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1554), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2139), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(738)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2187), - [sym_expression_statement] = STATE(2187), - [sym_expression] = STATE(1483), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(735), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1834), - }, - [STATE(739)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(1748), - [sym_expression_statement] = STATE(1748), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(740)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(1739), - [sym_expression_statement] = STATE(1739), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(757), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1842), - }, - [STATE(741)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1505), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(1778), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(748), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1846), - }, - [STATE(742)] = { - [sym_argument_list] = STATE(507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_func] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(872), - [anon_sym_LBRACE] = ACTIONS(1513), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_DOLLAR] = ACTIONS(1513), - [anon_sym_QMARK] = ACTIONS(35), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1180), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_anyopaque] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_int] = ACTIONS(1509), - [anon_sym_uint] = ACTIONS(1509), - [anon_sym_float] = ACTIONS(1509), - [anon_sym_range] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_c_char] = ACTIONS(1509), - [anon_sym_c_schar] = ACTIONS(1509), - [anon_sym_c_uchar] = ACTIONS(1509), - [anon_sym_c_short] = ACTIONS(1509), - [anon_sym_c_ushort] = ACTIONS(1509), - [anon_sym_c_int] = ACTIONS(1509), - [anon_sym_c_uint] = ACTIONS(1509), - [anon_sym_c_long] = ACTIONS(1509), - [anon_sym_c_ulong] = ACTIONS(1509), - [anon_sym_c_longlong] = ACTIONS(1509), - [anon_sym_c_ulonglong] = ACTIONS(1509), - [anon_sym_c_float] = ACTIONS(1509), - [anon_sym_c_double] = ACTIONS(1509), - [anon_sym_c_longdouble] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1850), - [anon_sym_DASH_EQ] = ACTIONS(1850), - [anon_sym_STAR_EQ] = ACTIONS(1850), - [anon_sym_SLASH_EQ] = ACTIONS(1850), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_expand] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_orelse] = ACTIONS(1499), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1495), - [anon_sym_BANG_EQ] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_SLASH] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), - [sym_none] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1509), - [sym_sink] = ACTIONS(1509), - [sym_integer] = ACTIONS(1509), - [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(743)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2121), - [sym_expression_statement] = STATE(2121), - [sym_expression] = STATE(1484), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(744)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2128), - [sym_expression_statement] = STATE(2128), - [sym_expression] = STATE(1484), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(745)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1549), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2117), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(733), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1854), - }, - [STATE(746)] = { - [sym_type] = STATE(2206), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1856), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(747)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1556), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_keyed_field_initializer] = STATE(1771), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1858), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(748)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1504), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(1766), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(749)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1549), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2117), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(765), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1866), - }, - [STATE(750)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1543), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1326), - [aux_sym_tuple_literal_repeat1] = STATE(729), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1868), - }, - [STATE(751)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1872), - }, - [STATE(752)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1549), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2117), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(763), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1874), - }, - [STATE(753)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2134), - [sym_expression_statement] = STATE(2134), - [sym_expression] = STATE(1483), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(730), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1876), - }, - [STATE(754)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1543), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(2143), - [aux_sym_tuple_literal_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1878), - }, - [STATE(755)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(2116), - [sym_expression_statement] = STATE(2116), - [sym_expression] = STATE(1483), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(744), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1880), - }, - [STATE(756)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1538), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(2053), - [aux_sym_tuple_literal_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1884), - }, - [STATE(757)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(758)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1523), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(750), - [aux_sym_tuple_literal_repeat1] = STATE(754), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1890), - }, - [STATE(759)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(731), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1892), - }, - [STATE(760)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1540), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1324), - [aux_sym_tuple_literal_repeat1] = STATE(756), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1894), - }, - [STATE(761)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_assignment_statement] = STATE(1754), - [sym_expression_statement] = STATE(1754), - [sym_expression] = STATE(1486), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(739), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1898), - }, - [STATE(762)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1554), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2139), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(763)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(764)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1550), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_keyed_field_initializer] = STATE(1760), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(1858), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1902), - }, - [STATE(765)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(766)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1563), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(2141), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1904), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1906), - }, - [STATE(767)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(768)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(558), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1918), - }, - [STATE(769)] = { - [sym_type] = STATE(398), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(299), - [anon_sym_import] = ACTIONS(302), - [anon_sym_test] = ACTIONS(302), - [anon_sym_hide] = ACTIONS(302), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(307), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(310), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_else] = ACTIONS(302), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(297), - [anon_sym_orelse] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(302), - [anon_sym_or] = ACTIONS(302), - [anon_sym_and] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(297), - }, - [STATE(770)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1452), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(771)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(349), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_else] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), - }, - [STATE(772)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(827), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1922), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1924), - }, - [STATE(773)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(774)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(775)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1507), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(842), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1928), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1930), - }, - [STATE(776)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(792), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1932), - }, - [STATE(777)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(797), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1934), - }, - [STATE(778)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(779)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(229), - [sym_identifier] = ACTIONS(349), - [anon_sym_import] = ACTIONS(233), - [anon_sym_test] = ACTIONS(233), - [anon_sym_hide] = ACTIONS(233), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_else] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), - }, - [STATE(780)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1512), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1938), - }, - [STATE(781)] = { - [sym_type] = STATE(398), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(302), - [anon_sym_QMARK] = ACTIONS(307), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(310), - [anon_sym_mut] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_SEMI] = ACTIONS(297), - [anon_sym_RBRACK] = ACTIONS(297), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_STAR_EQ] = ACTIONS(297), - [anon_sym_SLASH_EQ] = ACTIONS(297), - [anon_sym_else] = ACTIONS(302), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(297), - [anon_sym_orelse] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(302), - [anon_sym_or] = ACTIONS(302), - [anon_sym_and] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(302), - [anon_sym_SLASH] = ACTIONS(302), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(297), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(297), - }, - [STATE(782)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(580), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(857), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1942), - }, - [STATE(783)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1514), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(770), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1946), - }, - [STATE(784)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1516), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(785)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1519), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1950), - }, - [STATE(786)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(787)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1952), - }, - [STATE(788)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1954), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(789)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1561), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2058), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(825), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), }, [STATE(790)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_else] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(1797), + [anon_sym_func] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1797), + [anon_sym_struct] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1767), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(1797), + [anon_sym_anyopaque] = ACTIONS(1797), + [anon_sym_bool] = ACTIONS(1797), + [anon_sym_int] = ACTIONS(1797), + [anon_sym_uint] = ACTIONS(1797), + [anon_sym_float] = ACTIONS(1797), + [anon_sym_range] = ACTIONS(1797), + [anon_sym_i8] = ACTIONS(1797), + [anon_sym_i16] = ACTIONS(1797), + [anon_sym_i32] = ACTIONS(1797), + [anon_sym_i64] = ACTIONS(1797), + [anon_sym_u8] = ACTIONS(1797), + [anon_sym_u16] = ACTIONS(1797), + [anon_sym_u32] = ACTIONS(1797), + [anon_sym_u64] = ACTIONS(1797), + [anon_sym_isize] = ACTIONS(1797), + [anon_sym_usize] = ACTIONS(1797), + [anon_sym_f32] = ACTIONS(1797), + [anon_sym_f64] = ACTIONS(1797), + [anon_sym_c_char] = ACTIONS(1797), + [anon_sym_c_schar] = ACTIONS(1797), + [anon_sym_c_uchar] = ACTIONS(1797), + [anon_sym_c_short] = ACTIONS(1797), + [anon_sym_c_ushort] = ACTIONS(1797), + [anon_sym_c_int] = ACTIONS(1797), + [anon_sym_c_uint] = ACTIONS(1797), + [anon_sym_c_long] = ACTIONS(1797), + [anon_sym_c_ulong] = ACTIONS(1797), + [anon_sym_c_longlong] = ACTIONS(1797), + [anon_sym_c_ulonglong] = ACTIONS(1797), + [anon_sym_c_float] = ACTIONS(1797), + [anon_sym_c_double] = ACTIONS(1797), + [anon_sym_c_longdouble] = ACTIONS(1797), + [anon_sym_return] = ACTIONS(1797), + [anon_sym_yield] = ACTIONS(1797), + [anon_sym_break] = ACTIONS(1797), + [anon_sym_continue] = ACTIONS(1797), + [anon_sym_defer] = ACTIONS(1797), + [anon_sym_errdefer] = ACTIONS(1797), + [anon_sym_if] = ACTIONS(1797), + [anon_sym_else] = ACTIONS(1797), + [anon_sym_while] = ACTIONS(1797), + [anon_sym_expand] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1797), + [anon_sym_match] = ACTIONS(1797), + [anon_sym_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(1767), + [anon_sym_xor] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1797), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(1797), + [anon_sym_false] = ACTIONS(1797), + [sym_none] = ACTIONS(1797), + [sym_undefined] = ACTIONS(1797), + [sym_sink] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym_multiline_string] = ACTIONS(1799), + [sym_character] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(1799), }, [STATE(791)] = { - [sym_type] = STATE(436), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_else] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2591), + [sym_labeled_block] = STATE(2591), + [sym_if_statement] = STATE(2591), + [sym_while_statement] = STATE(2591), + [sym_for_statement] = STATE(2591), + [sym_match_statement] = STATE(2591), + [sym__value] = STATE(2591), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(827), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(1801), }, [STATE(792)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(836), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(1803), }, [STATE(793)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(778), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(859), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1958), + [sym__newline] = ACTIONS(1805), }, [STATE(794)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(816), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(797), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1807), + }, + [STATE(795)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(800), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1809), + }, + [STATE(796)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(797)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(798)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(802), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1811), + }, + [STATE(799)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1813), + }, + [STATE(800)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(801)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(822), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1815), + }, + [STATE(802)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(803)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(804)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(825), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1817), + }, + [STATE(805)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(806)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(807)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(808)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(809)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2544), + [sym_labeled_block] = STATE(2544), + [sym_if_statement] = STATE(2544), + [sym_while_statement] = STATE(2544), + [sym_for_statement] = STATE(2544), + [sym_match_statement] = STATE(2544), + [sym__value] = STATE(2544), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(810)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2569), + [sym_labeled_block] = STATE(2569), + [sym_if_statement] = STATE(2569), + [sym_while_statement] = STATE(2569), + [sym_for_statement] = STATE(2569), + [sym_match_statement] = STATE(2569), + [sym__value] = STATE(2569), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(811)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1819), + }, + [STATE(812)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(807), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1821), + }, + [STATE(813)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2561), + [sym_labeled_block] = STATE(2561), + [sym_if_statement] = STATE(2561), + [sym_while_statement] = STATE(2561), + [sym_for_statement] = STATE(2561), + [sym_match_statement] = STATE(2561), + [sym__value] = STATE(2561), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(814)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1823), + }, + [STATE(815)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(821), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1825), + }, + [STATE(816)] = { + [sym_identifier] = ACTIONS(385), + [anon_sym_func] = ACTIONS(385), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_void] = ACTIONS(385), + [anon_sym_anyopaque] = ACTIONS(385), + [anon_sym_bool] = ACTIONS(385), + [anon_sym_int] = ACTIONS(385), + [anon_sym_uint] = ACTIONS(385), + [anon_sym_float] = ACTIONS(385), + [anon_sym_range] = ACTIONS(385), + [anon_sym_i8] = ACTIONS(385), + [anon_sym_i16] = ACTIONS(385), + [anon_sym_i32] = ACTIONS(385), + [anon_sym_i64] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(385), + [anon_sym_u16] = ACTIONS(385), + [anon_sym_u32] = ACTIONS(385), + [anon_sym_u64] = ACTIONS(385), + [anon_sym_isize] = ACTIONS(385), + [anon_sym_usize] = ACTIONS(385), + [anon_sym_f32] = ACTIONS(385), + [anon_sym_f64] = ACTIONS(385), + [anon_sym_c_char] = ACTIONS(385), + [anon_sym_c_schar] = ACTIONS(385), + [anon_sym_c_uchar] = ACTIONS(385), + [anon_sym_c_short] = ACTIONS(385), + [anon_sym_c_ushort] = ACTIONS(385), + [anon_sym_c_int] = ACTIONS(385), + [anon_sym_c_uint] = ACTIONS(385), + [anon_sym_c_long] = ACTIONS(385), + [anon_sym_c_ulong] = ACTIONS(385), + [anon_sym_c_longlong] = ACTIONS(385), + [anon_sym_c_ulonglong] = ACTIONS(385), + [anon_sym_c_float] = ACTIONS(385), + [anon_sym_c_double] = ACTIONS(385), + [anon_sym_c_longdouble] = ACTIONS(385), + [anon_sym_return] = ACTIONS(385), + [anon_sym_yield] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(390), + [anon_sym_break] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_defer] = ACTIONS(385), + [anon_sym_errdefer] = ACTIONS(385), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_while] = ACTIONS(385), + [anon_sym_expand] = ACTIONS(385), + [anon_sym_for] = ACTIONS(385), + [anon_sym_match] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_LT_LT_PIPE] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_TILDE] = ACTIONS(390), + [anon_sym_try] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_true] = ACTIONS(385), + [anon_sym_false] = ACTIONS(385), + [sym_none] = ACTIONS(385), + [sym_undefined] = ACTIONS(385), + [sym_sink] = ACTIONS(385), + [sym_integer] = ACTIONS(385), + [sym_float] = ACTIONS(390), + [anon_sym_DQUOTE] = ACTIONS(390), + [sym_multiline_string] = ACTIONS(390), + [sym_character] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(817)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2563), + [sym_labeled_block] = STATE(2563), + [sym_if_statement] = STATE(2563), + [sym_while_statement] = STATE(2563), + [sym_for_statement] = STATE(2563), + [sym_match_statement] = STATE(2563), + [sym__value] = STATE(2563), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(818)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(819)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(823), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1827), + }, + [STATE(820)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1829), + }, + [STATE(821)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(822)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(823)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(824)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(825)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(826)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2578), + [sym_labeled_block] = STATE(2578), + [sym_if_statement] = STATE(2578), + [sym_while_statement] = STATE(2578), + [sym_for_statement] = STATE(2578), + [sym_match_statement] = STATE(2578), + [sym__value] = STATE(2578), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(785), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1831), + }, + [STATE(827)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(2587), + [sym_labeled_block] = STATE(2587), + [sym_if_statement] = STATE(2587), + [sym_while_statement] = STATE(2587), + [sym_for_statement] = STATE(2587), + [sym_match_statement] = STATE(2587), + [sym__value] = STATE(2587), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(828)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(830), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1833), + }, + [STATE(829)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(833), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1835), + }, + [STATE(830)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(831)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1837), + }, + [STATE(832)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1839), + }, + [STATE(833)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(834)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(835)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(836)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(837)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(838)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1841), + }, + [STATE(839)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1843), + }, + [STATE(840)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(841)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(844), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1845), + }, + [STATE(842)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1847), + }, + [STATE(843)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(844)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(845)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(846)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(806), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1849), + }, + [STATE(847)] = { + [sym_type] = STATE(3368), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(848)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(849)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(808), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1853), + }, + [STATE(850)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(854), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1855), + }, + [STATE(851)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1687), + [sym_labeled_block] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_match_statement] = STATE(1687), + [sym__value] = STATE(1687), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(852)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(855), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1857), + }, + [STATE(853)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1509), + [sym_labeled_block] = STATE(1509), + [sym_if_statement] = STATE(1509), + [sym_while_statement] = STATE(1509), + [sym_for_statement] = STATE(1509), + [sym_match_statement] = STATE(1509), + [sym__value] = STATE(1509), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1859), + }, + [STATE(854)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(855)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1540), + [sym_labeled_block] = STATE(1540), + [sym_if_statement] = STATE(1540), + [sym_while_statement] = STATE(1540), + [sym_for_statement] = STATE(1540), + [sym_match_statement] = STATE(1540), + [sym__value] = STATE(1540), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(856)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(857)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_else] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(858)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1598), + [sym_labeled_block] = STATE(1598), + [sym_if_statement] = STATE(1598), + [sym_while_statement] = STATE(1598), + [sym_for_statement] = STATE(1598), + [sym_match_statement] = STATE(1598), + [sym__value] = STATE(1598), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(859)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1541), + [sym_labeled_block] = STATE(1541), + [sym_if_statement] = STATE(1541), + [sym_while_statement] = STATE(1541), + [sym_for_statement] = STATE(1541), + [sym_match_statement] = STATE(1541), + [sym__value] = STATE(1541), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(860)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1558), + [sym_labeled_block] = STATE(1558), + [sym_if_statement] = STATE(1558), + [sym_while_statement] = STATE(1558), + [sym_for_statement] = STATE(1558), + [sym_match_statement] = STATE(1558), + [sym__value] = STATE(1558), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(765), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1861), + }, + [STATE(861)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1581), + [sym_labeled_block] = STATE(1581), + [sym_if_statement] = STATE(1581), + [sym_while_statement] = STATE(1581), + [sym_for_statement] = STATE(1581), + [sym_match_statement] = STATE(1581), + [sym__value] = STATE(1581), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(768), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1863), + }, + [STATE(862)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_LT_LT_PIPE] = ACTIONS(549), + [anon_sym_PLUS] = ACTIONS(549), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(863)] = { + [sym_argument_list] = STATE(686), + [sym_identifier] = ACTIONS(551), + [anon_sym_func] = ACTIONS(551), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_struct] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_QMARK] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(551), + [anon_sym_anyopaque] = ACTIONS(551), + [anon_sym_bool] = ACTIONS(551), + [anon_sym_int] = ACTIONS(551), + [anon_sym_uint] = ACTIONS(551), + [anon_sym_float] = ACTIONS(551), + [anon_sym_range] = ACTIONS(551), + [anon_sym_i8] = ACTIONS(551), + [anon_sym_i16] = ACTIONS(551), + [anon_sym_i32] = ACTIONS(551), + [anon_sym_i64] = ACTIONS(551), + [anon_sym_u8] = ACTIONS(551), + [anon_sym_u16] = ACTIONS(551), + [anon_sym_u32] = ACTIONS(551), + [anon_sym_u64] = ACTIONS(551), + [anon_sym_isize] = ACTIONS(551), + [anon_sym_usize] = ACTIONS(551), + [anon_sym_f32] = ACTIONS(551), + [anon_sym_f64] = ACTIONS(551), + [anon_sym_c_char] = ACTIONS(551), + [anon_sym_c_schar] = ACTIONS(551), + [anon_sym_c_uchar] = ACTIONS(551), + [anon_sym_c_short] = ACTIONS(551), + [anon_sym_c_ushort] = ACTIONS(551), + [anon_sym_c_int] = ACTIONS(551), + [anon_sym_c_uint] = ACTIONS(551), + [anon_sym_c_long] = ACTIONS(551), + [anon_sym_c_ulong] = ACTIONS(551), + [anon_sym_c_longlong] = ACTIONS(551), + [anon_sym_c_ulonglong] = ACTIONS(551), + [anon_sym_c_float] = ACTIONS(551), + [anon_sym_c_double] = ACTIONS(551), + [anon_sym_c_longdouble] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_defer] = ACTIONS(551), + [anon_sym_errdefer] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_while] = ACTIONS(551), + [anon_sym_expand] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_match] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(549), + [anon_sym_orelse] = ACTIONS(551), + [anon_sym_catch] = ACTIONS(551), + [anon_sym_or] = ACTIONS(551), + [anon_sym_and] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(549), + [anon_sym_BANG_EQ] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), + [anon_sym_xor] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LT_LT_PIPE] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(37), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_try] = ACTIONS(551), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_true] = ACTIONS(551), + [anon_sym_false] = ACTIONS(551), + [sym_none] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [sym_sink] = ACTIONS(551), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_multiline_string] = ACTIONS(549), + [sym_character] = ACTIONS(549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(549), + }, + [STATE(864)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(865)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(866)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(867)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_yield] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_defer] = ACTIONS(1875), + [anon_sym_errdefer] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_expand] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1877), + }, + [STATE(868)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(869)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(870)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(871)] = { + [sym_type] = STATE(235), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(333), + [sym_identifier] = ACTIONS(335), + [anon_sym_import] = ACTIONS(338), + [anon_sym_test] = ACTIONS(338), + [anon_sym_hide] = ACTIONS(338), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(346), + [anon_sym_mut] = ACTIONS(349), + [anon_sym_LBRACK] = ACTIONS(351), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -92618,12720 +106908,6837 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_xor_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), + [anon_sym_else] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(333), + }, + [STATE(872)] = { + [sym_type] = STATE(247), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(307), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_mut] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(873)] = { + [sym_type] = STATE(246), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(307), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_mut] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(323), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(874)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1526), + [sym_labeled_block] = STATE(1526), + [sym_if_statement] = STATE(1526), + [sym_while_statement] = STATE(1526), + [sym_for_statement] = STATE(1526), + [sym_match_statement] = STATE(1526), + [sym__value] = STATE(1526), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1707), + }, + [STATE(875)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(876)] = { + [sym_type] = STATE(253), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(270), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(877)] = { + [sym_type] = STATE(255), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(255), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(270), + [anon_sym_mut] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(275), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(878)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_yield] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_defer] = ACTIONS(1887), + [anon_sym_errdefer] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_expand] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1877), + }, + [STATE(879)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(880)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1534), + [sym_labeled_block] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_match_statement] = STATE(1534), + [sym__value] = STATE(1534), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(881)] = { + [sym_type] = STATE(264), + [sym__type_atom] = STATE(48), + [sym_named_type] = STATE(48), + [sym_optional_type] = STATE(48), + [sym_pointer_type] = STATE(48), + [sym_array_type] = STATE(48), + [sym_function_type] = STATE(48), + [sym_builtin_type] = STATE(48), + [sym_qualified_identifier] = STATE(46), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(283), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(263), + [anon_sym_c_func] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(291), + [anon_sym_AT] = ACTIONS(268), + [anon_sym_STAR] = ACTIONS(294), + [anon_sym_mut] = ACTIONS(297), + [anon_sym_LBRACK] = ACTIONS(299), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_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(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_else] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(286), + [anon_sym_LT_LT_PIPE] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(882)] = { + [sym_type] = STATE(3366), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(883)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(125), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(884)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(441), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(885)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2310), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1537), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(55), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(886)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(205), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(887)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(153), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(888)] = { + [sym_type] = STATE(3342), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(889)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2397), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(581), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(890)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(531), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(891)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(790), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [sym_identifier] = ACTIONS(1703), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(239), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + }, + [STATE(892)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(2428), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1752), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_if] = ACTIONS(599), + [anon_sym_while] = ACTIONS(57), + [anon_sym_expand] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(893)] = { + [sym_type] = STATE(3363), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(894)] = { + [sym_type] = STATE(3368), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(385), + [anon_sym_test] = ACTIONS(385), + [anon_sym_hide] = ACTIONS(385), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(895)] = { + [sym_type] = STATE(3377), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(896)] = { + [sym_type] = STATE(3376), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_COLON] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(897)] = { + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1905), + [anon_sym_import] = ACTIONS(1905), + [anon_sym_func] = ACTIONS(1905), + [anon_sym_c_func] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1905), + [anon_sym_c_struct] = ACTIONS(1905), + [sym_opaque_type] = ACTIONS(1905), + [anon_sym_distinct] = ACTIONS(1905), + [anon_sym_alias] = ACTIONS(1905), + [anon_sym_union] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [anon_sym_RBRACK] = ACTIONS(1907), + [anon_sym_void] = ACTIONS(1905), + [anon_sym_anyopaque] = ACTIONS(1905), + [anon_sym_bool] = ACTIONS(1905), + [anon_sym_int] = ACTIONS(1905), + [anon_sym_uint] = ACTIONS(1905), + [anon_sym_float] = ACTIONS(1905), + [anon_sym_range] = ACTIONS(1905), + [anon_sym_i8] = ACTIONS(1905), + [anon_sym_i16] = ACTIONS(1905), + [anon_sym_i32] = ACTIONS(1905), + [anon_sym_i64] = ACTIONS(1905), + [anon_sym_u8] = ACTIONS(1905), + [anon_sym_u16] = ACTIONS(1905), + [anon_sym_u32] = ACTIONS(1905), + [anon_sym_u64] = ACTIONS(1905), + [anon_sym_isize] = ACTIONS(1905), + [anon_sym_usize] = ACTIONS(1905), + [anon_sym_f32] = ACTIONS(1905), + [anon_sym_f64] = ACTIONS(1905), + [anon_sym_c_char] = ACTIONS(1905), + [anon_sym_c_schar] = ACTIONS(1905), + [anon_sym_c_uchar] = ACTIONS(1905), + [anon_sym_c_short] = ACTIONS(1905), + [anon_sym_c_ushort] = ACTIONS(1905), + [anon_sym_c_int] = ACTIONS(1905), + [anon_sym_c_uint] = ACTIONS(1905), + [anon_sym_c_long] = ACTIONS(1905), + [anon_sym_c_ulong] = ACTIONS(1905), + [anon_sym_c_longlong] = ACTIONS(1905), + [anon_sym_c_ulonglong] = ACTIONS(1905), + [anon_sym_c_float] = ACTIONS(1905), + [anon_sym_c_double] = ACTIONS(1905), + [anon_sym_c_longdouble] = ACTIONS(1905), + [anon_sym_return] = ACTIONS(1905), + [anon_sym_yield] = ACTIONS(1905), + [anon_sym_break] = ACTIONS(1905), + [anon_sym_continue] = ACTIONS(1905), + [anon_sym_defer] = ACTIONS(1905), + [anon_sym_errdefer] = ACTIONS(1905), + [anon_sym_if] = ACTIONS(1905), + [anon_sym_else] = ACTIONS(1905), + [anon_sym_while] = ACTIONS(1905), + [anon_sym_expand] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1905), + [anon_sym_match] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1905), + [anon_sym_DOT] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1905), + [anon_sym_false] = ACTIONS(1905), + [sym_none] = ACTIONS(1905), + [sym_undefined] = ACTIONS(1905), + [sym_sink] = ACTIONS(1905), + [sym_integer] = ACTIONS(1905), + [sym_float] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1907), + [sym_multiline_string] = ACTIONS(1907), + [sym_character] = ACTIONS(1907), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1909), + }, + [STATE(898)] = { + [sym_type] = STATE(3366), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1895), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(899)] = { + [sym_type] = STATE(2081), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(333), + [anon_sym_DASH_EQ] = ACTIONS(333), + [anon_sym_STAR_EQ] = ACTIONS(333), + [anon_sym_SLASH_EQ] = ACTIONS(333), + [anon_sym_AMP_EQ] = ACTIONS(333), + [anon_sym_PIPE_EQ] = ACTIONS(333), + [anon_sym_xor_EQ] = ACTIONS(333), + [anon_sym_LT_LT_EQ] = ACTIONS(333), + [anon_sym_GT_GT_EQ] = ACTIONS(333), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(333), + [anon_sym_else] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(338), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_LT_LT_PIPE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(333), + }, + [STATE(900)] = { + [sym_type] = STATE(2106), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_mut] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(901)] = { + [sym_type] = STATE(2098), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(310), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(310), + [anon_sym_PIPE] = ACTIONS(310), + [anon_sym_QMARK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(305), + [anon_sym_DASH_EQ] = ACTIONS(305), + [anon_sym_STAR_EQ] = ACTIONS(305), + [anon_sym_SLASH_EQ] = ACTIONS(305), + [anon_sym_AMP_EQ] = ACTIONS(305), + [anon_sym_PIPE_EQ] = ACTIONS(305), + [anon_sym_xor_EQ] = ACTIONS(305), + [anon_sym_LT_LT_EQ] = ACTIONS(305), + [anon_sym_GT_GT_EQ] = ACTIONS(305), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(310), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(310), + [anon_sym_LT_LT_PIPE] = ACTIONS(310), + [anon_sym_PLUS] = ACTIONS(310), + [anon_sym_SLASH] = ACTIONS(310), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(902)] = { + [sym_type] = STATE(2076), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_mut] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(903)] = { + [sym_type] = STATE(3363), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1899), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_else] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(904)] = { + [sym_type] = STATE(2080), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(258), + [anon_sym_PIPE] = ACTIONS(258), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_mut] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_xor_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(258), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(258), + [anon_sym_LT_LT_PIPE] = ACTIONS(258), + [anon_sym_PLUS] = ACTIONS(258), + [anon_sym_SLASH] = ACTIONS(258), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(905)] = { + [sym_type] = STATE(2100), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(286), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(286), + [anon_sym_PIPE] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_mut] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_PLUS_EQ] = ACTIONS(281), + [anon_sym_DASH_EQ] = ACTIONS(281), + [anon_sym_STAR_EQ] = ACTIONS(281), + [anon_sym_SLASH_EQ] = ACTIONS(281), + [anon_sym_AMP_EQ] = ACTIONS(281), + [anon_sym_PIPE_EQ] = ACTIONS(281), + [anon_sym_xor_EQ] = ACTIONS(281), + [anon_sym_LT_LT_EQ] = ACTIONS(281), + [anon_sym_GT_GT_EQ] = ACTIONS(281), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(281), + [anon_sym_else] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(286), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(286), + [anon_sym_LT_LT_PIPE] = ACTIONS(286), + [anon_sym_PLUS] = ACTIONS(286), + [anon_sym_SLASH] = ACTIONS(286), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(906)] = { + [sym_type] = STATE(3376), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(1903), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(907)] = { + [sym_type] = STATE(3377), + [sym__type_atom] = STATE(2507), + [sym_named_type] = STATE(2507), + [sym_optional_type] = STATE(2507), + [sym_pointer_type] = STATE(2507), + [sym_array_type] = STATE(2507), + [sym_function_type] = STATE(2507), + [sym_builtin_type] = STATE(2507), + [sym_qualified_identifier] = STATE(2504), + [sym_identifier] = ACTIONS(1893), + [anon_sym_COLON_COLON] = ACTIONS(1901), + [anon_sym_func] = ACTIONS(381), + [anon_sym_c_func] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_RPAREN] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_xor_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_orelse] = ACTIONS(385), + [anon_sym_catch] = ACTIONS(385), + [anon_sym_or] = ACTIONS(385), + [anon_sym_and] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_xor] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_LT_LT_PIPE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(390), + }, + [STATE(908)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(910), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1960), }, - [STATE(795)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1581), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1962), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1964), - }, - [STATE(796)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(788), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1968), - }, - [STATE(797)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(798)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(799)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(800)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(798), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1976), - }, - [STATE(801)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(803), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1978), - }, - [STATE(802)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(773), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1980), - }, - [STATE(803)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(804)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(774), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1982), - }, - [STATE(805)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(229), - [anon_sym_RBRACK] = ACTIONS(229), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_else] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), - }, - [STATE(806)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1515), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(807)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(233), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_RPAREN] = ACTIONS(229), - [anon_sym_LBRACE] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(233), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(358), - [anon_sym_mut] = ACTIONS(241), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(229), - [anon_sym_RBRACK] = ACTIONS(229), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(229), - [anon_sym_DASH_EQ] = ACTIONS(229), - [anon_sym_STAR_EQ] = ACTIONS(229), - [anon_sym_SLASH_EQ] = ACTIONS(229), - [anon_sym_else] = ACTIONS(233), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(233), - [anon_sym_SLASH] = ACTIONS(233), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), - }, - [STATE(808)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(799), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1986), - }, - [STATE(809)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(821), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1988), - }, - [STATE(810)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1548), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(841), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1990), - }, - [STATE(811)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_RBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_SEMI] = ACTIONS(243), - [anon_sym_RBRACK] = ACTIONS(243), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_else] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), - }, - [STATE(812)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1457), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(903), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1992), - }, - [STATE(813)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(814)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1571), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(996), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2000), - }, - [STATE(815)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(883), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2002), - }, - [STATE(816)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(817)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(835), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2004), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2006), - }, - [STATE(818)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [anon_sym_import] = ACTIONS(326), - [anon_sym_test] = ACTIONS(326), - [anon_sym_hide] = ACTIONS(326), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_else] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), - }, - [STATE(819)] = { - [sym_type] = STATE(436), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(321), - [sym_identifier] = ACTIONS(323), - [anon_sym_import] = ACTIONS(326), - [anon_sym_test] = ACTIONS(326), - [anon_sym_hide] = ACTIONS(326), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(326), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_mut] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_STAR_EQ] = ACTIONS(321), - [anon_sym_SLASH_EQ] = ACTIONS(321), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_else] = ACTIONS(326), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), - }, - [STATE(820)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(813), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2008), - }, - [STATE(821)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(822)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1582), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_tuple_literal_repeat1] = STATE(822), - [sym_identifier] = ACTIONS(2010), - [anon_sym_func] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2030), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_void] = ACTIONS(2036), - [anon_sym_anyopaque] = ACTIONS(2036), - [anon_sym_bool] = ACTIONS(2036), - [anon_sym_int] = ACTIONS(2036), - [anon_sym_uint] = ACTIONS(2036), - [anon_sym_float] = ACTIONS(2036), - [anon_sym_range] = ACTIONS(2036), - [anon_sym_i8] = ACTIONS(2036), - [anon_sym_i16] = ACTIONS(2036), - [anon_sym_i32] = ACTIONS(2036), - [anon_sym_i64] = ACTIONS(2036), - [anon_sym_u8] = ACTIONS(2036), - [anon_sym_u16] = ACTIONS(2036), - [anon_sym_u32] = ACTIONS(2036), - [anon_sym_u64] = ACTIONS(2036), - [anon_sym_isize] = ACTIONS(2036), - [anon_sym_usize] = ACTIONS(2036), - [anon_sym_f32] = ACTIONS(2036), - [anon_sym_f64] = ACTIONS(2036), - [anon_sym_c_char] = ACTIONS(2036), - [anon_sym_c_schar] = ACTIONS(2036), - [anon_sym_c_uchar] = ACTIONS(2036), - [anon_sym_c_short] = ACTIONS(2036), - [anon_sym_c_ushort] = ACTIONS(2036), - [anon_sym_c_int] = ACTIONS(2036), - [anon_sym_c_uint] = ACTIONS(2036), - [anon_sym_c_long] = ACTIONS(2036), - [anon_sym_c_ulong] = ACTIONS(2036), - [anon_sym_c_longlong] = ACTIONS(2036), - [anon_sym_c_ulonglong] = ACTIONS(2036), - [anon_sym_c_float] = ACTIONS(2036), - [anon_sym_c_double] = ACTIONS(2036), - [anon_sym_c_longdouble] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_try] = ACTIONS(2039), - [anon_sym_DOT] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [sym_none] = ACTIONS(2048), - [sym_undefined] = ACTIONS(2048), - [sym_sink] = ACTIONS(2048), - [sym_integer] = ACTIONS(2048), - [sym_float] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(2054), - [sym_multiline_string] = ACTIONS(2051), - [sym_character] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2028), - }, - [STATE(823)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1508), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(784), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2057), - }, - [STATE(824)] = { - [sym_type] = STATE(2212), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2059), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(825)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1554), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2139), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(826)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(827)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(828)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(836), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2063), - }, - [STATE(829)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(243), - [sym_identifier] = ACTIONS(371), - [anon_sym_import] = ACTIONS(247), - [anon_sym_test] = ACTIONS(247), - [anon_sym_hide] = ACTIONS(247), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(247), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_LBRACE] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(247), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_mut] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_else] = ACTIONS(247), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(247), - [anon_sym_SLASH] = ACTIONS(247), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), - }, - [STATE(830)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(839), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2065), - }, - [STATE(831)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(520), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(832)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_block] = STATE(502), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(831), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2067), - }, - [STATE(833)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1471), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(919), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2069), - }, - [STATE(834)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1549), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_field_initializer] = STATE(2117), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(786), - [sym_identifier] = ACTIONS(1820), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2071), - }, - [STATE(835)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1922), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(836)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(837)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1584), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(838)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(826), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1922), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2075), - }, - [STATE(839)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(840)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1552), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(2065), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2079), - }, - [STATE(841)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1553), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1306), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_DOT_DOT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2081), - }, - [STATE(842)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1452), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(843)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1448), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(904), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2085), - }, - [STATE(844)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(845)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(3), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(846)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(571), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(854), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2087), - }, - [STATE(847)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(855), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2089), - }, - [STATE(848)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(579), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(856), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2091), - }, - [STATE(849)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(580), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(857), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1942), - }, - [STATE(850)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(582), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(858), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2093), - }, - [STATE(851)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(573), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(859), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2095), - }, - [STATE(852)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(575), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(860), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2097), - }, - [STATE(853)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1558), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(874), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2099), - }, - [STATE(854)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(572), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(855)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(856)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(583), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(857)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(585), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(858)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(586), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(859)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(588), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(860)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(570), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(861)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1492), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(862)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1551), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(875), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2101), - }, - [STATE(863)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1551), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(864)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(2), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(845), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2103), - }, - [STATE(865)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1490), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2105), - }, - [STATE(866)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1557), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(867)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1562), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(868)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1564), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(863), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2107), - }, - [STATE(869)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1559), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(867), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2109), - }, - [STATE(870)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1458), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(878), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2111), - }, - [STATE(871)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(879), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2113), - }, - [STATE(872)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1444), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(882), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2115), - }, - [STATE(873)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(565), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2117), - }, - [STATE(874)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1566), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(875)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1547), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(876)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(883), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2002), - }, - [STATE(877)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1555), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(878)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(879)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(880)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1445), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(884), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2119), - }, - [STATE(881)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1455), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2121), - }, - [STATE(882)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1459), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(883)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1463), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(884)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(885)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1451), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(886)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(887)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(844), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(121), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(277), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(121), - [anon_sym_try] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2123), - }, - [STATE(888)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1456), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(886), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2125), - }, - [STATE(889)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(4), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(891), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2127), - }, - [STATE(890)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(891)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(5), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(892)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1453), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(900), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2129), - }, - [STATE(893)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(901), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2131), - }, - [STATE(894)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1461), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(902), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2133), - }, - [STATE(895)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1457), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(903), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1992), - }, - [STATE(896)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1450), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(905), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2135), - }, - [STATE(897)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1447), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(906), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2137), - }, - [STATE(898)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1542), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(899)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(581), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(907), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2139), - }, - [STATE(900)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1443), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(901)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(902)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1452), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(903)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1454), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(904)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1462), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(905)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1449), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(906)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1460), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(907)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(577), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(908)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, [STATE(909)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1476), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(916), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2340), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(918), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(1972), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2141), + [sym__newline] = ACTIONS(1974), }, [STATE(910)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(917), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(910), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1976), + [anon_sym_func] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_DOLLAR] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_void] = ACTIONS(2002), + [anon_sym_anyopaque] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_int] = ACTIONS(2002), + [anon_sym_uint] = ACTIONS(2002), + [anon_sym_float] = ACTIONS(2002), + [anon_sym_range] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_c_char] = ACTIONS(2002), + [anon_sym_c_schar] = ACTIONS(2002), + [anon_sym_c_uchar] = ACTIONS(2002), + [anon_sym_c_short] = ACTIONS(2002), + [anon_sym_c_ushort] = ACTIONS(2002), + [anon_sym_c_int] = ACTIONS(2002), + [anon_sym_c_uint] = ACTIONS(2002), + [anon_sym_c_long] = ACTIONS(2002), + [anon_sym_c_ulong] = ACTIONS(2002), + [anon_sym_c_longlong] = ACTIONS(2002), + [anon_sym_c_ulonglong] = ACTIONS(2002), + [anon_sym_c_float] = ACTIONS(2002), + [anon_sym_c_double] = ACTIONS(2002), + [anon_sym_c_longdouble] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2005), + [anon_sym_expand] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_TILDE] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [sym_none] = ACTIONS(2020), + [sym_undefined] = ACTIONS(2020), + [sym_sink] = ACTIONS(2020), + [sym_integer] = ACTIONS(2020), + [sym_float] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym_multiline_string] = ACTIONS(2023), + [sym_character] = ACTIONS(2023), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2143), + [sym__newline] = ACTIONS(2029), }, [STATE(911)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1469), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(918), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(916), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(916), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2145), + [sym__newline] = ACTIONS(2034), }, [STATE(912)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1471), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(919), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2330), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(914), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2042), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2069), + [sym__newline] = ACTIONS(2044), }, [STATE(913)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1472), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(920), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(910), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2147), + [sym__newline] = ACTIONS(1960), }, [STATE(914)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1478), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(921), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2341), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1724), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2054), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2149), + [sym__newline] = ACTIONS(2056), }, [STATE(915)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1474), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(922), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(917), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(917), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2151), + [sym__newline] = ACTIONS(2060), }, [STATE(916)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1480), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(910), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(1960), }, [STATE(917)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(910), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(910), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(1960), }, [STATE(918)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1481), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2336), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1723), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_RBRACK] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2072), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2074), }, [STATE(919)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1473), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(908), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2076), }, [STATE(920)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1470), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_match_arm] = STATE(913), + [sym_expression] = STATE(2338), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_match_statement_repeat1] = STATE(913), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1956), + [anon_sym_expand] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2080), }, [STATE(921)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1475), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2336), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1723), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_RBRACK] = ACTIONS(2082), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2072), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2074), }, [STATE(922)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1479), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2340), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(921), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(1972), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2086), }, [STATE(923)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(908), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(147), - [anon_sym_try] = ACTIONS(131), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2337), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1728), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2092), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2094), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2153), + [sym__newline] = ACTIONS(2096), }, [STATE(924)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(11), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(927), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2407), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1726), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_RBRACK] = ACTIONS(2098), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2054), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2155), + [sym__newline] = ACTIONS(2100), }, [STATE(925)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2387), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1736), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_RBRACK] = ACTIONS(2106), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2108), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2110), }, [STATE(926)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(1003), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2339), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1728), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2112), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2094), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2157), + [sym__newline] = ACTIONS(2096), }, [STATE(927)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(12), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2400), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(935), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_RBRACK] = ACTIONS(2118), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2120), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2122), }, [STATE(928)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(937), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2404), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(932), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(2124), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(1972), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2159), + [sym__newline] = ACTIONS(2126), }, [STATE(929)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1518), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(938), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2325), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(936), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(2084), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(1972), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2161), + [sym__newline] = ACTIONS(2128), }, [STATE(930)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1519), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(939), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2409), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_RBRACK] = ACTIONS(2134), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2136), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1950), + [sym__newline] = ACTIONS(2138), }, [STATE(931)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1520), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(940), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2328), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(1972), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2163), + [sym__newline] = ACTIONS(2140), }, [STATE(932)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1521), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(941), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2410), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1727), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_RBRACK] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2072), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2165), + [sym__newline] = ACTIONS(2144), }, [STATE(933)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1522), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(942), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2329), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1727), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_RBRACK] = ACTIONS(2070), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2072), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2167), + [sym__newline] = ACTIONS(2144), }, [STATE(934)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(607), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(943), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2333), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(937), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2040), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2042), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2169), + [sym__newline] = ACTIONS(2146), }, [STATE(935)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1565), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(866), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2403), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1728), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_RBRACK] = ACTIONS(2148), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2094), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2171), + [sym__newline] = ACTIONS(2096), }, [STATE(936)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1524), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2342), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1727), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_RBRACK] = ACTIONS(2082), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2072), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2144), }, [STATE(937)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2334), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1726), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2054), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2100), }, [STATE(938)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1525), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2396), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(940), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_RBRACK] = ACTIONS(2154), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2156), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2158), }, [STATE(939)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1526), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2335), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(942), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2042), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2162), }, [STATE(940)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1517), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2406), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1732), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_RBRACK] = ACTIONS(2168), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2170), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2172), }, [STATE(941)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1527), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2393), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_RBRACK] = ACTIONS(2174), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2042), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2176), }, [STATE(942)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1528), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2331), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1726), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_RBRACK] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2054), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2100), }, [STATE(943)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(608), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2326), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_RBRACK] = ACTIONS(2180), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2120), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2182), }, [STATE(944)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2327), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(926), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_RBRACK] = ACTIONS(2184), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(2120), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2186), }, [STATE(945)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1544), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(898), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2353), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2624), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1000), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2173), + [sym__newline] = ACTIONS(2192), }, [STATE(946)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(6), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(947), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3281), + [sym_expression_statement] = STATE(3281), + [sym_expression] = STATE(2259), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2175), + [sym__newline] = ACTIONS(2194), }, [STATE(947)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(7), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_assignment_statement] = STATE(2710), + [sym_expression_statement] = STATE(2710), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -105365,1135 +113772,1177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(948)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(574), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(949), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2389), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(950), + [aux_sym_tuple_literal_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2177), + [sym__newline] = ACTIONS(2204), }, [STATE(949)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(576), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(950)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(17), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(951), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2390), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1746), + [aux_sym_tuple_literal_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2179), + [sym__newline] = ACTIONS(2210), }, [STATE(951)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(18), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(952)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(568), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(953), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2181), + [sym__newline] = ACTIONS(447), }, [STATE(953)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(578), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(954)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(13), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(956), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1023), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2183), + [sym__newline] = ACTIONS(2216), }, [STATE(955)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(8), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2218), }, [STATE(956)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(14), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2220), }, [STATE(957)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(15), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(972), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2224), }, [STATE(958)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(890), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2391), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3198), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2185), + [sym__newline] = ACTIONS(2228), }, [STATE(959)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(9), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(960), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2347), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2615), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2187), + [sym__newline] = ACTIONS(447), }, [STATE(960)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(10), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3327), + [sym_expression_statement] = STATE(3327), + [sym_expression] = STATE(2259), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2232), }, [STATE(961)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(564), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_assignment_statement] = STATE(2730), + [sym_expression_statement] = STATE(2730), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -106527,222 +114976,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(962)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1546), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(963), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_type] = STATE(2106), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_mut] = ACTIONS(421), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2189), + [sym__newline] = ACTIONS(305), }, [STATE(963)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1534), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2389), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1752), + [aux_sym_tuple_literal_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(2239), }, [STATE(964)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1534), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(965), - [sym_identifier] = ACTIONS(1644), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_assignment_statement] = STATE(2750), + [sym_expression_statement] = STATE(2750), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(2196), [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(157), [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -106776,4405 +115234,2123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2191), + [sym__newline] = ACTIONS(2243), }, [STATE(965)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1536), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3260), + [sym_expression_statement] = STATE(3260), + [sym_expression] = STATE(2278), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), + [sym__newline] = ACTIONS(447), }, [STATE(966)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(967)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(555), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(974), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2193), - }, - [STATE(968)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(975), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2195), - }, - [STATE(969)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(557), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(976), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2197), - }, - [STATE(970)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(558), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(977), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1918), - }, - [STATE(971)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(559), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(978), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2199), - }, - [STATE(972)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(556), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(979), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2201), - }, - [STATE(973)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(553), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2203), - }, - [STATE(974)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(547), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(975)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(976)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(546), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(977)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(550), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(978)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(551), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(979)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(552), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(980)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(554), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(981)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1560), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(877), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2205), - }, - [STATE(982)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(966), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2207), - }, - [STATE(983)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(925), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2209), - }, - [STATE(984)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(16), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(955), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2211), - }, - [STATE(985)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(986)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1568), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(993), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2213), - }, - [STATE(987)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(466), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(994), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2215), - }, - [STATE(988)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1570), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(995), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2217), - }, - [STATE(989)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1571), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(996), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2000), - }, - [STATE(990)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1572), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(997), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2219), - }, - [STATE(991)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1573), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(998), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2221), - }, - [STATE(992)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1574), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(999), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2223), - }, - [STATE(993)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1575), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(994)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(464), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(995)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1576), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(996)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1577), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(997)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1578), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(998)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1579), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(999)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1569), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(1000)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(465), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(985), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1994), - [anon_sym_DOLLAR] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1994), - [anon_sym_try] = ACTIONS(1998), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2225), - }, - [STATE(1001)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(19), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(957), - [sym_identifier] = ACTIONS(1836), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_DOLLAR] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_try] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(289), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2227), - }, - [STATE(1002)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1531), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(944), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(175), - [anon_sym_try] = ACTIONS(157), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2229), - }, - [STATE(1003)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(467), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(701), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_DOLLAR] = ACTIONS(31), - [anon_sym_LBRACK] = ACTIONS(253), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(83), - [anon_sym_try] = ACTIONS(21), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(295), - }, - [STATE(1004)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1545), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [aux_sym_import_declaration_repeat1] = STATE(936), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2231), - }, - [STATE(1005)] = { - [sym_type] = STATE(2206), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(1856), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1006)] = { - [sym_type] = STATE(2210), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(2233), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1007)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1583), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [STATE(1008)] = { - [sym_type] = STATE(2226), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(2235), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1009)] = { - [sym_type] = STATE(2211), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2237), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1010)] = { - [sym_type] = STATE(2212), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2059), - [anon_sym_import] = ACTIONS(1006), - [anon_sym_test] = ACTIONS(1006), - [anon_sym_hide] = ACTIONS(1006), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1011)] = { - [sym_struct_type] = STATE(494), - [sym_array_type] = STATE(494), - [sym_builtin_type] = STATE(494), - [sym_expression] = STATE(1580), - [sym_binary_expression] = STATE(494), - [sym_catch_expression] = STATE(494), - [sym_unary_expression] = STATE(494), - [sym_field_expression] = STATE(494), - [sym_intrinsic_call_expression] = STATE(494), - [sym_call_expression] = STATE(494), - [sym_index_expression] = STATE(494), - [sym_slice_expression] = STATE(494), - [sym_postfix_expression] = STATE(494), - [sym_struct_literal] = STATE(494), - [sym_tuple_literal] = STATE(494), - [sym_enum_literal] = STATE(494), - [sym_array_literal] = STATE(494), - [sym_parenthesized_expression] = STATE(494), - [sym_comptime_block] = STATE(494), - [sym_function_literal] = STATE(494), - [sym_qualified_identifier] = STATE(1891), - [sym_boolean] = STATE(494), - [sym_string] = STATE(494), - [sym_identifier] = ACTIONS(1644), - [anon_sym_func] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(23), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_DASH] = ACTIONS(1662), - [anon_sym_DOLLAR] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_try] = ACTIONS(1674), - [anon_sym_DOT] = ACTIONS(225), - [anon_sym_true] = ACTIONS(87), - [anon_sym_false] = ACTIONS(87), - [sym_none] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [sym_sink] = ACTIONS(89), - [sym_integer] = ACTIONS(89), - [sym_float] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_multiline_string] = ACTIONS(93), - [sym_character] = ACTIONS(93), - [sym_comment] = ACTIONS(3), - }, - [STATE(1012)] = { - [sym_type] = STATE(2205), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2239), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_LBRACE] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1013)] = { - [sym_type] = STATE(2210), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(2233), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1014)] = { - [sym_type] = STATE(2211), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2237), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1015)] = { - [ts_builtin_sym_end] = ACTIONS(2241), - [sym_identifier] = ACTIONS(2243), - [anon_sym_import] = ACTIONS(2243), - [anon_sym_test] = ACTIONS(2243), - [anon_sym_hide] = ACTIONS(2243), - [anon_sym_func] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_void] = ACTIONS(2243), - [anon_sym_anyopaque] = ACTIONS(2243), - [anon_sym_bool] = ACTIONS(2243), - [anon_sym_int] = ACTIONS(2243), - [anon_sym_uint] = ACTIONS(2243), - [anon_sym_float] = ACTIONS(2243), - [anon_sym_range] = ACTIONS(2243), - [anon_sym_i8] = ACTIONS(2243), - [anon_sym_i16] = ACTIONS(2243), - [anon_sym_i32] = ACTIONS(2243), - [anon_sym_i64] = ACTIONS(2243), - [anon_sym_u8] = ACTIONS(2243), - [anon_sym_u16] = ACTIONS(2243), - [anon_sym_u32] = ACTIONS(2243), - [anon_sym_u64] = ACTIONS(2243), - [anon_sym_isize] = ACTIONS(2243), - [anon_sym_usize] = ACTIONS(2243), - [anon_sym_f32] = ACTIONS(2243), - [anon_sym_f64] = ACTIONS(2243), - [anon_sym_c_char] = ACTIONS(2243), - [anon_sym_c_schar] = ACTIONS(2243), - [anon_sym_c_uchar] = ACTIONS(2243), - [anon_sym_c_short] = ACTIONS(2243), - [anon_sym_c_ushort] = ACTIONS(2243), - [anon_sym_c_int] = ACTIONS(2243), - [anon_sym_c_uint] = ACTIONS(2243), - [anon_sym_c_long] = ACTIONS(2243), - [anon_sym_c_ulong] = ACTIONS(2243), - [anon_sym_c_longlong] = ACTIONS(2243), - [anon_sym_c_ulonglong] = ACTIONS(2243), - [anon_sym_c_float] = ACTIONS(2243), - [anon_sym_c_double] = ACTIONS(2243), - [anon_sym_c_longdouble] = ACTIONS(2243), - [anon_sym_return] = ACTIONS(2243), - [anon_sym_yield] = ACTIONS(2243), - [anon_sym_COLON] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2243), - [anon_sym_continue] = ACTIONS(2243), - [anon_sym_defer] = ACTIONS(2243), - [anon_sym_errdefer] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(2243), - [anon_sym_else] = ACTIONS(2243), - [anon_sym_while] = ACTIONS(2243), - [anon_sym_expand] = ACTIONS(2243), - [anon_sym_for] = ACTIONS(2243), - [anon_sym_match] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2243), - [anon_sym_DOT] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(2243), - [anon_sym_false] = ACTIONS(2243), - [sym_none] = ACTIONS(2243), - [sym_undefined] = ACTIONS(2243), - [sym_sink] = ACTIONS(2243), - [sym_integer] = ACTIONS(2243), - [sym_float] = ACTIONS(2241), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym_multiline_string] = ACTIONS(2241), - [sym_character] = ACTIONS(2241), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2241), - }, - [STATE(1016)] = { - [sym_type] = STATE(2205), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(2239), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_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(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), - }, - [STATE(1017)] = { - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_import] = ACTIONS(2249), - [anon_sym_test] = ACTIONS(2249), - [anon_sym_hide] = ACTIONS(2249), - [anon_sym_func] = ACTIONS(2249), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_void] = ACTIONS(2249), - [anon_sym_anyopaque] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_int] = ACTIONS(2249), - [anon_sym_uint] = ACTIONS(2249), - [anon_sym_float] = ACTIONS(2249), - [anon_sym_range] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_c_char] = ACTIONS(2249), - [anon_sym_c_schar] = ACTIONS(2249), - [anon_sym_c_uchar] = ACTIONS(2249), - [anon_sym_c_short] = ACTIONS(2249), - [anon_sym_c_ushort] = ACTIONS(2249), - [anon_sym_c_int] = ACTIONS(2249), - [anon_sym_c_uint] = ACTIONS(2249), - [anon_sym_c_long] = ACTIONS(2249), - [anon_sym_c_ulong] = ACTIONS(2249), - [anon_sym_c_longlong] = ACTIONS(2249), - [anon_sym_c_ulonglong] = ACTIONS(2249), - [anon_sym_c_float] = ACTIONS(2249), - [anon_sym_c_double] = ACTIONS(2249), - [anon_sym_c_longdouble] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_COLON] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_defer] = ACTIONS(2249), - [anon_sym_errdefer] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_else] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_expand] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2249), - [anon_sym_DOT] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [sym_none] = ACTIONS(2249), - [sym_undefined] = ACTIONS(2249), - [sym_sink] = ACTIONS(2249), - [sym_integer] = ACTIONS(2249), - [sym_float] = ACTIONS(2247), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_multiline_string] = ACTIONS(2247), - [sym_character] = ACTIONS(2247), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2371), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2735), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(970), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2247), }, - [STATE(1018)] = { - [sym_type] = STATE(2226), - [sym__type_atom] = STATE(387), - [sym_named_type] = STATE(387), - [sym_optional_type] = STATE(387), - [sym_pointer_type] = STATE(387), - [sym_array_type] = STATE(387), - [sym_function_type] = STATE(387), - [sym_builtin_type] = STATE(387), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(2235), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_EQ] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_RPAREN] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1006), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(1019), + [STATE(967)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2411), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(974), + [aux_sym_tuple_literal_repeat1] = STATE(976), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2251), + }, + [STATE(968)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3289), + [sym_expression_statement] = STATE(3289), + [sym_expression] = STATE(2278), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(969)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2448), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2760), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1031), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2257), + }, + [STATE(970)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2383), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2613), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(971)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(972)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(973)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(952), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2263), + }, + [STATE(974)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2415), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1745), + [aux_sym_tuple_literal_repeat1] = STATE(992), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2267), + }, + [STATE(975)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(953), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2269), + }, + [STATE(976)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2415), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3158), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2271), + }, + [STATE(977)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2455), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2676), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2275), + }, + [STATE(978)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2388), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1019), + [aux_sym_tuple_literal_repeat1] = STATE(1027), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2279), + }, + [STATE(979)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2416), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3204), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2283), + }, + [STATE(980)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(981)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(982)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2415), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(993), + [aux_sym_tuple_literal_repeat1] = STATE(992), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2287), + }, + [STATE(983)] = { + [sym_type] = STATE(2076), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_mut] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_RBRACK] = ACTIONS(253), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(984)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2394), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3168), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2294), + }, + [STATE(985)] = { + [sym_type] = STATE(2080), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_COMMA] = ACTIONS(253), + [anon_sym_RBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1936), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_mut] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_RBRACK] = ACTIONS(253), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(986)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1013), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2296), + }, + [STATE(987)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3311), + [sym_expression_statement] = STATE(3311), + [sym_expression] = STATE(2278), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(988)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3317), + [sym_expression_statement] = STATE(3317), + [sym_expression] = STATE(2259), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(968), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2298), + }, + [STATE(989)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_assignment_statement] = STATE(2765), + [sym_expression_statement] = STATE(2765), + [sym_expression] = STATE(2260), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), [anon_sym_void] = ACTIONS(41), [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), @@ -111208,14968 +117384,38154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(41), [anon_sym_c_double] = ACTIONS(41), [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_PLUS_EQ] = ACTIONS(1011), - [anon_sym_DASH_EQ] = ACTIONS(1011), - [anon_sym_STAR_EQ] = ACTIONS(1011), - [anon_sym_SLASH_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_orelse] = ACTIONS(1006), - [anon_sym_catch] = ACTIONS(1006), - [anon_sym_or] = ACTIONS(1006), - [anon_sym_and] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1011), - [anon_sym_BANG_EQ] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1011), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1006), - [anon_sym_SLASH] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1006), - [anon_sym_CARET] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1011), + [sym__newline] = ACTIONS(2302), + }, + [STATE(990)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(995), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2306), + }, + [STATE(991)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2423), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2657), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(992)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2417), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3235), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2312), + }, + [STATE(993)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2417), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1750), + [aux_sym_tuple_literal_repeat1] = STATE(1001), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2314), + }, + [STATE(994)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1014), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2316), + }, + [STATE(995)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(996)] = { + [sym_type] = STATE(2098), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1925), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_mut] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(305), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(997)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2320), + }, + [STATE(998)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1005), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2322), + }, + [STATE(999)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1007), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2324), + }, + [STATE(1000)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2379), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2752), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1001)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2412), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3302), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2330), + }, + [STATE(1002)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2390), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3173), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2332), + }, + [STATE(1003)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1017), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2336), + }, + [STATE(1004)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2434), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2671), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1005)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1006)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2394), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1749), + [aux_sym_tuple_literal_repeat1] = STATE(979), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2342), + }, + [STATE(1007)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1008)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1010), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2344), + }, + [STATE(1009)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1011), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2346), + }, + [STATE(1010)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1011)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1012)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1015), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2350), + }, + [STATE(1013)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1014)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1015)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1016)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(949), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2356), + }, + [STATE(1017)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1018)] = { + [sym_type] = STATE(2081), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_RPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_COMMA] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(333), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(333), + [anon_sym_else] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_LT_LT_PIPE] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(333), }, [STATE(1019)] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [anon_sym_import] = ACTIONS(2255), - [anon_sym_test] = ACTIONS(2255), - [anon_sym_hide] = ACTIONS(2255), - [anon_sym_func] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_void] = ACTIONS(2255), - [anon_sym_anyopaque] = ACTIONS(2255), - [anon_sym_bool] = ACTIONS(2255), - [anon_sym_int] = ACTIONS(2255), - [anon_sym_uint] = ACTIONS(2255), - [anon_sym_float] = ACTIONS(2255), - [anon_sym_range] = ACTIONS(2255), - [anon_sym_i8] = ACTIONS(2255), - [anon_sym_i16] = ACTIONS(2255), - [anon_sym_i32] = ACTIONS(2255), - [anon_sym_i64] = ACTIONS(2255), - [anon_sym_u8] = ACTIONS(2255), - [anon_sym_u16] = ACTIONS(2255), - [anon_sym_u32] = ACTIONS(2255), - [anon_sym_u64] = ACTIONS(2255), - [anon_sym_isize] = ACTIONS(2255), - [anon_sym_usize] = ACTIONS(2255), - [anon_sym_f32] = ACTIONS(2255), - [anon_sym_f64] = ACTIONS(2255), - [anon_sym_c_char] = ACTIONS(2255), - [anon_sym_c_schar] = ACTIONS(2255), - [anon_sym_c_uchar] = ACTIONS(2255), - [anon_sym_c_short] = ACTIONS(2255), - [anon_sym_c_ushort] = ACTIONS(2255), - [anon_sym_c_int] = ACTIONS(2255), - [anon_sym_c_uint] = ACTIONS(2255), - [anon_sym_c_long] = ACTIONS(2255), - [anon_sym_c_ulong] = ACTIONS(2255), - [anon_sym_c_longlong] = ACTIONS(2255), - [anon_sym_c_ulonglong] = ACTIONS(2255), - [anon_sym_c_float] = ACTIONS(2255), - [anon_sym_c_double] = ACTIONS(2255), - [anon_sym_c_longdouble] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_yield] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_defer] = ACTIONS(2255), - [anon_sym_errdefer] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_else] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [anon_sym_expand] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2255), - [anon_sym_DOT] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2255), - [anon_sym_false] = ACTIONS(2255), - [sym_none] = ACTIONS(2255), - [sym_undefined] = ACTIONS(2255), - [sym_sink] = ACTIONS(2255), - [sym_integer] = ACTIONS(2255), - [sym_float] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym_multiline_string] = ACTIONS(2253), - [sym_character] = ACTIONS(2253), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2392), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1748), + [aux_sym_tuple_literal_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2253), + [sym__newline] = ACTIONS(2363), }, [STATE(1020)] = { - [ts_builtin_sym_end] = ACTIONS(2257), - [sym_identifier] = ACTIONS(2259), - [anon_sym_import] = ACTIONS(2259), - [anon_sym_test] = ACTIONS(2259), - [anon_sym_hide] = ACTIONS(2259), - [anon_sym_func] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2259), - [anon_sym_anyopaque] = ACTIONS(2259), - [anon_sym_bool] = ACTIONS(2259), - [anon_sym_int] = ACTIONS(2259), - [anon_sym_uint] = ACTIONS(2259), - [anon_sym_float] = ACTIONS(2259), - [anon_sym_range] = ACTIONS(2259), - [anon_sym_i8] = ACTIONS(2259), - [anon_sym_i16] = ACTIONS(2259), - [anon_sym_i32] = ACTIONS(2259), - [anon_sym_i64] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2259), - [anon_sym_u16] = ACTIONS(2259), - [anon_sym_u32] = ACTIONS(2259), - [anon_sym_u64] = ACTIONS(2259), - [anon_sym_isize] = ACTIONS(2259), - [anon_sym_usize] = ACTIONS(2259), - [anon_sym_f32] = ACTIONS(2259), - [anon_sym_f64] = ACTIONS(2259), - [anon_sym_c_char] = ACTIONS(2259), - [anon_sym_c_schar] = ACTIONS(2259), - [anon_sym_c_uchar] = ACTIONS(2259), - [anon_sym_c_short] = ACTIONS(2259), - [anon_sym_c_ushort] = ACTIONS(2259), - [anon_sym_c_int] = ACTIONS(2259), - [anon_sym_c_uint] = ACTIONS(2259), - [anon_sym_c_long] = ACTIONS(2259), - [anon_sym_c_ulong] = ACTIONS(2259), - [anon_sym_c_longlong] = ACTIONS(2259), - [anon_sym_c_ulonglong] = ACTIONS(2259), - [anon_sym_c_float] = ACTIONS(2259), - [anon_sym_c_double] = ACTIONS(2259), - [anon_sym_c_longdouble] = ACTIONS(2259), - [anon_sym_return] = ACTIONS(2259), - [anon_sym_yield] = ACTIONS(2259), - [anon_sym_break] = ACTIONS(2259), - [anon_sym_continue] = ACTIONS(2259), - [anon_sym_defer] = ACTIONS(2259), - [anon_sym_errdefer] = ACTIONS(2259), - [anon_sym_if] = ACTIONS(2259), - [anon_sym_else] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2259), - [anon_sym_expand] = ACTIONS(2259), - [anon_sym_for] = ACTIONS(2259), - [anon_sym_match] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2259), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_true] = ACTIONS(2259), - [anon_sym_false] = ACTIONS(2259), - [sym_none] = ACTIONS(2259), - [sym_undefined] = ACTIONS(2259), - [sym_sink] = ACTIONS(2259), - [sym_integer] = ACTIONS(2259), - [sym_float] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [sym_multiline_string] = ACTIONS(2257), - [sym_character] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2257), - }, - [STATE(1021)] = { - [ts_builtin_sym_end] = ACTIONS(2261), - [sym_identifier] = ACTIONS(2263), - [anon_sym_import] = ACTIONS(2263), - [anon_sym_test] = ACTIONS(2263), - [anon_sym_hide] = ACTIONS(2263), - [anon_sym_func] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(2261), - [anon_sym_LBRACE] = ACTIONS(2261), - [anon_sym_RBRACE] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2261), - [anon_sym_DOLLAR] = ACTIONS(2261), - [anon_sym_LBRACK] = ACTIONS(2261), - [anon_sym_void] = ACTIONS(2263), - [anon_sym_anyopaque] = ACTIONS(2263), - [anon_sym_bool] = ACTIONS(2263), - [anon_sym_int] = ACTIONS(2263), - [anon_sym_uint] = ACTIONS(2263), - [anon_sym_float] = ACTIONS(2263), - [anon_sym_range] = ACTIONS(2263), - [anon_sym_i8] = ACTIONS(2263), - [anon_sym_i16] = ACTIONS(2263), - [anon_sym_i32] = ACTIONS(2263), - [anon_sym_i64] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2263), - [anon_sym_u16] = ACTIONS(2263), - [anon_sym_u32] = ACTIONS(2263), - [anon_sym_u64] = ACTIONS(2263), - [anon_sym_isize] = ACTIONS(2263), - [anon_sym_usize] = ACTIONS(2263), - [anon_sym_f32] = ACTIONS(2263), - [anon_sym_f64] = ACTIONS(2263), - [anon_sym_c_char] = ACTIONS(2263), - [anon_sym_c_schar] = ACTIONS(2263), - [anon_sym_c_uchar] = ACTIONS(2263), - [anon_sym_c_short] = ACTIONS(2263), - [anon_sym_c_ushort] = ACTIONS(2263), - [anon_sym_c_int] = ACTIONS(2263), - [anon_sym_c_uint] = ACTIONS(2263), - [anon_sym_c_long] = ACTIONS(2263), - [anon_sym_c_ulong] = ACTIONS(2263), - [anon_sym_c_longlong] = ACTIONS(2263), - [anon_sym_c_ulonglong] = ACTIONS(2263), - [anon_sym_c_float] = ACTIONS(2263), - [anon_sym_c_double] = ACTIONS(2263), - [anon_sym_c_longdouble] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_yield] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_defer] = ACTIONS(2263), - [anon_sym_errdefer] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_expand] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_match] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_DOT] = ACTIONS(2261), - [anon_sym_true] = ACTIONS(2263), - [anon_sym_false] = ACTIONS(2263), - [sym_none] = ACTIONS(2263), - [sym_undefined] = ACTIONS(2263), - [sym_sink] = ACTIONS(2263), - [sym_integer] = ACTIONS(2263), - [sym_float] = ACTIONS(2261), - [anon_sym_DQUOTE] = ACTIONS(2261), - [sym_multiline_string] = ACTIONS(2261), - [sym_character] = ACTIONS(2261), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2261), - }, - [STATE(1022)] = { - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2267), - [anon_sym_import] = ACTIONS(2267), - [anon_sym_test] = ACTIONS(2267), - [anon_sym_hide] = ACTIONS(2267), - [anon_sym_func] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_void] = ACTIONS(2267), - [anon_sym_anyopaque] = ACTIONS(2267), - [anon_sym_bool] = ACTIONS(2267), - [anon_sym_int] = ACTIONS(2267), - [anon_sym_uint] = ACTIONS(2267), - [anon_sym_float] = ACTIONS(2267), - [anon_sym_range] = ACTIONS(2267), - [anon_sym_i8] = ACTIONS(2267), - [anon_sym_i16] = ACTIONS(2267), - [anon_sym_i32] = ACTIONS(2267), - [anon_sym_i64] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2267), - [anon_sym_u16] = ACTIONS(2267), - [anon_sym_u32] = ACTIONS(2267), - [anon_sym_u64] = ACTIONS(2267), - [anon_sym_isize] = ACTIONS(2267), - [anon_sym_usize] = ACTIONS(2267), - [anon_sym_f32] = ACTIONS(2267), - [anon_sym_f64] = ACTIONS(2267), - [anon_sym_c_char] = ACTIONS(2267), - [anon_sym_c_schar] = ACTIONS(2267), - [anon_sym_c_uchar] = ACTIONS(2267), - [anon_sym_c_short] = ACTIONS(2267), - [anon_sym_c_ushort] = ACTIONS(2267), - [anon_sym_c_int] = ACTIONS(2267), - [anon_sym_c_uint] = ACTIONS(2267), - [anon_sym_c_long] = ACTIONS(2267), - [anon_sym_c_ulong] = ACTIONS(2267), - [anon_sym_c_longlong] = ACTIONS(2267), - [anon_sym_c_ulonglong] = ACTIONS(2267), - [anon_sym_c_float] = ACTIONS(2267), - [anon_sym_c_double] = ACTIONS(2267), - [anon_sym_c_longdouble] = ACTIONS(2267), - [anon_sym_return] = ACTIONS(2267), - [anon_sym_yield] = ACTIONS(2267), - [anon_sym_break] = ACTIONS(2267), - [anon_sym_continue] = ACTIONS(2267), - [anon_sym_defer] = ACTIONS(2267), - [anon_sym_errdefer] = ACTIONS(2267), - [anon_sym_if] = ACTIONS(2267), - [anon_sym_else] = ACTIONS(2267), - [anon_sym_while] = ACTIONS(2267), - [anon_sym_expand] = ACTIONS(2267), - [anon_sym_for] = ACTIONS(2267), - [anon_sym_match] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2267), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2267), - [anon_sym_false] = ACTIONS(2267), - [sym_none] = ACTIONS(2267), - [sym_undefined] = ACTIONS(2267), - [sym_sink] = ACTIONS(2267), - [sym_integer] = ACTIONS(2267), - [sym_float] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_multiline_string] = ACTIONS(2265), - [sym_character] = ACTIONS(2265), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2265), - }, - [STATE(1023)] = { - [ts_builtin_sym_end] = ACTIONS(2269), - [sym_identifier] = ACTIONS(2271), - [anon_sym_import] = ACTIONS(2271), - [anon_sym_test] = ACTIONS(2271), - [anon_sym_hide] = ACTIONS(2271), - [anon_sym_func] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2269), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2269), - [anon_sym_DOLLAR] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2269), - [anon_sym_void] = ACTIONS(2271), - [anon_sym_anyopaque] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_int] = ACTIONS(2271), - [anon_sym_uint] = ACTIONS(2271), - [anon_sym_float] = ACTIONS(2271), - [anon_sym_range] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_c_char] = ACTIONS(2271), - [anon_sym_c_schar] = ACTIONS(2271), - [anon_sym_c_uchar] = ACTIONS(2271), - [anon_sym_c_short] = ACTIONS(2271), - [anon_sym_c_ushort] = ACTIONS(2271), - [anon_sym_c_int] = ACTIONS(2271), - [anon_sym_c_uint] = ACTIONS(2271), - [anon_sym_c_long] = ACTIONS(2271), - [anon_sym_c_ulong] = ACTIONS(2271), - [anon_sym_c_longlong] = ACTIONS(2271), - [anon_sym_c_ulonglong] = ACTIONS(2271), - [anon_sym_c_float] = ACTIONS(2271), - [anon_sym_c_double] = ACTIONS(2271), - [anon_sym_c_longdouble] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_yield] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_defer] = ACTIONS(2271), - [anon_sym_errdefer] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_else] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [anon_sym_expand] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2271), - [anon_sym_DOT] = ACTIONS(2269), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [sym_none] = ACTIONS(2271), - [sym_undefined] = ACTIONS(2271), - [sym_sink] = ACTIONS(2271), - [sym_integer] = ACTIONS(2271), - [sym_float] = ACTIONS(2269), - [anon_sym_DQUOTE] = ACTIONS(2269), - [sym_multiline_string] = ACTIONS(2269), - [sym_character] = ACTIONS(2269), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2269), - }, - [STATE(1024)] = { - [ts_builtin_sym_end] = ACTIONS(2273), - [sym_identifier] = ACTIONS(2275), - [anon_sym_import] = ACTIONS(2275), - [anon_sym_test] = ACTIONS(2275), - [anon_sym_hide] = ACTIONS(2275), - [anon_sym_func] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_RPAREN] = ACTIONS(2273), - [anon_sym_LBRACE] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_LBRACK] = ACTIONS(2273), - [anon_sym_void] = ACTIONS(2275), - [anon_sym_anyopaque] = ACTIONS(2275), - [anon_sym_bool] = ACTIONS(2275), - [anon_sym_int] = ACTIONS(2275), - [anon_sym_uint] = ACTIONS(2275), - [anon_sym_float] = ACTIONS(2275), - [anon_sym_range] = ACTIONS(2275), - [anon_sym_i8] = ACTIONS(2275), - [anon_sym_i16] = ACTIONS(2275), - [anon_sym_i32] = ACTIONS(2275), - [anon_sym_i64] = ACTIONS(2275), - [anon_sym_u8] = ACTIONS(2275), - [anon_sym_u16] = ACTIONS(2275), - [anon_sym_u32] = ACTIONS(2275), - [anon_sym_u64] = ACTIONS(2275), - [anon_sym_isize] = ACTIONS(2275), - [anon_sym_usize] = ACTIONS(2275), - [anon_sym_f32] = ACTIONS(2275), - [anon_sym_f64] = ACTIONS(2275), - [anon_sym_c_char] = ACTIONS(2275), - [anon_sym_c_schar] = ACTIONS(2275), - [anon_sym_c_uchar] = ACTIONS(2275), - [anon_sym_c_short] = ACTIONS(2275), - [anon_sym_c_ushort] = ACTIONS(2275), - [anon_sym_c_int] = ACTIONS(2275), - [anon_sym_c_uint] = ACTIONS(2275), - [anon_sym_c_long] = ACTIONS(2275), - [anon_sym_c_ulong] = ACTIONS(2275), - [anon_sym_c_longlong] = ACTIONS(2275), - [anon_sym_c_ulonglong] = ACTIONS(2275), - [anon_sym_c_float] = ACTIONS(2275), - [anon_sym_c_double] = ACTIONS(2275), - [anon_sym_c_longdouble] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_yield] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_defer] = ACTIONS(2275), - [anon_sym_errdefer] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_else] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [anon_sym_expand] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2275), - [anon_sym_DOT] = ACTIONS(2273), - [anon_sym_true] = ACTIONS(2275), - [anon_sym_false] = ACTIONS(2275), - [sym_none] = ACTIONS(2275), - [sym_undefined] = ACTIONS(2275), - [sym_sink] = ACTIONS(2275), - [sym_integer] = ACTIONS(2275), - [sym_float] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym_multiline_string] = ACTIONS(2273), - [sym_character] = ACTIONS(2273), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2273), - }, - [STATE(1025)] = { - [ts_builtin_sym_end] = ACTIONS(2277), - [sym_identifier] = ACTIONS(2279), - [anon_sym_import] = ACTIONS(2279), - [anon_sym_test] = ACTIONS(2279), - [anon_sym_hide] = ACTIONS(2279), - [anon_sym_func] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_RPAREN] = ACTIONS(2277), - [anon_sym_LBRACE] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_LBRACK] = ACTIONS(2277), - [anon_sym_void] = ACTIONS(2279), - [anon_sym_anyopaque] = ACTIONS(2279), - [anon_sym_bool] = ACTIONS(2279), - [anon_sym_int] = ACTIONS(2279), - [anon_sym_uint] = ACTIONS(2279), - [anon_sym_float] = ACTIONS(2279), - [anon_sym_range] = ACTIONS(2279), - [anon_sym_i8] = ACTIONS(2279), - [anon_sym_i16] = ACTIONS(2279), - [anon_sym_i32] = ACTIONS(2279), - [anon_sym_i64] = ACTIONS(2279), - [anon_sym_u8] = ACTIONS(2279), - [anon_sym_u16] = ACTIONS(2279), - [anon_sym_u32] = ACTIONS(2279), - [anon_sym_u64] = ACTIONS(2279), - [anon_sym_isize] = ACTIONS(2279), - [anon_sym_usize] = ACTIONS(2279), - [anon_sym_f32] = ACTIONS(2279), - [anon_sym_f64] = ACTIONS(2279), - [anon_sym_c_char] = ACTIONS(2279), - [anon_sym_c_schar] = ACTIONS(2279), - [anon_sym_c_uchar] = ACTIONS(2279), - [anon_sym_c_short] = ACTIONS(2279), - [anon_sym_c_ushort] = ACTIONS(2279), - [anon_sym_c_int] = ACTIONS(2279), - [anon_sym_c_uint] = ACTIONS(2279), - [anon_sym_c_long] = ACTIONS(2279), - [anon_sym_c_ulong] = ACTIONS(2279), - [anon_sym_c_longlong] = ACTIONS(2279), - [anon_sym_c_ulonglong] = ACTIONS(2279), - [anon_sym_c_float] = ACTIONS(2279), - [anon_sym_c_double] = ACTIONS(2279), - [anon_sym_c_longdouble] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_yield] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_defer] = ACTIONS(2279), - [anon_sym_errdefer] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [anon_sym_expand] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2279), - [anon_sym_DOT] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(2279), - [anon_sym_false] = ACTIONS(2279), - [sym_none] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [sym_sink] = ACTIONS(2279), - [sym_integer] = ACTIONS(2279), - [sym_float] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym_multiline_string] = ACTIONS(2277), - [sym_character] = ACTIONS(2277), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2277), - }, - [STATE(1026)] = { - [ts_builtin_sym_end] = ACTIONS(2281), - [sym_identifier] = ACTIONS(2283), - [anon_sym_import] = ACTIONS(2283), - [anon_sym_test] = ACTIONS(2283), - [anon_sym_hide] = ACTIONS(2283), - [anon_sym_func] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_RPAREN] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_void] = ACTIONS(2283), - [anon_sym_anyopaque] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_int] = ACTIONS(2283), - [anon_sym_uint] = ACTIONS(2283), - [anon_sym_float] = ACTIONS(2283), - [anon_sym_range] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_c_char] = ACTIONS(2283), - [anon_sym_c_schar] = ACTIONS(2283), - [anon_sym_c_uchar] = ACTIONS(2283), - [anon_sym_c_short] = ACTIONS(2283), - [anon_sym_c_ushort] = ACTIONS(2283), - [anon_sym_c_int] = ACTIONS(2283), - [anon_sym_c_uint] = ACTIONS(2283), - [anon_sym_c_long] = ACTIONS(2283), - [anon_sym_c_ulong] = ACTIONS(2283), - [anon_sym_c_longlong] = ACTIONS(2283), - [anon_sym_c_ulonglong] = ACTIONS(2283), - [anon_sym_c_float] = ACTIONS(2283), - [anon_sym_c_double] = ACTIONS(2283), - [anon_sym_c_longdouble] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_yield] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_defer] = ACTIONS(2283), - [anon_sym_errdefer] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_else] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [anon_sym_expand] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2283), - [anon_sym_DOT] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(2283), - [anon_sym_false] = ACTIONS(2283), - [sym_none] = ACTIONS(2283), - [sym_undefined] = ACTIONS(2283), - [sym_sink] = ACTIONS(2283), - [sym_integer] = ACTIONS(2283), - [sym_float] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [sym_multiline_string] = ACTIONS(2281), - [sym_character] = ACTIONS(2281), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2281), - }, - [STATE(1027)] = { - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_identifier] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_test] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_func] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_anyopaque] = ACTIONS(2287), - [anon_sym_bool] = ACTIONS(2287), - [anon_sym_int] = ACTIONS(2287), - [anon_sym_uint] = ACTIONS(2287), - [anon_sym_float] = ACTIONS(2287), - [anon_sym_range] = ACTIONS(2287), - [anon_sym_i8] = ACTIONS(2287), - [anon_sym_i16] = ACTIONS(2287), - [anon_sym_i32] = ACTIONS(2287), - [anon_sym_i64] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2287), - [anon_sym_u16] = ACTIONS(2287), - [anon_sym_u32] = ACTIONS(2287), - [anon_sym_u64] = ACTIONS(2287), - [anon_sym_isize] = ACTIONS(2287), - [anon_sym_usize] = ACTIONS(2287), - [anon_sym_f32] = ACTIONS(2287), - [anon_sym_f64] = ACTIONS(2287), - [anon_sym_c_char] = ACTIONS(2287), - [anon_sym_c_schar] = ACTIONS(2287), - [anon_sym_c_uchar] = ACTIONS(2287), - [anon_sym_c_short] = ACTIONS(2287), - [anon_sym_c_ushort] = ACTIONS(2287), - [anon_sym_c_int] = ACTIONS(2287), - [anon_sym_c_uint] = ACTIONS(2287), - [anon_sym_c_long] = ACTIONS(2287), - [anon_sym_c_ulong] = ACTIONS(2287), - [anon_sym_c_longlong] = ACTIONS(2287), - [anon_sym_c_ulonglong] = ACTIONS(2287), - [anon_sym_c_float] = ACTIONS(2287), - [anon_sym_c_double] = ACTIONS(2287), - [anon_sym_c_longdouble] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_defer] = ACTIONS(2287), - [anon_sym_errdefer] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_expand] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [sym_none] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [sym_sink] = ACTIONS(2287), - [sym_integer] = ACTIONS(2287), - [sym_float] = ACTIONS(2285), - [anon_sym_DQUOTE] = ACTIONS(2285), - [sym_multiline_string] = ACTIONS(2285), - [sym_character] = ACTIONS(2285), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2285), - }, - [STATE(1028)] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2291), - [anon_sym_import] = ACTIONS(2291), - [anon_sym_test] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_func] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_void] = ACTIONS(2291), - [anon_sym_anyopaque] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_int] = ACTIONS(2291), - [anon_sym_uint] = ACTIONS(2291), - [anon_sym_float] = ACTIONS(2291), - [anon_sym_range] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_c_char] = ACTIONS(2291), - [anon_sym_c_schar] = ACTIONS(2291), - [anon_sym_c_uchar] = ACTIONS(2291), - [anon_sym_c_short] = ACTIONS(2291), - [anon_sym_c_ushort] = ACTIONS(2291), - [anon_sym_c_int] = ACTIONS(2291), - [anon_sym_c_uint] = ACTIONS(2291), - [anon_sym_c_long] = ACTIONS(2291), - [anon_sym_c_ulong] = ACTIONS(2291), - [anon_sym_c_longlong] = ACTIONS(2291), - [anon_sym_c_ulonglong] = ACTIONS(2291), - [anon_sym_c_float] = ACTIONS(2291), - [anon_sym_c_double] = ACTIONS(2291), - [anon_sym_c_longdouble] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_defer] = ACTIONS(2291), - [anon_sym_errdefer] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_expand] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [sym_none] = ACTIONS(2291), - [sym_undefined] = ACTIONS(2291), - [sym_sink] = ACTIONS(2291), - [sym_integer] = ACTIONS(2291), - [sym_float] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_multiline_string] = ACTIONS(2289), - [sym_character] = ACTIONS(2289), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2289), - }, - [STATE(1029)] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [sym_identifier] = ACTIONS(2295), - [anon_sym_import] = ACTIONS(2295), - [anon_sym_test] = ACTIONS(2295), - [anon_sym_hide] = ACTIONS(2295), - [anon_sym_func] = ACTIONS(2295), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_RPAREN] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_void] = ACTIONS(2295), - [anon_sym_anyopaque] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_int] = ACTIONS(2295), - [anon_sym_uint] = ACTIONS(2295), - [anon_sym_float] = ACTIONS(2295), - [anon_sym_range] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_c_char] = ACTIONS(2295), - [anon_sym_c_schar] = ACTIONS(2295), - [anon_sym_c_uchar] = ACTIONS(2295), - [anon_sym_c_short] = ACTIONS(2295), - [anon_sym_c_ushort] = ACTIONS(2295), - [anon_sym_c_int] = ACTIONS(2295), - [anon_sym_c_uint] = ACTIONS(2295), - [anon_sym_c_long] = ACTIONS(2295), - [anon_sym_c_ulong] = ACTIONS(2295), - [anon_sym_c_longlong] = ACTIONS(2295), - [anon_sym_c_ulonglong] = ACTIONS(2295), - [anon_sym_c_float] = ACTIONS(2295), - [anon_sym_c_double] = ACTIONS(2295), - [anon_sym_c_longdouble] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_defer] = ACTIONS(2295), - [anon_sym_errdefer] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_else] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_expand] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2295), - [anon_sym_DOT] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [sym_none] = ACTIONS(2295), - [sym_undefined] = ACTIONS(2295), - [sym_sink] = ACTIONS(2295), - [sym_integer] = ACTIONS(2295), - [sym_float] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_multiline_string] = ACTIONS(2293), - [sym_character] = ACTIONS(2293), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2293), - }, - [STATE(1030)] = { - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2299), - [anon_sym_import] = ACTIONS(2299), - [anon_sym_test] = ACTIONS(2299), - [anon_sym_hide] = ACTIONS(2299), - [anon_sym_func] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2299), - [anon_sym_anyopaque] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_int] = ACTIONS(2299), - [anon_sym_uint] = ACTIONS(2299), - [anon_sym_float] = ACTIONS(2299), - [anon_sym_range] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_c_char] = ACTIONS(2299), - [anon_sym_c_schar] = ACTIONS(2299), - [anon_sym_c_uchar] = ACTIONS(2299), - [anon_sym_c_short] = ACTIONS(2299), - [anon_sym_c_ushort] = ACTIONS(2299), - [anon_sym_c_int] = ACTIONS(2299), - [anon_sym_c_uint] = ACTIONS(2299), - [anon_sym_c_long] = ACTIONS(2299), - [anon_sym_c_ulong] = ACTIONS(2299), - [anon_sym_c_longlong] = ACTIONS(2299), - [anon_sym_c_ulonglong] = ACTIONS(2299), - [anon_sym_c_float] = ACTIONS(2299), - [anon_sym_c_double] = ACTIONS(2299), - [anon_sym_c_longdouble] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_defer] = ACTIONS(2299), - [anon_sym_errdefer] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_else] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_expand] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2299), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [sym_none] = ACTIONS(2299), - [sym_undefined] = ACTIONS(2299), - [sym_sink] = ACTIONS(2299), - [sym_integer] = ACTIONS(2299), - [sym_float] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym_multiline_string] = ACTIONS(2297), - [sym_character] = ACTIONS(2297), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2297), - }, - [STATE(1031)] = { - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_import] = ACTIONS(2303), - [anon_sym_test] = ACTIONS(2303), - [anon_sym_hide] = ACTIONS(2303), - [anon_sym_func] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_RPAREN] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_void] = ACTIONS(2303), - [anon_sym_anyopaque] = ACTIONS(2303), - [anon_sym_bool] = ACTIONS(2303), - [anon_sym_int] = ACTIONS(2303), - [anon_sym_uint] = ACTIONS(2303), - [anon_sym_float] = ACTIONS(2303), - [anon_sym_range] = ACTIONS(2303), - [anon_sym_i8] = ACTIONS(2303), - [anon_sym_i16] = ACTIONS(2303), - [anon_sym_i32] = ACTIONS(2303), - [anon_sym_i64] = ACTIONS(2303), - [anon_sym_u8] = ACTIONS(2303), - [anon_sym_u16] = ACTIONS(2303), - [anon_sym_u32] = ACTIONS(2303), - [anon_sym_u64] = ACTIONS(2303), - [anon_sym_isize] = ACTIONS(2303), - [anon_sym_usize] = ACTIONS(2303), - [anon_sym_f32] = ACTIONS(2303), - [anon_sym_f64] = ACTIONS(2303), - [anon_sym_c_char] = ACTIONS(2303), - [anon_sym_c_schar] = ACTIONS(2303), - [anon_sym_c_uchar] = ACTIONS(2303), - [anon_sym_c_short] = ACTIONS(2303), - [anon_sym_c_ushort] = ACTIONS(2303), - [anon_sym_c_int] = ACTIONS(2303), - [anon_sym_c_uint] = ACTIONS(2303), - [anon_sym_c_long] = ACTIONS(2303), - [anon_sym_c_ulong] = ACTIONS(2303), - [anon_sym_c_longlong] = ACTIONS(2303), - [anon_sym_c_ulonglong] = ACTIONS(2303), - [anon_sym_c_float] = ACTIONS(2303), - [anon_sym_c_double] = ACTIONS(2303), - [anon_sym_c_longdouble] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_defer] = ACTIONS(2303), - [anon_sym_errdefer] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_else] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_expand] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2303), - [anon_sym_DOT] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [sym_none] = ACTIONS(2303), - [sym_undefined] = ACTIONS(2303), - [sym_sink] = ACTIONS(2303), - [sym_integer] = ACTIONS(2303), - [sym_float] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym_multiline_string] = ACTIONS(2301), - [sym_character] = ACTIONS(2301), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2301), - }, - [STATE(1032)] = { - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_import] = ACTIONS(2307), - [anon_sym_test] = ACTIONS(2307), - [anon_sym_hide] = ACTIONS(2307), - [anon_sym_func] = ACTIONS(2307), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_RPAREN] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_void] = ACTIONS(2307), - [anon_sym_anyopaque] = ACTIONS(2307), - [anon_sym_bool] = ACTIONS(2307), - [anon_sym_int] = ACTIONS(2307), - [anon_sym_uint] = ACTIONS(2307), - [anon_sym_float] = ACTIONS(2307), - [anon_sym_range] = ACTIONS(2307), - [anon_sym_i8] = ACTIONS(2307), - [anon_sym_i16] = ACTIONS(2307), - [anon_sym_i32] = ACTIONS(2307), - [anon_sym_i64] = ACTIONS(2307), - [anon_sym_u8] = ACTIONS(2307), - [anon_sym_u16] = ACTIONS(2307), - [anon_sym_u32] = ACTIONS(2307), - [anon_sym_u64] = ACTIONS(2307), - [anon_sym_isize] = ACTIONS(2307), - [anon_sym_usize] = ACTIONS(2307), - [anon_sym_f32] = ACTIONS(2307), - [anon_sym_f64] = ACTIONS(2307), - [anon_sym_c_char] = ACTIONS(2307), - [anon_sym_c_schar] = ACTIONS(2307), - [anon_sym_c_uchar] = ACTIONS(2307), - [anon_sym_c_short] = ACTIONS(2307), - [anon_sym_c_ushort] = ACTIONS(2307), - [anon_sym_c_int] = ACTIONS(2307), - [anon_sym_c_uint] = ACTIONS(2307), - [anon_sym_c_long] = ACTIONS(2307), - [anon_sym_c_ulong] = ACTIONS(2307), - [anon_sym_c_longlong] = ACTIONS(2307), - [anon_sym_c_ulonglong] = ACTIONS(2307), - [anon_sym_c_float] = ACTIONS(2307), - [anon_sym_c_double] = ACTIONS(2307), - [anon_sym_c_longdouble] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_defer] = ACTIONS(2307), - [anon_sym_errdefer] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_else] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_expand] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2307), - [anon_sym_DOT] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [sym_none] = ACTIONS(2307), - [sym_undefined] = ACTIONS(2307), - [sym_sink] = ACTIONS(2307), - [sym_integer] = ACTIONS(2307), - [sym_float] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym_multiline_string] = ACTIONS(2305), - [sym_character] = ACTIONS(2305), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2305), - }, - [STATE(1033)] = { - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_import] = ACTIONS(2311), - [anon_sym_test] = ACTIONS(2311), - [anon_sym_hide] = ACTIONS(2311), - [anon_sym_func] = ACTIONS(2311), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_void] = ACTIONS(2311), - [anon_sym_anyopaque] = ACTIONS(2311), - [anon_sym_bool] = ACTIONS(2311), - [anon_sym_int] = ACTIONS(2311), - [anon_sym_uint] = ACTIONS(2311), - [anon_sym_float] = ACTIONS(2311), - [anon_sym_range] = ACTIONS(2311), - [anon_sym_i8] = ACTIONS(2311), - [anon_sym_i16] = ACTIONS(2311), - [anon_sym_i32] = ACTIONS(2311), - [anon_sym_i64] = ACTIONS(2311), - [anon_sym_u8] = ACTIONS(2311), - [anon_sym_u16] = ACTIONS(2311), - [anon_sym_u32] = ACTIONS(2311), - [anon_sym_u64] = ACTIONS(2311), - [anon_sym_isize] = ACTIONS(2311), - [anon_sym_usize] = ACTIONS(2311), - [anon_sym_f32] = ACTIONS(2311), - [anon_sym_f64] = ACTIONS(2311), - [anon_sym_c_char] = ACTIONS(2311), - [anon_sym_c_schar] = ACTIONS(2311), - [anon_sym_c_uchar] = ACTIONS(2311), - [anon_sym_c_short] = ACTIONS(2311), - [anon_sym_c_ushort] = ACTIONS(2311), - [anon_sym_c_int] = ACTIONS(2311), - [anon_sym_c_uint] = ACTIONS(2311), - [anon_sym_c_long] = ACTIONS(2311), - [anon_sym_c_ulong] = ACTIONS(2311), - [anon_sym_c_longlong] = ACTIONS(2311), - [anon_sym_c_ulonglong] = ACTIONS(2311), - [anon_sym_c_float] = ACTIONS(2311), - [anon_sym_c_double] = ACTIONS(2311), - [anon_sym_c_longdouble] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_defer] = ACTIONS(2311), - [anon_sym_errdefer] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_else] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_expand] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2311), - [anon_sym_DOT] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [sym_none] = ACTIONS(2311), - [sym_undefined] = ACTIONS(2311), - [sym_sink] = ACTIONS(2311), - [sym_integer] = ACTIONS(2311), - [sym_float] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym_multiline_string] = ACTIONS(2309), - [sym_character] = ACTIONS(2309), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2309), - }, - [STATE(1034)] = { - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_import] = ACTIONS(2315), - [anon_sym_test] = ACTIONS(2315), - [anon_sym_hide] = ACTIONS(2315), - [anon_sym_func] = ACTIONS(2315), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_void] = ACTIONS(2315), - [anon_sym_anyopaque] = ACTIONS(2315), - [anon_sym_bool] = ACTIONS(2315), - [anon_sym_int] = ACTIONS(2315), - [anon_sym_uint] = ACTIONS(2315), - [anon_sym_float] = ACTIONS(2315), - [anon_sym_range] = ACTIONS(2315), - [anon_sym_i8] = ACTIONS(2315), - [anon_sym_i16] = ACTIONS(2315), - [anon_sym_i32] = ACTIONS(2315), - [anon_sym_i64] = ACTIONS(2315), - [anon_sym_u8] = ACTIONS(2315), - [anon_sym_u16] = ACTIONS(2315), - [anon_sym_u32] = ACTIONS(2315), - [anon_sym_u64] = ACTIONS(2315), - [anon_sym_isize] = ACTIONS(2315), - [anon_sym_usize] = ACTIONS(2315), - [anon_sym_f32] = ACTIONS(2315), - [anon_sym_f64] = ACTIONS(2315), - [anon_sym_c_char] = ACTIONS(2315), - [anon_sym_c_schar] = ACTIONS(2315), - [anon_sym_c_uchar] = ACTIONS(2315), - [anon_sym_c_short] = ACTIONS(2315), - [anon_sym_c_ushort] = ACTIONS(2315), - [anon_sym_c_int] = ACTIONS(2315), - [anon_sym_c_uint] = ACTIONS(2315), - [anon_sym_c_long] = ACTIONS(2315), - [anon_sym_c_ulong] = ACTIONS(2315), - [anon_sym_c_longlong] = ACTIONS(2315), - [anon_sym_c_ulonglong] = ACTIONS(2315), - [anon_sym_c_float] = ACTIONS(2315), - [anon_sym_c_double] = ACTIONS(2315), - [anon_sym_c_longdouble] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_defer] = ACTIONS(2315), - [anon_sym_errdefer] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_else] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_expand] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2315), - [anon_sym_DOT] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [sym_none] = ACTIONS(2315), - [sym_undefined] = ACTIONS(2315), - [sym_sink] = ACTIONS(2315), - [sym_integer] = ACTIONS(2315), - [sym_float] = ACTIONS(2313), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym_multiline_string] = ACTIONS(2313), - [sym_character] = ACTIONS(2313), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2313), - }, - [STATE(1035)] = { - [ts_builtin_sym_end] = ACTIONS(2317), - [sym_identifier] = ACTIONS(2319), - [anon_sym_import] = ACTIONS(2319), - [anon_sym_test] = ACTIONS(2319), - [anon_sym_hide] = ACTIONS(2319), - [anon_sym_func] = ACTIONS(2319), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_RPAREN] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_void] = ACTIONS(2319), - [anon_sym_anyopaque] = ACTIONS(2319), - [anon_sym_bool] = ACTIONS(2319), - [anon_sym_int] = ACTIONS(2319), - [anon_sym_uint] = ACTIONS(2319), - [anon_sym_float] = ACTIONS(2319), - [anon_sym_range] = ACTIONS(2319), - [anon_sym_i8] = ACTIONS(2319), - [anon_sym_i16] = ACTIONS(2319), - [anon_sym_i32] = ACTIONS(2319), - [anon_sym_i64] = ACTIONS(2319), - [anon_sym_u8] = ACTIONS(2319), - [anon_sym_u16] = ACTIONS(2319), - [anon_sym_u32] = ACTIONS(2319), - [anon_sym_u64] = ACTIONS(2319), - [anon_sym_isize] = ACTIONS(2319), - [anon_sym_usize] = ACTIONS(2319), - [anon_sym_f32] = ACTIONS(2319), - [anon_sym_f64] = ACTIONS(2319), - [anon_sym_c_char] = ACTIONS(2319), - [anon_sym_c_schar] = ACTIONS(2319), - [anon_sym_c_uchar] = ACTIONS(2319), - [anon_sym_c_short] = ACTIONS(2319), - [anon_sym_c_ushort] = ACTIONS(2319), - [anon_sym_c_int] = ACTIONS(2319), - [anon_sym_c_uint] = ACTIONS(2319), - [anon_sym_c_long] = ACTIONS(2319), - [anon_sym_c_ulong] = ACTIONS(2319), - [anon_sym_c_longlong] = ACTIONS(2319), - [anon_sym_c_ulonglong] = ACTIONS(2319), - [anon_sym_c_float] = ACTIONS(2319), - [anon_sym_c_double] = ACTIONS(2319), - [anon_sym_c_longdouble] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_defer] = ACTIONS(2319), - [anon_sym_errdefer] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_expand] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_DOT] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [sym_none] = ACTIONS(2319), - [sym_undefined] = ACTIONS(2319), - [sym_sink] = ACTIONS(2319), - [sym_integer] = ACTIONS(2319), - [sym_float] = ACTIONS(2317), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym_multiline_string] = ACTIONS(2317), - [sym_character] = ACTIONS(2317), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2317), - }, - [STATE(1036)] = { - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_identifier] = ACTIONS(2323), - [anon_sym_import] = ACTIONS(2323), - [anon_sym_test] = ACTIONS(2323), - [anon_sym_hide] = ACTIONS(2323), - [anon_sym_func] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_DOLLAR] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_void] = ACTIONS(2323), - [anon_sym_anyopaque] = ACTIONS(2323), - [anon_sym_bool] = ACTIONS(2323), - [anon_sym_int] = ACTIONS(2323), - [anon_sym_uint] = ACTIONS(2323), - [anon_sym_float] = ACTIONS(2323), - [anon_sym_range] = ACTIONS(2323), - [anon_sym_i8] = ACTIONS(2323), - [anon_sym_i16] = ACTIONS(2323), - [anon_sym_i32] = ACTIONS(2323), - [anon_sym_i64] = ACTIONS(2323), - [anon_sym_u8] = ACTIONS(2323), - [anon_sym_u16] = ACTIONS(2323), - [anon_sym_u32] = ACTIONS(2323), - [anon_sym_u64] = ACTIONS(2323), - [anon_sym_isize] = ACTIONS(2323), - [anon_sym_usize] = ACTIONS(2323), - [anon_sym_f32] = ACTIONS(2323), - [anon_sym_f64] = ACTIONS(2323), - [anon_sym_c_char] = ACTIONS(2323), - [anon_sym_c_schar] = ACTIONS(2323), - [anon_sym_c_uchar] = ACTIONS(2323), - [anon_sym_c_short] = ACTIONS(2323), - [anon_sym_c_ushort] = ACTIONS(2323), - [anon_sym_c_int] = ACTIONS(2323), - [anon_sym_c_uint] = ACTIONS(2323), - [anon_sym_c_long] = ACTIONS(2323), - [anon_sym_c_ulong] = ACTIONS(2323), - [anon_sym_c_longlong] = ACTIONS(2323), - [anon_sym_c_ulonglong] = ACTIONS(2323), - [anon_sym_c_float] = ACTIONS(2323), - [anon_sym_c_double] = ACTIONS(2323), - [anon_sym_c_longdouble] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_defer] = ACTIONS(2323), - [anon_sym_errdefer] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_else] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_expand] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_match] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_DOT] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [sym_none] = ACTIONS(2323), - [sym_undefined] = ACTIONS(2323), - [sym_sink] = ACTIONS(2323), - [sym_integer] = ACTIONS(2323), - [sym_float] = ACTIONS(2321), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym_multiline_string] = ACTIONS(2321), - [sym_character] = ACTIONS(2321), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2321), - }, - [STATE(1037)] = { - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2327), - [anon_sym_test] = ACTIONS(2327), - [anon_sym_hide] = ACTIONS(2327), - [anon_sym_func] = ACTIONS(2327), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_DOLLAR] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_void] = ACTIONS(2327), - [anon_sym_anyopaque] = ACTIONS(2327), - [anon_sym_bool] = ACTIONS(2327), - [anon_sym_int] = ACTIONS(2327), - [anon_sym_uint] = ACTIONS(2327), - [anon_sym_float] = ACTIONS(2327), - [anon_sym_range] = ACTIONS(2327), - [anon_sym_i8] = ACTIONS(2327), - [anon_sym_i16] = ACTIONS(2327), - [anon_sym_i32] = ACTIONS(2327), - [anon_sym_i64] = ACTIONS(2327), - [anon_sym_u8] = ACTIONS(2327), - [anon_sym_u16] = ACTIONS(2327), - [anon_sym_u32] = ACTIONS(2327), - [anon_sym_u64] = ACTIONS(2327), - [anon_sym_isize] = ACTIONS(2327), - [anon_sym_usize] = ACTIONS(2327), - [anon_sym_f32] = ACTIONS(2327), - [anon_sym_f64] = ACTIONS(2327), - [anon_sym_c_char] = ACTIONS(2327), - [anon_sym_c_schar] = ACTIONS(2327), - [anon_sym_c_uchar] = ACTIONS(2327), - [anon_sym_c_short] = ACTIONS(2327), - [anon_sym_c_ushort] = ACTIONS(2327), - [anon_sym_c_int] = ACTIONS(2327), - [anon_sym_c_uint] = ACTIONS(2327), - [anon_sym_c_long] = ACTIONS(2327), - [anon_sym_c_ulong] = ACTIONS(2327), - [anon_sym_c_longlong] = ACTIONS(2327), - [anon_sym_c_ulonglong] = ACTIONS(2327), - [anon_sym_c_float] = ACTIONS(2327), - [anon_sym_c_double] = ACTIONS(2327), - [anon_sym_c_longdouble] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_defer] = ACTIONS(2327), - [anon_sym_errdefer] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_else] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_expand] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_try] = ACTIONS(2327), - [anon_sym_DOT] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [sym_none] = ACTIONS(2327), - [sym_undefined] = ACTIONS(2327), - [sym_sink] = ACTIONS(2327), - [sym_integer] = ACTIONS(2327), - [sym_float] = ACTIONS(2325), - [anon_sym_DQUOTE] = ACTIONS(2325), - [sym_multiline_string] = ACTIONS(2325), - [sym_character] = ACTIONS(2325), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2325), - }, - [STATE(1038)] = { - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2331), - [anon_sym_test] = ACTIONS(2331), - [anon_sym_hide] = ACTIONS(2331), - [anon_sym_func] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_DOLLAR] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_void] = ACTIONS(2331), - [anon_sym_anyopaque] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_int] = ACTIONS(2331), - [anon_sym_uint] = ACTIONS(2331), - [anon_sym_float] = ACTIONS(2331), - [anon_sym_range] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_c_char] = ACTIONS(2331), - [anon_sym_c_schar] = ACTIONS(2331), - [anon_sym_c_uchar] = ACTIONS(2331), - [anon_sym_c_short] = ACTIONS(2331), - [anon_sym_c_ushort] = ACTIONS(2331), - [anon_sym_c_int] = ACTIONS(2331), - [anon_sym_c_uint] = ACTIONS(2331), - [anon_sym_c_long] = ACTIONS(2331), - [anon_sym_c_ulong] = ACTIONS(2331), - [anon_sym_c_longlong] = ACTIONS(2331), - [anon_sym_c_ulonglong] = ACTIONS(2331), - [anon_sym_c_float] = ACTIONS(2331), - [anon_sym_c_double] = ACTIONS(2331), - [anon_sym_c_longdouble] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_defer] = ACTIONS(2331), - [anon_sym_errdefer] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_else] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_expand] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_try] = ACTIONS(2331), - [anon_sym_DOT] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [sym_none] = ACTIONS(2331), - [sym_undefined] = ACTIONS(2331), - [sym_sink] = ACTIONS(2331), - [sym_integer] = ACTIONS(2331), - [sym_float] = ACTIONS(2329), - [anon_sym_DQUOTE] = ACTIONS(2329), - [sym_multiline_string] = ACTIONS(2329), - [sym_character] = ACTIONS(2329), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2329), - }, - [STATE(1039)] = { - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_import] = ACTIONS(2335), - [anon_sym_test] = ACTIONS(2335), - [anon_sym_hide] = ACTIONS(2335), - [anon_sym_func] = ACTIONS(2335), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_DOLLAR] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_void] = ACTIONS(2335), - [anon_sym_anyopaque] = ACTIONS(2335), - [anon_sym_bool] = ACTIONS(2335), - [anon_sym_int] = ACTIONS(2335), - [anon_sym_uint] = ACTIONS(2335), - [anon_sym_float] = ACTIONS(2335), - [anon_sym_range] = ACTIONS(2335), - [anon_sym_i8] = ACTIONS(2335), - [anon_sym_i16] = ACTIONS(2335), - [anon_sym_i32] = ACTIONS(2335), - [anon_sym_i64] = ACTIONS(2335), - [anon_sym_u8] = ACTIONS(2335), - [anon_sym_u16] = ACTIONS(2335), - [anon_sym_u32] = ACTIONS(2335), - [anon_sym_u64] = ACTIONS(2335), - [anon_sym_isize] = ACTIONS(2335), - [anon_sym_usize] = ACTIONS(2335), - [anon_sym_f32] = ACTIONS(2335), - [anon_sym_f64] = ACTIONS(2335), - [anon_sym_c_char] = ACTIONS(2335), - [anon_sym_c_schar] = ACTIONS(2335), - [anon_sym_c_uchar] = ACTIONS(2335), - [anon_sym_c_short] = ACTIONS(2335), - [anon_sym_c_ushort] = ACTIONS(2335), - [anon_sym_c_int] = ACTIONS(2335), - [anon_sym_c_uint] = ACTIONS(2335), - [anon_sym_c_long] = ACTIONS(2335), - [anon_sym_c_ulong] = ACTIONS(2335), - [anon_sym_c_longlong] = ACTIONS(2335), - [anon_sym_c_ulonglong] = ACTIONS(2335), - [anon_sym_c_float] = ACTIONS(2335), - [anon_sym_c_double] = ACTIONS(2335), - [anon_sym_c_longdouble] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_defer] = ACTIONS(2335), - [anon_sym_errdefer] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_else] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_expand] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_try] = ACTIONS(2335), - [anon_sym_DOT] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [sym_none] = ACTIONS(2335), - [sym_undefined] = ACTIONS(2335), - [sym_sink] = ACTIONS(2335), - [sym_integer] = ACTIONS(2335), - [sym_float] = ACTIONS(2333), - [anon_sym_DQUOTE] = ACTIONS(2333), - [sym_multiline_string] = ACTIONS(2333), - [sym_character] = ACTIONS(2333), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2333), - }, - [STATE(1040)] = { - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_import] = ACTIONS(2339), - [anon_sym_test] = ACTIONS(2339), - [anon_sym_hide] = ACTIONS(2339), - [anon_sym_func] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_struct] = ACTIONS(2339), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_RPAREN] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_void] = ACTIONS(2339), - [anon_sym_anyopaque] = ACTIONS(2339), - [anon_sym_bool] = ACTIONS(2339), - [anon_sym_int] = ACTIONS(2339), - [anon_sym_uint] = ACTIONS(2339), - [anon_sym_float] = ACTIONS(2339), - [anon_sym_range] = ACTIONS(2339), - [anon_sym_i8] = ACTIONS(2339), - [anon_sym_i16] = ACTIONS(2339), - [anon_sym_i32] = ACTIONS(2339), - [anon_sym_i64] = ACTIONS(2339), - [anon_sym_u8] = ACTIONS(2339), - [anon_sym_u16] = ACTIONS(2339), - [anon_sym_u32] = ACTIONS(2339), - [anon_sym_u64] = ACTIONS(2339), - [anon_sym_isize] = ACTIONS(2339), - [anon_sym_usize] = ACTIONS(2339), - [anon_sym_f32] = ACTIONS(2339), - [anon_sym_f64] = ACTIONS(2339), - [anon_sym_c_char] = ACTIONS(2339), - [anon_sym_c_schar] = ACTIONS(2339), - [anon_sym_c_uchar] = ACTIONS(2339), - [anon_sym_c_short] = ACTIONS(2339), - [anon_sym_c_ushort] = ACTIONS(2339), - [anon_sym_c_int] = ACTIONS(2339), - [anon_sym_c_uint] = ACTIONS(2339), - [anon_sym_c_long] = ACTIONS(2339), - [anon_sym_c_ulong] = ACTIONS(2339), - [anon_sym_c_longlong] = ACTIONS(2339), - [anon_sym_c_ulonglong] = ACTIONS(2339), - [anon_sym_c_float] = ACTIONS(2339), - [anon_sym_c_double] = ACTIONS(2339), - [anon_sym_c_longdouble] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_defer] = ACTIONS(2339), - [anon_sym_errdefer] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_else] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_expand] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2339), - [anon_sym_DOT] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [sym_none] = ACTIONS(2339), - [sym_undefined] = ACTIONS(2339), - [sym_sink] = ACTIONS(2339), - [sym_integer] = ACTIONS(2339), - [sym_float] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym_multiline_string] = ACTIONS(2337), - [sym_character] = ACTIONS(2337), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2337), - }, - [STATE(1041)] = { - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_import] = ACTIONS(2343), - [anon_sym_test] = ACTIONS(2343), - [anon_sym_hide] = ACTIONS(2343), - [anon_sym_func] = ACTIONS(2343), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_RPAREN] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_void] = ACTIONS(2343), - [anon_sym_anyopaque] = ACTIONS(2343), - [anon_sym_bool] = ACTIONS(2343), - [anon_sym_int] = ACTIONS(2343), - [anon_sym_uint] = ACTIONS(2343), - [anon_sym_float] = ACTIONS(2343), - [anon_sym_range] = ACTIONS(2343), - [anon_sym_i8] = ACTIONS(2343), - [anon_sym_i16] = ACTIONS(2343), - [anon_sym_i32] = ACTIONS(2343), - [anon_sym_i64] = ACTIONS(2343), - [anon_sym_u8] = ACTIONS(2343), - [anon_sym_u16] = ACTIONS(2343), - [anon_sym_u32] = ACTIONS(2343), - [anon_sym_u64] = ACTIONS(2343), - [anon_sym_isize] = ACTIONS(2343), - [anon_sym_usize] = ACTIONS(2343), - [anon_sym_f32] = ACTIONS(2343), - [anon_sym_f64] = ACTIONS(2343), - [anon_sym_c_char] = ACTIONS(2343), - [anon_sym_c_schar] = ACTIONS(2343), - [anon_sym_c_uchar] = ACTIONS(2343), - [anon_sym_c_short] = ACTIONS(2343), - [anon_sym_c_ushort] = ACTIONS(2343), - [anon_sym_c_int] = ACTIONS(2343), - [anon_sym_c_uint] = ACTIONS(2343), - [anon_sym_c_long] = ACTIONS(2343), - [anon_sym_c_ulong] = ACTIONS(2343), - [anon_sym_c_longlong] = ACTIONS(2343), - [anon_sym_c_ulonglong] = ACTIONS(2343), - [anon_sym_c_float] = ACTIONS(2343), - [anon_sym_c_double] = ACTIONS(2343), - [anon_sym_c_longdouble] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_defer] = ACTIONS(2343), - [anon_sym_errdefer] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_else] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_expand] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2343), - [anon_sym_DOT] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [sym_none] = ACTIONS(2343), - [sym_undefined] = ACTIONS(2343), - [sym_sink] = ACTIONS(2343), - [sym_integer] = ACTIONS(2343), - [sym_float] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym_multiline_string] = ACTIONS(2341), - [sym_character] = ACTIONS(2341), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2341), - }, - [STATE(1042)] = { - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2347), - [anon_sym_import] = ACTIONS(2347), - [anon_sym_test] = ACTIONS(2347), - [anon_sym_hide] = ACTIONS(2347), - [anon_sym_func] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_RPAREN] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_void] = ACTIONS(2347), - [anon_sym_anyopaque] = ACTIONS(2347), - [anon_sym_bool] = ACTIONS(2347), - [anon_sym_int] = ACTIONS(2347), - [anon_sym_uint] = ACTIONS(2347), - [anon_sym_float] = ACTIONS(2347), - [anon_sym_range] = ACTIONS(2347), - [anon_sym_i8] = ACTIONS(2347), - [anon_sym_i16] = ACTIONS(2347), - [anon_sym_i32] = ACTIONS(2347), - [anon_sym_i64] = ACTIONS(2347), - [anon_sym_u8] = ACTIONS(2347), - [anon_sym_u16] = ACTIONS(2347), - [anon_sym_u32] = ACTIONS(2347), - [anon_sym_u64] = ACTIONS(2347), - [anon_sym_isize] = ACTIONS(2347), - [anon_sym_usize] = ACTIONS(2347), - [anon_sym_f32] = ACTIONS(2347), - [anon_sym_f64] = ACTIONS(2347), - [anon_sym_c_char] = ACTIONS(2347), - [anon_sym_c_schar] = ACTIONS(2347), - [anon_sym_c_uchar] = ACTIONS(2347), - [anon_sym_c_short] = ACTIONS(2347), - [anon_sym_c_ushort] = ACTIONS(2347), - [anon_sym_c_int] = ACTIONS(2347), - [anon_sym_c_uint] = ACTIONS(2347), - [anon_sym_c_long] = ACTIONS(2347), - [anon_sym_c_ulong] = ACTIONS(2347), - [anon_sym_c_longlong] = ACTIONS(2347), - [anon_sym_c_ulonglong] = ACTIONS(2347), - [anon_sym_c_float] = ACTIONS(2347), - [anon_sym_c_double] = ACTIONS(2347), - [anon_sym_c_longdouble] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_defer] = ACTIONS(2347), - [anon_sym_errdefer] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_expand] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_DOT] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [sym_none] = ACTIONS(2347), - [sym_undefined] = ACTIONS(2347), - [sym_sink] = ACTIONS(2347), - [sym_integer] = ACTIONS(2347), - [sym_float] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2345), - [sym_multiline_string] = ACTIONS(2345), - [sym_character] = ACTIONS(2345), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2345), - }, - [STATE(1043)] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2351), - [anon_sym_import] = ACTIONS(2351), - [anon_sym_test] = ACTIONS(2351), - [anon_sym_hide] = ACTIONS(2351), - [anon_sym_func] = ACTIONS(2351), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_RPAREN] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_void] = ACTIONS(2351), - [anon_sym_anyopaque] = ACTIONS(2351), - [anon_sym_bool] = ACTIONS(2351), - [anon_sym_int] = ACTIONS(2351), - [anon_sym_uint] = ACTIONS(2351), - [anon_sym_float] = ACTIONS(2351), - [anon_sym_range] = ACTIONS(2351), - [anon_sym_i8] = ACTIONS(2351), - [anon_sym_i16] = ACTIONS(2351), - [anon_sym_i32] = ACTIONS(2351), - [anon_sym_i64] = ACTIONS(2351), - [anon_sym_u8] = ACTIONS(2351), - [anon_sym_u16] = ACTIONS(2351), - [anon_sym_u32] = ACTIONS(2351), - [anon_sym_u64] = ACTIONS(2351), - [anon_sym_isize] = ACTIONS(2351), - [anon_sym_usize] = ACTIONS(2351), - [anon_sym_f32] = ACTIONS(2351), - [anon_sym_f64] = ACTIONS(2351), - [anon_sym_c_char] = ACTIONS(2351), - [anon_sym_c_schar] = ACTIONS(2351), - [anon_sym_c_uchar] = ACTIONS(2351), - [anon_sym_c_short] = ACTIONS(2351), - [anon_sym_c_ushort] = ACTIONS(2351), - [anon_sym_c_int] = ACTIONS(2351), - [anon_sym_c_uint] = ACTIONS(2351), - [anon_sym_c_long] = ACTIONS(2351), - [anon_sym_c_ulong] = ACTIONS(2351), - [anon_sym_c_longlong] = ACTIONS(2351), - [anon_sym_c_ulonglong] = ACTIONS(2351), - [anon_sym_c_float] = ACTIONS(2351), - [anon_sym_c_double] = ACTIONS(2351), - [anon_sym_c_longdouble] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_defer] = ACTIONS(2351), - [anon_sym_errdefer] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_expand] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_DOT] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [sym_none] = ACTIONS(2351), - [sym_undefined] = ACTIONS(2351), - [sym_sink] = ACTIONS(2351), - [sym_integer] = ACTIONS(2351), - [sym_float] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_multiline_string] = ACTIONS(2349), - [sym_character] = ACTIONS(2349), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2349), - }, - [STATE(1044)] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [anon_sym_import] = ACTIONS(2355), - [anon_sym_test] = ACTIONS(2355), - [anon_sym_hide] = ACTIONS(2355), - [anon_sym_func] = ACTIONS(2355), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_RPAREN] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_void] = ACTIONS(2355), - [anon_sym_anyopaque] = ACTIONS(2355), - [anon_sym_bool] = ACTIONS(2355), - [anon_sym_int] = ACTIONS(2355), - [anon_sym_uint] = ACTIONS(2355), - [anon_sym_float] = ACTIONS(2355), - [anon_sym_range] = ACTIONS(2355), - [anon_sym_i8] = ACTIONS(2355), - [anon_sym_i16] = ACTIONS(2355), - [anon_sym_i32] = ACTIONS(2355), - [anon_sym_i64] = ACTIONS(2355), - [anon_sym_u8] = ACTIONS(2355), - [anon_sym_u16] = ACTIONS(2355), - [anon_sym_u32] = ACTIONS(2355), - [anon_sym_u64] = ACTIONS(2355), - [anon_sym_isize] = ACTIONS(2355), - [anon_sym_usize] = ACTIONS(2355), - [anon_sym_f32] = ACTIONS(2355), - [anon_sym_f64] = ACTIONS(2355), - [anon_sym_c_char] = ACTIONS(2355), - [anon_sym_c_schar] = ACTIONS(2355), - [anon_sym_c_uchar] = ACTIONS(2355), - [anon_sym_c_short] = ACTIONS(2355), - [anon_sym_c_ushort] = ACTIONS(2355), - [anon_sym_c_int] = ACTIONS(2355), - [anon_sym_c_uint] = ACTIONS(2355), - [anon_sym_c_long] = ACTIONS(2355), - [anon_sym_c_ulong] = ACTIONS(2355), - [anon_sym_c_longlong] = ACTIONS(2355), - [anon_sym_c_ulonglong] = ACTIONS(2355), - [anon_sym_c_float] = ACTIONS(2355), - [anon_sym_c_double] = ACTIONS(2355), - [anon_sym_c_longdouble] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_defer] = ACTIONS(2355), - [anon_sym_errdefer] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_expand] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_DOT] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [sym_none] = ACTIONS(2355), - [sym_undefined] = ACTIONS(2355), - [sym_sink] = ACTIONS(2355), - [sym_integer] = ACTIONS(2355), - [sym_float] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_multiline_string] = ACTIONS(2353), - [sym_character] = ACTIONS(2353), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2353), - }, - [STATE(1045)] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [anon_sym_import] = ACTIONS(2359), - [anon_sym_test] = ACTIONS(2359), - [anon_sym_hide] = ACTIONS(2359), - [anon_sym_func] = ACTIONS(2359), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_void] = ACTIONS(2359), - [anon_sym_anyopaque] = ACTIONS(2359), - [anon_sym_bool] = ACTIONS(2359), - [anon_sym_int] = ACTIONS(2359), - [anon_sym_uint] = ACTIONS(2359), - [anon_sym_float] = ACTIONS(2359), - [anon_sym_range] = ACTIONS(2359), - [anon_sym_i8] = ACTIONS(2359), - [anon_sym_i16] = ACTIONS(2359), - [anon_sym_i32] = ACTIONS(2359), - [anon_sym_i64] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(2359), - [anon_sym_u16] = ACTIONS(2359), - [anon_sym_u32] = ACTIONS(2359), - [anon_sym_u64] = ACTIONS(2359), - [anon_sym_isize] = ACTIONS(2359), - [anon_sym_usize] = ACTIONS(2359), - [anon_sym_f32] = ACTIONS(2359), - [anon_sym_f64] = ACTIONS(2359), - [anon_sym_c_char] = ACTIONS(2359), - [anon_sym_c_schar] = ACTIONS(2359), - [anon_sym_c_uchar] = ACTIONS(2359), - [anon_sym_c_short] = ACTIONS(2359), - [anon_sym_c_ushort] = ACTIONS(2359), - [anon_sym_c_int] = ACTIONS(2359), - [anon_sym_c_uint] = ACTIONS(2359), - [anon_sym_c_long] = ACTIONS(2359), - [anon_sym_c_ulong] = ACTIONS(2359), - [anon_sym_c_longlong] = ACTIONS(2359), - [anon_sym_c_ulonglong] = ACTIONS(2359), - [anon_sym_c_float] = ACTIONS(2359), - [anon_sym_c_double] = ACTIONS(2359), - [anon_sym_c_longdouble] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_defer] = ACTIONS(2359), - [anon_sym_errdefer] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_expand] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_DOT] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [sym_none] = ACTIONS(2359), - [sym_undefined] = ACTIONS(2359), - [sym_sink] = ACTIONS(2359), - [sym_integer] = ACTIONS(2359), - [sym_float] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_multiline_string] = ACTIONS(2357), - [sym_character] = ACTIONS(2357), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2357), - }, - [STATE(1046)] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2363), - [anon_sym_import] = ACTIONS(2363), - [anon_sym_test] = ACTIONS(2363), - [anon_sym_hide] = ACTIONS(2363), - [anon_sym_func] = ACTIONS(2363), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2363), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_RPAREN] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_void] = ACTIONS(2363), - [anon_sym_anyopaque] = ACTIONS(2363), - [anon_sym_bool] = ACTIONS(2363), - [anon_sym_int] = ACTIONS(2363), - [anon_sym_uint] = ACTIONS(2363), - [anon_sym_float] = ACTIONS(2363), - [anon_sym_range] = ACTIONS(2363), - [anon_sym_i8] = ACTIONS(2363), - [anon_sym_i16] = ACTIONS(2363), - [anon_sym_i32] = ACTIONS(2363), - [anon_sym_i64] = ACTIONS(2363), - [anon_sym_u8] = ACTIONS(2363), - [anon_sym_u16] = ACTIONS(2363), - [anon_sym_u32] = ACTIONS(2363), - [anon_sym_u64] = ACTIONS(2363), - [anon_sym_isize] = ACTIONS(2363), - [anon_sym_usize] = ACTIONS(2363), - [anon_sym_f32] = ACTIONS(2363), - [anon_sym_f64] = ACTIONS(2363), - [anon_sym_c_char] = ACTIONS(2363), - [anon_sym_c_schar] = ACTIONS(2363), - [anon_sym_c_uchar] = ACTIONS(2363), - [anon_sym_c_short] = ACTIONS(2363), - [anon_sym_c_ushort] = ACTIONS(2363), - [anon_sym_c_int] = ACTIONS(2363), - [anon_sym_c_uint] = ACTIONS(2363), - [anon_sym_c_long] = ACTIONS(2363), - [anon_sym_c_ulong] = ACTIONS(2363), - [anon_sym_c_longlong] = ACTIONS(2363), - [anon_sym_c_ulonglong] = ACTIONS(2363), - [anon_sym_c_float] = ACTIONS(2363), - [anon_sym_c_double] = ACTIONS(2363), - [anon_sym_c_longdouble] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_defer] = ACTIONS(2363), - [anon_sym_errdefer] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_else] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_expand] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2363), - [anon_sym_DOT] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [sym_none] = ACTIONS(2363), - [sym_undefined] = ACTIONS(2363), - [sym_sink] = ACTIONS(2363), - [sym_integer] = ACTIONS(2363), - [sym_float] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_multiline_string] = ACTIONS(2361), - [sym_character] = ACTIONS(2361), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2361), - }, - [STATE(1047)] = { - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2367), - [anon_sym_import] = ACTIONS(2367), - [anon_sym_test] = ACTIONS(2367), - [anon_sym_hide] = ACTIONS(2367), - [anon_sym_func] = ACTIONS(2367), - [anon_sym_BANG] = ACTIONS(2365), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_void] = ACTIONS(2367), - [anon_sym_anyopaque] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_int] = ACTIONS(2367), - [anon_sym_uint] = ACTIONS(2367), - [anon_sym_float] = ACTIONS(2367), - [anon_sym_range] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_c_char] = ACTIONS(2367), - [anon_sym_c_schar] = ACTIONS(2367), - [anon_sym_c_uchar] = ACTIONS(2367), - [anon_sym_c_short] = ACTIONS(2367), - [anon_sym_c_ushort] = ACTIONS(2367), - [anon_sym_c_int] = ACTIONS(2367), - [anon_sym_c_uint] = ACTIONS(2367), - [anon_sym_c_long] = ACTIONS(2367), - [anon_sym_c_ulong] = ACTIONS(2367), - [anon_sym_c_longlong] = ACTIONS(2367), - [anon_sym_c_ulonglong] = ACTIONS(2367), - [anon_sym_c_float] = ACTIONS(2367), - [anon_sym_c_double] = ACTIONS(2367), - [anon_sym_c_longdouble] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_yield] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_defer] = ACTIONS(2367), - [anon_sym_errdefer] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_else] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_expand] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2367), - [anon_sym_DOT] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_none] = ACTIONS(2367), - [sym_undefined] = ACTIONS(2367), - [sym_sink] = ACTIONS(2367), - [sym_integer] = ACTIONS(2367), - [sym_float] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym_multiline_string] = ACTIONS(2365), - [sym_character] = ACTIONS(2365), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2389), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3137), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2365), }, - [STATE(1048)] = { - [ts_builtin_sym_end] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [anon_sym_import] = ACTIONS(2371), - [anon_sym_test] = ACTIONS(2371), - [anon_sym_hide] = ACTIONS(2371), - [anon_sym_func] = ACTIONS(2371), - [anon_sym_BANG] = ACTIONS(2369), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_void] = ACTIONS(2371), - [anon_sym_anyopaque] = ACTIONS(2371), - [anon_sym_bool] = ACTIONS(2371), - [anon_sym_int] = ACTIONS(2371), - [anon_sym_uint] = ACTIONS(2371), - [anon_sym_float] = ACTIONS(2371), - [anon_sym_range] = ACTIONS(2371), - [anon_sym_i8] = ACTIONS(2371), - [anon_sym_i16] = ACTIONS(2371), - [anon_sym_i32] = ACTIONS(2371), - [anon_sym_i64] = ACTIONS(2371), - [anon_sym_u8] = ACTIONS(2371), - [anon_sym_u16] = ACTIONS(2371), - [anon_sym_u32] = ACTIONS(2371), - [anon_sym_u64] = ACTIONS(2371), - [anon_sym_isize] = ACTIONS(2371), - [anon_sym_usize] = ACTIONS(2371), - [anon_sym_f32] = ACTIONS(2371), - [anon_sym_f64] = ACTIONS(2371), - [anon_sym_c_char] = ACTIONS(2371), - [anon_sym_c_schar] = ACTIONS(2371), - [anon_sym_c_uchar] = ACTIONS(2371), - [anon_sym_c_short] = ACTIONS(2371), - [anon_sym_c_ushort] = ACTIONS(2371), - [anon_sym_c_int] = ACTIONS(2371), - [anon_sym_c_uint] = ACTIONS(2371), - [anon_sym_c_long] = ACTIONS(2371), - [anon_sym_c_ulong] = ACTIONS(2371), - [anon_sym_c_longlong] = ACTIONS(2371), - [anon_sym_c_ulonglong] = ACTIONS(2371), - [anon_sym_c_float] = ACTIONS(2371), - [anon_sym_c_double] = ACTIONS(2371), - [anon_sym_c_longdouble] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_yield] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_defer] = ACTIONS(2371), - [anon_sym_errdefer] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_expand] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_DOT] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [sym_none] = ACTIONS(2371), - [sym_undefined] = ACTIONS(2371), - [sym_sink] = ACTIONS(2371), - [sym_integer] = ACTIONS(2371), - [sym_float] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym_multiline_string] = ACTIONS(2369), - [sym_character] = ACTIONS(2369), + [STATE(1021)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2361), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(2686), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2369), }, - [STATE(1049)] = { - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2375), - [anon_sym_import] = ACTIONS(2375), - [anon_sym_test] = ACTIONS(2375), - [anon_sym_hide] = ACTIONS(2375), - [anon_sym_func] = ACTIONS(2375), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_void] = ACTIONS(2375), - [anon_sym_anyopaque] = ACTIONS(2375), - [anon_sym_bool] = ACTIONS(2375), - [anon_sym_int] = ACTIONS(2375), - [anon_sym_uint] = ACTIONS(2375), - [anon_sym_float] = ACTIONS(2375), - [anon_sym_range] = ACTIONS(2375), - [anon_sym_i8] = ACTIONS(2375), - [anon_sym_i16] = ACTIONS(2375), - [anon_sym_i32] = ACTIONS(2375), - [anon_sym_i64] = ACTIONS(2375), - [anon_sym_u8] = ACTIONS(2375), - [anon_sym_u16] = ACTIONS(2375), - [anon_sym_u32] = ACTIONS(2375), - [anon_sym_u64] = ACTIONS(2375), - [anon_sym_isize] = ACTIONS(2375), - [anon_sym_usize] = ACTIONS(2375), - [anon_sym_f32] = ACTIONS(2375), - [anon_sym_f64] = ACTIONS(2375), - [anon_sym_c_char] = ACTIONS(2375), - [anon_sym_c_schar] = ACTIONS(2375), - [anon_sym_c_uchar] = ACTIONS(2375), - [anon_sym_c_short] = ACTIONS(2375), - [anon_sym_c_ushort] = ACTIONS(2375), - [anon_sym_c_int] = ACTIONS(2375), - [anon_sym_c_uint] = ACTIONS(2375), - [anon_sym_c_long] = ACTIONS(2375), - [anon_sym_c_ulong] = ACTIONS(2375), - [anon_sym_c_longlong] = ACTIONS(2375), - [anon_sym_c_ulonglong] = ACTIONS(2375), - [anon_sym_c_float] = ACTIONS(2375), - [anon_sym_c_double] = ACTIONS(2375), - [anon_sym_c_longdouble] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_yield] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_defer] = ACTIONS(2375), - [anon_sym_errdefer] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_expand] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_DOT] = ACTIONS(2373), - [anon_sym_true] = ACTIONS(2375), - [anon_sym_false] = ACTIONS(2375), - [sym_none] = ACTIONS(2375), - [sym_undefined] = ACTIONS(2375), - [sym_sink] = ACTIONS(2375), - [sym_integer] = ACTIONS(2375), - [sym_float] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_multiline_string] = ACTIONS(2373), - [sym_character] = ACTIONS(2373), + [STATE(1022)] = { + [sym_type] = STATE(2100), + [sym__type_atom] = STATE(2002), + [sym_named_type] = STATE(2002), + [sym_optional_type] = STATE(2002), + [sym_pointer_type] = STATE(2002), + [sym_array_type] = STATE(2002), + [sym_function_type] = STATE(2002), + [sym_builtin_type] = STATE(2002), + [sym_qualified_identifier] = STATE(2067), + [sym_identifier] = ACTIONS(1912), + [anon_sym_func] = ACTIONS(413), + [anon_sym_c_func] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_RPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_COMMA] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(1945), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_mut] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(281), + [anon_sym_RBRACK] = ACTIONS(281), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_else] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_LT_LT_PIPE] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2373), + [sym__newline] = ACTIONS(281), }, - [STATE(1050)] = { - [ts_builtin_sym_end] = ACTIONS(2377), - [sym_identifier] = ACTIONS(2379), - [anon_sym_import] = ACTIONS(2379), - [anon_sym_test] = ACTIONS(2379), - [anon_sym_hide] = ACTIONS(2379), - [anon_sym_func] = ACTIONS(2379), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_RPAREN] = ACTIONS(2377), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2377), - [anon_sym_void] = ACTIONS(2379), - [anon_sym_anyopaque] = ACTIONS(2379), - [anon_sym_bool] = ACTIONS(2379), - [anon_sym_int] = ACTIONS(2379), - [anon_sym_uint] = ACTIONS(2379), - [anon_sym_float] = ACTIONS(2379), - [anon_sym_range] = ACTIONS(2379), - [anon_sym_i8] = ACTIONS(2379), - [anon_sym_i16] = ACTIONS(2379), - [anon_sym_i32] = ACTIONS(2379), - [anon_sym_i64] = ACTIONS(2379), - [anon_sym_u8] = ACTIONS(2379), - [anon_sym_u16] = ACTIONS(2379), - [anon_sym_u32] = ACTIONS(2379), - [anon_sym_u64] = ACTIONS(2379), - [anon_sym_isize] = ACTIONS(2379), - [anon_sym_usize] = ACTIONS(2379), - [anon_sym_f32] = ACTIONS(2379), - [anon_sym_f64] = ACTIONS(2379), - [anon_sym_c_char] = ACTIONS(2379), - [anon_sym_c_schar] = ACTIONS(2379), - [anon_sym_c_uchar] = ACTIONS(2379), - [anon_sym_c_short] = ACTIONS(2379), - [anon_sym_c_ushort] = ACTIONS(2379), - [anon_sym_c_int] = ACTIONS(2379), - [anon_sym_c_uint] = ACTIONS(2379), - [anon_sym_c_long] = ACTIONS(2379), - [anon_sym_c_ulong] = ACTIONS(2379), - [anon_sym_c_longlong] = ACTIONS(2379), - [anon_sym_c_ulonglong] = ACTIONS(2379), - [anon_sym_c_float] = ACTIONS(2379), - [anon_sym_c_double] = ACTIONS(2379), - [anon_sym_c_longdouble] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_yield] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_defer] = ACTIONS(2379), - [anon_sym_errdefer] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_expand] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_match] = ACTIONS(2379), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_DOT] = ACTIONS(2377), - [anon_sym_true] = ACTIONS(2379), - [anon_sym_false] = ACTIONS(2379), - [sym_none] = ACTIONS(2379), - [sym_undefined] = ACTIONS(2379), - [sym_sink] = ACTIONS(2379), - [sym_integer] = ACTIONS(2379), - [sym_float] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_multiline_string] = ACTIONS(2377), - [sym_character] = ACTIONS(2377), + [STATE(1023)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2377), + [sym__newline] = ACTIONS(447), }, - [STATE(1051)] = { - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2383), - [anon_sym_import] = ACTIONS(2383), - [anon_sym_test] = ACTIONS(2383), - [anon_sym_hide] = ACTIONS(2383), - [anon_sym_func] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_void] = ACTIONS(2383), - [anon_sym_anyopaque] = ACTIONS(2383), - [anon_sym_bool] = ACTIONS(2383), - [anon_sym_int] = ACTIONS(2383), - [anon_sym_uint] = ACTIONS(2383), - [anon_sym_float] = ACTIONS(2383), - [anon_sym_range] = ACTIONS(2383), - [anon_sym_i8] = ACTIONS(2383), - [anon_sym_i16] = ACTIONS(2383), - [anon_sym_i32] = ACTIONS(2383), - [anon_sym_i64] = ACTIONS(2383), - [anon_sym_u8] = ACTIONS(2383), - [anon_sym_u16] = ACTIONS(2383), - [anon_sym_u32] = ACTIONS(2383), - [anon_sym_u64] = ACTIONS(2383), - [anon_sym_isize] = ACTIONS(2383), - [anon_sym_usize] = ACTIONS(2383), - [anon_sym_f32] = ACTIONS(2383), - [anon_sym_f64] = ACTIONS(2383), - [anon_sym_c_char] = ACTIONS(2383), - [anon_sym_c_schar] = ACTIONS(2383), - [anon_sym_c_uchar] = ACTIONS(2383), - [anon_sym_c_short] = ACTIONS(2383), - [anon_sym_c_ushort] = ACTIONS(2383), - [anon_sym_c_int] = ACTIONS(2383), - [anon_sym_c_uint] = ACTIONS(2383), - [anon_sym_c_long] = ACTIONS(2383), - [anon_sym_c_ulong] = ACTIONS(2383), - [anon_sym_c_longlong] = ACTIONS(2383), - [anon_sym_c_ulonglong] = ACTIONS(2383), - [anon_sym_c_float] = ACTIONS(2383), - [anon_sym_c_double] = ACTIONS(2383), - [anon_sym_c_longdouble] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_yield] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_defer] = ACTIONS(2383), - [anon_sym_errdefer] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_expand] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_match] = ACTIONS(2383), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_DOT] = ACTIONS(2381), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [sym_none] = ACTIONS(2383), - [sym_undefined] = ACTIONS(2383), - [sym_sink] = ACTIONS(2383), - [sym_integer] = ACTIONS(2383), - [sym_float] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_multiline_string] = ACTIONS(2381), - [sym_character] = ACTIONS(2381), + [STATE(1024)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(951), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2381), + [sym__newline] = ACTIONS(2378), }, - [STATE(1052)] = { - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_identifier] = ACTIONS(2387), - [anon_sym_import] = ACTIONS(2387), - [anon_sym_test] = ACTIONS(2387), - [anon_sym_hide] = ACTIONS(2387), - [anon_sym_func] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_void] = ACTIONS(2387), - [anon_sym_anyopaque] = ACTIONS(2387), - [anon_sym_bool] = ACTIONS(2387), - [anon_sym_int] = ACTIONS(2387), - [anon_sym_uint] = ACTIONS(2387), - [anon_sym_float] = ACTIONS(2387), - [anon_sym_range] = ACTIONS(2387), - [anon_sym_i8] = ACTIONS(2387), - [anon_sym_i16] = ACTIONS(2387), - [anon_sym_i32] = ACTIONS(2387), - [anon_sym_i64] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2387), - [anon_sym_u16] = ACTIONS(2387), - [anon_sym_u32] = ACTIONS(2387), - [anon_sym_u64] = ACTIONS(2387), - [anon_sym_isize] = ACTIONS(2387), - [anon_sym_usize] = ACTIONS(2387), - [anon_sym_f32] = ACTIONS(2387), - [anon_sym_f64] = ACTIONS(2387), - [anon_sym_c_char] = ACTIONS(2387), - [anon_sym_c_schar] = ACTIONS(2387), - [anon_sym_c_uchar] = ACTIONS(2387), - [anon_sym_c_short] = ACTIONS(2387), - [anon_sym_c_ushort] = ACTIONS(2387), - [anon_sym_c_int] = ACTIONS(2387), - [anon_sym_c_uint] = ACTIONS(2387), - [anon_sym_c_long] = ACTIONS(2387), - [anon_sym_c_ulong] = ACTIONS(2387), - [anon_sym_c_longlong] = ACTIONS(2387), - [anon_sym_c_ulonglong] = ACTIONS(2387), - [anon_sym_c_float] = ACTIONS(2387), - [anon_sym_c_double] = ACTIONS(2387), - [anon_sym_c_longdouble] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_yield] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_defer] = ACTIONS(2387), - [anon_sym_errdefer] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_expand] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_DOT] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [sym_none] = ACTIONS(2387), - [sym_undefined] = ACTIONS(2387), - [sym_sink] = ACTIONS(2387), - [sym_integer] = ACTIONS(2387), - [sym_float] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_multiline_string] = ACTIONS(2385), - [sym_character] = ACTIONS(2385), + [STATE(1025)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2414), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(963), + [aux_sym_tuple_literal_repeat1] = STATE(1020), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2385), + [sym__newline] = ACTIONS(2382), }, - [STATE(1053)] = { - [ts_builtin_sym_end] = ACTIONS(2389), - [sym_identifier] = ACTIONS(2391), - [anon_sym_import] = ACTIONS(2391), - [anon_sym_test] = ACTIONS(2391), - [anon_sym_hide] = ACTIONS(2391), - [anon_sym_func] = ACTIONS(2391), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(2391), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_void] = ACTIONS(2391), - [anon_sym_anyopaque] = ACTIONS(2391), - [anon_sym_bool] = ACTIONS(2391), - [anon_sym_int] = ACTIONS(2391), - [anon_sym_uint] = ACTIONS(2391), - [anon_sym_float] = ACTIONS(2391), - [anon_sym_range] = ACTIONS(2391), - [anon_sym_i8] = ACTIONS(2391), - [anon_sym_i16] = ACTIONS(2391), - [anon_sym_i32] = ACTIONS(2391), - [anon_sym_i64] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(2391), - [anon_sym_u16] = ACTIONS(2391), - [anon_sym_u32] = ACTIONS(2391), - [anon_sym_u64] = ACTIONS(2391), - [anon_sym_isize] = ACTIONS(2391), - [anon_sym_usize] = ACTIONS(2391), - [anon_sym_f32] = ACTIONS(2391), - [anon_sym_f64] = ACTIONS(2391), - [anon_sym_c_char] = ACTIONS(2391), - [anon_sym_c_schar] = ACTIONS(2391), - [anon_sym_c_uchar] = ACTIONS(2391), - [anon_sym_c_short] = ACTIONS(2391), - [anon_sym_c_ushort] = ACTIONS(2391), - [anon_sym_c_int] = ACTIONS(2391), - [anon_sym_c_uint] = ACTIONS(2391), - [anon_sym_c_long] = ACTIONS(2391), - [anon_sym_c_ulong] = ACTIONS(2391), - [anon_sym_c_longlong] = ACTIONS(2391), - [anon_sym_c_ulonglong] = ACTIONS(2391), - [anon_sym_c_float] = ACTIONS(2391), - [anon_sym_c_double] = ACTIONS(2391), - [anon_sym_c_longdouble] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_yield] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_defer] = ACTIONS(2391), - [anon_sym_errdefer] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_else] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_expand] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2391), - [anon_sym_DOT] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [sym_none] = ACTIONS(2391), - [sym_undefined] = ACTIONS(2391), - [sym_sink] = ACTIONS(2391), - [sym_integer] = ACTIONS(2391), - [sym_float] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_multiline_string] = ACTIONS(2389), - [sym_character] = ACTIONS(2389), + [STATE(1026)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3238), + [sym_expression_statement] = STATE(3238), + [sym_expression] = STATE(2278), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2389), + [sym__newline] = ACTIONS(447), }, - [STATE(1054)] = { - [ts_builtin_sym_end] = ACTIONS(2393), - [sym_identifier] = ACTIONS(2395), - [anon_sym_import] = ACTIONS(2395), - [anon_sym_test] = ACTIONS(2395), - [anon_sym_hide] = ACTIONS(2395), - [anon_sym_func] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2395), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_void] = ACTIONS(2395), - [anon_sym_anyopaque] = ACTIONS(2395), - [anon_sym_bool] = ACTIONS(2395), - [anon_sym_int] = ACTIONS(2395), - [anon_sym_uint] = ACTIONS(2395), - [anon_sym_float] = ACTIONS(2395), - [anon_sym_range] = ACTIONS(2395), - [anon_sym_i8] = ACTIONS(2395), - [anon_sym_i16] = ACTIONS(2395), - [anon_sym_i32] = ACTIONS(2395), - [anon_sym_i64] = ACTIONS(2395), - [anon_sym_u8] = ACTIONS(2395), - [anon_sym_u16] = ACTIONS(2395), - [anon_sym_u32] = ACTIONS(2395), - [anon_sym_u64] = ACTIONS(2395), - [anon_sym_isize] = ACTIONS(2395), - [anon_sym_usize] = ACTIONS(2395), - [anon_sym_f32] = ACTIONS(2395), - [anon_sym_f64] = ACTIONS(2395), - [anon_sym_c_char] = ACTIONS(2395), - [anon_sym_c_schar] = ACTIONS(2395), - [anon_sym_c_uchar] = ACTIONS(2395), - [anon_sym_c_short] = ACTIONS(2395), - [anon_sym_c_ushort] = ACTIONS(2395), - [anon_sym_c_int] = ACTIONS(2395), - [anon_sym_c_uint] = ACTIONS(2395), - [anon_sym_c_long] = ACTIONS(2395), - [anon_sym_c_ulong] = ACTIONS(2395), - [anon_sym_c_longlong] = ACTIONS(2395), - [anon_sym_c_ulonglong] = ACTIONS(2395), - [anon_sym_c_float] = ACTIONS(2395), - [anon_sym_c_double] = ACTIONS(2395), - [anon_sym_c_longdouble] = ACTIONS(2395), - [anon_sym_return] = ACTIONS(2395), - [anon_sym_yield] = ACTIONS(2395), - [anon_sym_break] = ACTIONS(2395), - [anon_sym_continue] = ACTIONS(2395), - [anon_sym_defer] = ACTIONS(2395), - [anon_sym_errdefer] = ACTIONS(2395), - [anon_sym_if] = ACTIONS(2395), - [anon_sym_else] = ACTIONS(2395), - [anon_sym_while] = ACTIONS(2395), - [anon_sym_expand] = ACTIONS(2395), - [anon_sym_for] = ACTIONS(2395), - [anon_sym_match] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2395), - [anon_sym_DOT] = ACTIONS(2393), - [anon_sym_true] = ACTIONS(2395), - [anon_sym_false] = ACTIONS(2395), - [sym_none] = ACTIONS(2395), - [sym_undefined] = ACTIONS(2395), - [sym_sink] = ACTIONS(2395), - [sym_integer] = ACTIONS(2395), - [sym_float] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym_multiline_string] = ACTIONS(2393), - [sym_character] = ACTIONS(2393), + [STATE(1027)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2392), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3213), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2393), + [sym__newline] = ACTIONS(2384), }, - [STATE(1055)] = { - [ts_builtin_sym_end] = ACTIONS(2397), - [sym_identifier] = ACTIONS(2399), - [anon_sym_import] = ACTIONS(2399), - [anon_sym_test] = ACTIONS(2399), - [anon_sym_hide] = ACTIONS(2399), - [anon_sym_func] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2399), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_RPAREN] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_void] = ACTIONS(2399), - [anon_sym_anyopaque] = ACTIONS(2399), - [anon_sym_bool] = ACTIONS(2399), - [anon_sym_int] = ACTIONS(2399), - [anon_sym_uint] = ACTIONS(2399), - [anon_sym_float] = ACTIONS(2399), - [anon_sym_range] = ACTIONS(2399), - [anon_sym_i8] = ACTIONS(2399), - [anon_sym_i16] = ACTIONS(2399), - [anon_sym_i32] = ACTIONS(2399), - [anon_sym_i64] = ACTIONS(2399), - [anon_sym_u8] = ACTIONS(2399), - [anon_sym_u16] = ACTIONS(2399), - [anon_sym_u32] = ACTIONS(2399), - [anon_sym_u64] = ACTIONS(2399), - [anon_sym_isize] = ACTIONS(2399), - [anon_sym_usize] = ACTIONS(2399), - [anon_sym_f32] = ACTIONS(2399), - [anon_sym_f64] = ACTIONS(2399), - [anon_sym_c_char] = ACTIONS(2399), - [anon_sym_c_schar] = ACTIONS(2399), - [anon_sym_c_uchar] = ACTIONS(2399), - [anon_sym_c_short] = ACTIONS(2399), - [anon_sym_c_ushort] = ACTIONS(2399), - [anon_sym_c_int] = ACTIONS(2399), - [anon_sym_c_uint] = ACTIONS(2399), - [anon_sym_c_long] = ACTIONS(2399), - [anon_sym_c_ulong] = ACTIONS(2399), - [anon_sym_c_longlong] = ACTIONS(2399), - [anon_sym_c_ulonglong] = ACTIONS(2399), - [anon_sym_c_float] = ACTIONS(2399), - [anon_sym_c_double] = ACTIONS(2399), - [anon_sym_c_longdouble] = ACTIONS(2399), - [anon_sym_return] = ACTIONS(2399), - [anon_sym_yield] = ACTIONS(2399), - [anon_sym_break] = ACTIONS(2399), - [anon_sym_continue] = ACTIONS(2399), - [anon_sym_defer] = ACTIONS(2399), - [anon_sym_errdefer] = ACTIONS(2399), - [anon_sym_if] = ACTIONS(2399), - [anon_sym_else] = ACTIONS(2399), - [anon_sym_while] = ACTIONS(2399), - [anon_sym_expand] = ACTIONS(2399), - [anon_sym_for] = ACTIONS(2399), - [anon_sym_match] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2399), - [anon_sym_DOT] = ACTIONS(2397), - [anon_sym_true] = ACTIONS(2399), - [anon_sym_false] = ACTIONS(2399), - [sym_none] = ACTIONS(2399), - [sym_undefined] = ACTIONS(2399), - [sym_sink] = ACTIONS(2399), - [sym_integer] = ACTIONS(2399), - [sym_float] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym_multiline_string] = ACTIONS(2397), - [sym_character] = ACTIONS(2397), + [STATE(1028)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2392), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1006), + [aux_sym_tuple_literal_repeat1] = STATE(984), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2397), + [sym__newline] = ACTIONS(2386), }, - [STATE(1056)] = { - [ts_builtin_sym_end] = ACTIONS(2401), - [sym_identifier] = ACTIONS(2403), - [anon_sym_import] = ACTIONS(2403), - [anon_sym_test] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_func] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_void] = ACTIONS(2403), - [anon_sym_anyopaque] = ACTIONS(2403), - [anon_sym_bool] = ACTIONS(2403), - [anon_sym_int] = ACTIONS(2403), - [anon_sym_uint] = ACTIONS(2403), - [anon_sym_float] = ACTIONS(2403), - [anon_sym_range] = ACTIONS(2403), - [anon_sym_i8] = ACTIONS(2403), - [anon_sym_i16] = ACTIONS(2403), - [anon_sym_i32] = ACTIONS(2403), - [anon_sym_i64] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(2403), - [anon_sym_u16] = ACTIONS(2403), - [anon_sym_u32] = ACTIONS(2403), - [anon_sym_u64] = ACTIONS(2403), - [anon_sym_isize] = ACTIONS(2403), - [anon_sym_usize] = ACTIONS(2403), - [anon_sym_f32] = ACTIONS(2403), - [anon_sym_f64] = ACTIONS(2403), - [anon_sym_c_char] = ACTIONS(2403), - [anon_sym_c_schar] = ACTIONS(2403), - [anon_sym_c_uchar] = ACTIONS(2403), - [anon_sym_c_short] = ACTIONS(2403), - [anon_sym_c_ushort] = ACTIONS(2403), - [anon_sym_c_int] = ACTIONS(2403), - [anon_sym_c_uint] = ACTIONS(2403), - [anon_sym_c_long] = ACTIONS(2403), - [anon_sym_c_ulong] = ACTIONS(2403), - [anon_sym_c_longlong] = ACTIONS(2403), - [anon_sym_c_ulonglong] = ACTIONS(2403), - [anon_sym_c_float] = ACTIONS(2403), - [anon_sym_c_double] = ACTIONS(2403), - [anon_sym_c_longdouble] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_defer] = ACTIONS(2403), - [anon_sym_errdefer] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_expand] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_DOT] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [sym_none] = ACTIONS(2403), - [sym_undefined] = ACTIONS(2403), - [sym_sink] = ACTIONS(2403), - [sym_integer] = ACTIONS(2403), - [sym_float] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2401), - [sym_multiline_string] = ACTIONS(2401), - [sym_character] = ACTIONS(2401), + [STATE(1029)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2420), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2601), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(991), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2401), + [sym__newline] = ACTIONS(2390), }, - [STATE(1057)] = { - [ts_builtin_sym_end] = ACTIONS(2405), - [sym_identifier] = ACTIONS(2407), - [anon_sym_import] = ACTIONS(2407), - [anon_sym_test] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), + [STATE(1030)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_assignment_statement] = STATE(3248), + [sym_expression_statement] = STATE(3248), + [sym_expression] = STATE(2259), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(965), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2392), + }, + [STATE(1031)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2457), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_keyed_field_initializer] = STATE(2627), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2253), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1032)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2398), + }, + [STATE(1033)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(724), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1034)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2489), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_tuple_literal_repeat1] = STATE(1034), + [sym_identifier] = ACTIONS(2404), [anon_sym_func] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_void] = ACTIONS(2407), - [anon_sym_anyopaque] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_int] = ACTIONS(2407), - [anon_sym_uint] = ACTIONS(2407), - [anon_sym_float] = ACTIONS(2407), - [anon_sym_range] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_c_char] = ACTIONS(2407), - [anon_sym_c_schar] = ACTIONS(2407), - [anon_sym_c_uchar] = ACTIONS(2407), - [anon_sym_c_short] = ACTIONS(2407), - [anon_sym_c_ushort] = ACTIONS(2407), - [anon_sym_c_int] = ACTIONS(2407), - [anon_sym_c_uint] = ACTIONS(2407), - [anon_sym_c_long] = ACTIONS(2407), - [anon_sym_c_ulong] = ACTIONS(2407), - [anon_sym_c_longlong] = ACTIONS(2407), - [anon_sym_c_ulonglong] = ACTIONS(2407), - [anon_sym_c_float] = ACTIONS(2407), - [anon_sym_c_double] = ACTIONS(2407), - [anon_sym_c_longdouble] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_yield] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_defer] = ACTIONS(2407), - [anon_sym_errdefer] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_expand] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_DOT] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [sym_none] = ACTIONS(2407), - [sym_undefined] = ACTIONS(2407), - [sym_sink] = ACTIONS(2407), - [sym_integer] = ACTIONS(2407), - [sym_float] = ACTIONS(2405), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym_multiline_string] = ACTIONS(2405), - [sym_character] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2405), - }, - [STATE(1058)] = { - [ts_builtin_sym_end] = ACTIONS(2409), - [sym_identifier] = ACTIONS(2411), - [anon_sym_import] = ACTIONS(2411), - [anon_sym_test] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_func] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_void] = ACTIONS(2411), - [anon_sym_anyopaque] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_int] = ACTIONS(2411), - [anon_sym_uint] = ACTIONS(2411), - [anon_sym_float] = ACTIONS(2411), - [anon_sym_range] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_c_char] = ACTIONS(2411), - [anon_sym_c_schar] = ACTIONS(2411), - [anon_sym_c_uchar] = ACTIONS(2411), - [anon_sym_c_short] = ACTIONS(2411), - [anon_sym_c_ushort] = ACTIONS(2411), - [anon_sym_c_int] = ACTIONS(2411), - [anon_sym_c_uint] = ACTIONS(2411), - [anon_sym_c_long] = ACTIONS(2411), - [anon_sym_c_ulong] = ACTIONS(2411), - [anon_sym_c_longlong] = ACTIONS(2411), - [anon_sym_c_ulonglong] = ACTIONS(2411), - [anon_sym_c_float] = ACTIONS(2411), - [anon_sym_c_double] = ACTIONS(2411), - [anon_sym_c_longdouble] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_defer] = ACTIONS(2411), - [anon_sym_errdefer] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_expand] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_DOT] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [sym_none] = ACTIONS(2411), - [sym_undefined] = ACTIONS(2411), - [sym_sink] = ACTIONS(2411), - [sym_integer] = ACTIONS(2411), - [sym_float] = ACTIONS(2409), - [anon_sym_DQUOTE] = ACTIONS(2409), - [sym_multiline_string] = ACTIONS(2409), - [sym_character] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2409), - }, - [STATE(1059)] = { - [ts_builtin_sym_end] = ACTIONS(2413), - [sym_identifier] = ACTIONS(2415), - [anon_sym_import] = ACTIONS(2415), - [anon_sym_test] = ACTIONS(2415), - [anon_sym_hide] = ACTIONS(2415), - [anon_sym_func] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_void] = ACTIONS(2415), - [anon_sym_anyopaque] = ACTIONS(2415), - [anon_sym_bool] = ACTIONS(2415), - [anon_sym_int] = ACTIONS(2415), - [anon_sym_uint] = ACTIONS(2415), - [anon_sym_float] = ACTIONS(2415), - [anon_sym_range] = ACTIONS(2415), - [anon_sym_i8] = ACTIONS(2415), - [anon_sym_i16] = ACTIONS(2415), - [anon_sym_i32] = ACTIONS(2415), - [anon_sym_i64] = ACTIONS(2415), - [anon_sym_u8] = ACTIONS(2415), - [anon_sym_u16] = ACTIONS(2415), - [anon_sym_u32] = ACTIONS(2415), - [anon_sym_u64] = ACTIONS(2415), - [anon_sym_isize] = ACTIONS(2415), - [anon_sym_usize] = ACTIONS(2415), - [anon_sym_f32] = ACTIONS(2415), - [anon_sym_f64] = ACTIONS(2415), - [anon_sym_c_char] = ACTIONS(2415), - [anon_sym_c_schar] = ACTIONS(2415), - [anon_sym_c_uchar] = ACTIONS(2415), - [anon_sym_c_short] = ACTIONS(2415), - [anon_sym_c_ushort] = ACTIONS(2415), - [anon_sym_c_int] = ACTIONS(2415), - [anon_sym_c_uint] = ACTIONS(2415), - [anon_sym_c_long] = ACTIONS(2415), - [anon_sym_c_ulong] = ACTIONS(2415), - [anon_sym_c_longlong] = ACTIONS(2415), - [anon_sym_c_ulonglong] = ACTIONS(2415), - [anon_sym_c_float] = ACTIONS(2415), - [anon_sym_c_double] = ACTIONS(2415), - [anon_sym_c_longdouble] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_defer] = ACTIONS(2415), - [anon_sym_errdefer] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_expand] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_DOT] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [sym_none] = ACTIONS(2415), - [sym_undefined] = ACTIONS(2415), - [sym_sink] = ACTIONS(2415), - [sym_integer] = ACTIONS(2415), - [sym_float] = ACTIONS(2413), - [anon_sym_DQUOTE] = ACTIONS(2413), - [sym_multiline_string] = ACTIONS(2413), - [sym_character] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2413), - }, - [STATE(1060)] = { - [ts_builtin_sym_end] = ACTIONS(2417), - [sym_identifier] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2419), - [anon_sym_test] = ACTIONS(2419), - [anon_sym_hide] = ACTIONS(2419), - [anon_sym_func] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_RPAREN] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_void] = ACTIONS(2419), - [anon_sym_anyopaque] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_int] = ACTIONS(2419), - [anon_sym_uint] = ACTIONS(2419), - [anon_sym_float] = ACTIONS(2419), - [anon_sym_range] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_c_char] = ACTIONS(2419), - [anon_sym_c_schar] = ACTIONS(2419), - [anon_sym_c_uchar] = ACTIONS(2419), - [anon_sym_c_short] = ACTIONS(2419), - [anon_sym_c_ushort] = ACTIONS(2419), - [anon_sym_c_int] = ACTIONS(2419), - [anon_sym_c_uint] = ACTIONS(2419), - [anon_sym_c_long] = ACTIONS(2419), - [anon_sym_c_ulong] = ACTIONS(2419), - [anon_sym_c_longlong] = ACTIONS(2419), - [anon_sym_c_ulonglong] = ACTIONS(2419), - [anon_sym_c_float] = ACTIONS(2419), - [anon_sym_c_double] = ACTIONS(2419), - [anon_sym_c_longdouble] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_defer] = ACTIONS(2419), - [anon_sym_errdefer] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_expand] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_DOT] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_none] = ACTIONS(2419), - [sym_undefined] = ACTIONS(2419), - [sym_sink] = ACTIONS(2419), - [sym_integer] = ACTIONS(2419), - [sym_float] = ACTIONS(2417), - [anon_sym_DQUOTE] = ACTIONS(2417), - [sym_multiline_string] = ACTIONS(2417), - [sym_character] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2417), - }, - [STATE(1061)] = { - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_import] = ACTIONS(2423), - [anon_sym_test] = ACTIONS(2423), - [anon_sym_hide] = ACTIONS(2423), - [anon_sym_func] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_void] = ACTIONS(2423), - [anon_sym_anyopaque] = ACTIONS(2423), - [anon_sym_bool] = ACTIONS(2423), - [anon_sym_int] = ACTIONS(2423), - [anon_sym_uint] = ACTIONS(2423), - [anon_sym_float] = ACTIONS(2423), - [anon_sym_range] = ACTIONS(2423), - [anon_sym_i8] = ACTIONS(2423), - [anon_sym_i16] = ACTIONS(2423), - [anon_sym_i32] = ACTIONS(2423), - [anon_sym_i64] = ACTIONS(2423), - [anon_sym_u8] = ACTIONS(2423), - [anon_sym_u16] = ACTIONS(2423), - [anon_sym_u32] = ACTIONS(2423), - [anon_sym_u64] = ACTIONS(2423), - [anon_sym_isize] = ACTIONS(2423), - [anon_sym_usize] = ACTIONS(2423), - [anon_sym_f32] = ACTIONS(2423), - [anon_sym_f64] = ACTIONS(2423), - [anon_sym_c_char] = ACTIONS(2423), - [anon_sym_c_schar] = ACTIONS(2423), - [anon_sym_c_uchar] = ACTIONS(2423), - [anon_sym_c_short] = ACTIONS(2423), - [anon_sym_c_ushort] = ACTIONS(2423), - [anon_sym_c_int] = ACTIONS(2423), - [anon_sym_c_uint] = ACTIONS(2423), - [anon_sym_c_long] = ACTIONS(2423), - [anon_sym_c_ulong] = ACTIONS(2423), - [anon_sym_c_longlong] = ACTIONS(2423), - [anon_sym_c_ulonglong] = ACTIONS(2423), - [anon_sym_c_float] = ACTIONS(2423), - [anon_sym_c_double] = ACTIONS(2423), - [anon_sym_c_longdouble] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_defer] = ACTIONS(2423), - [anon_sym_errdefer] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_else] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_expand] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_DOT] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [sym_none] = ACTIONS(2423), - [sym_undefined] = ACTIONS(2423), - [sym_sink] = ACTIONS(2423), - [sym_integer] = ACTIONS(2423), - [sym_float] = ACTIONS(2421), - [anon_sym_DQUOTE] = ACTIONS(2421), - [sym_multiline_string] = ACTIONS(2421), - [sym_character] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2421), - }, - [STATE(1062)] = { - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_import] = ACTIONS(2427), - [anon_sym_test] = ACTIONS(2427), - [anon_sym_hide] = ACTIONS(2427), - [anon_sym_func] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_RPAREN] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_void] = ACTIONS(2427), - [anon_sym_anyopaque] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_int] = ACTIONS(2427), - [anon_sym_uint] = ACTIONS(2427), - [anon_sym_float] = ACTIONS(2427), - [anon_sym_range] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_c_char] = ACTIONS(2427), - [anon_sym_c_schar] = ACTIONS(2427), - [anon_sym_c_uchar] = ACTIONS(2427), - [anon_sym_c_short] = ACTIONS(2427), - [anon_sym_c_ushort] = ACTIONS(2427), - [anon_sym_c_int] = ACTIONS(2427), - [anon_sym_c_uint] = ACTIONS(2427), - [anon_sym_c_long] = ACTIONS(2427), - [anon_sym_c_ulong] = ACTIONS(2427), - [anon_sym_c_longlong] = ACTIONS(2427), - [anon_sym_c_ulonglong] = ACTIONS(2427), - [anon_sym_c_float] = ACTIONS(2427), - [anon_sym_c_double] = ACTIONS(2427), - [anon_sym_c_longdouble] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_defer] = ACTIONS(2427), - [anon_sym_errdefer] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_else] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_expand] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_DOT] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [sym_none] = ACTIONS(2427), - [sym_undefined] = ACTIONS(2427), - [sym_sink] = ACTIONS(2427), - [sym_integer] = ACTIONS(2427), - [sym_float] = ACTIONS(2425), - [anon_sym_DQUOTE] = ACTIONS(2425), - [sym_multiline_string] = ACTIONS(2425), - [sym_character] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2425), - }, - [STATE(1063)] = { - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_test] = ACTIONS(2431), - [anon_sym_hide] = ACTIONS(2431), - [anon_sym_func] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_void] = ACTIONS(2431), - [anon_sym_anyopaque] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_int] = ACTIONS(2431), - [anon_sym_uint] = ACTIONS(2431), - [anon_sym_float] = ACTIONS(2431), - [anon_sym_range] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_c_char] = ACTIONS(2431), - [anon_sym_c_schar] = ACTIONS(2431), - [anon_sym_c_uchar] = ACTIONS(2431), - [anon_sym_c_short] = ACTIONS(2431), - [anon_sym_c_ushort] = ACTIONS(2431), - [anon_sym_c_int] = ACTIONS(2431), - [anon_sym_c_uint] = ACTIONS(2431), - [anon_sym_c_long] = ACTIONS(2431), - [anon_sym_c_ulong] = ACTIONS(2431), - [anon_sym_c_longlong] = ACTIONS(2431), - [anon_sym_c_ulonglong] = ACTIONS(2431), - [anon_sym_c_float] = ACTIONS(2431), - [anon_sym_c_double] = ACTIONS(2431), - [anon_sym_c_longdouble] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_defer] = ACTIONS(2431), - [anon_sym_errdefer] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_expand] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_DOT] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_none] = ACTIONS(2431), - [sym_undefined] = ACTIONS(2431), - [sym_sink] = ACTIONS(2431), - [sym_integer] = ACTIONS(2431), - [sym_float] = ACTIONS(2429), - [anon_sym_DQUOTE] = ACTIONS(2429), - [sym_multiline_string] = ACTIONS(2429), - [sym_character] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2429), - }, - [STATE(1064)] = { - [ts_builtin_sym_end] = ACTIONS(2433), - [sym_identifier] = ACTIONS(2435), - [anon_sym_import] = ACTIONS(2435), - [anon_sym_test] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_func] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_void] = ACTIONS(2435), - [anon_sym_anyopaque] = ACTIONS(2435), - [anon_sym_bool] = ACTIONS(2435), - [anon_sym_int] = ACTIONS(2435), - [anon_sym_uint] = ACTIONS(2435), - [anon_sym_float] = ACTIONS(2435), - [anon_sym_range] = ACTIONS(2435), - [anon_sym_i8] = ACTIONS(2435), - [anon_sym_i16] = ACTIONS(2435), - [anon_sym_i32] = ACTIONS(2435), - [anon_sym_i64] = ACTIONS(2435), - [anon_sym_u8] = ACTIONS(2435), - [anon_sym_u16] = ACTIONS(2435), - [anon_sym_u32] = ACTIONS(2435), - [anon_sym_u64] = ACTIONS(2435), - [anon_sym_isize] = ACTIONS(2435), - [anon_sym_usize] = ACTIONS(2435), - [anon_sym_f32] = ACTIONS(2435), - [anon_sym_f64] = ACTIONS(2435), - [anon_sym_c_char] = ACTIONS(2435), - [anon_sym_c_schar] = ACTIONS(2435), - [anon_sym_c_uchar] = ACTIONS(2435), - [anon_sym_c_short] = ACTIONS(2435), - [anon_sym_c_ushort] = ACTIONS(2435), - [anon_sym_c_int] = ACTIONS(2435), - [anon_sym_c_uint] = ACTIONS(2435), - [anon_sym_c_long] = ACTIONS(2435), - [anon_sym_c_ulong] = ACTIONS(2435), - [anon_sym_c_longlong] = ACTIONS(2435), - [anon_sym_c_ulonglong] = ACTIONS(2435), - [anon_sym_c_float] = ACTIONS(2435), - [anon_sym_c_double] = ACTIONS(2435), - [anon_sym_c_longdouble] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_yield] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_defer] = ACTIONS(2435), - [anon_sym_errdefer] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_expand] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_DOT] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [sym_none] = ACTIONS(2435), - [sym_undefined] = ACTIONS(2435), - [sym_sink] = ACTIONS(2435), - [sym_integer] = ACTIONS(2435), - [sym_float] = ACTIONS(2433), - [anon_sym_DQUOTE] = ACTIONS(2433), - [sym_multiline_string] = ACTIONS(2433), - [sym_character] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2433), - }, - [STATE(1065)] = { - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_identifier] = ACTIONS(2439), - [anon_sym_import] = ACTIONS(2439), - [anon_sym_test] = ACTIONS(2439), - [anon_sym_hide] = ACTIONS(2439), - [anon_sym_func] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_RPAREN] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_void] = ACTIONS(2439), - [anon_sym_anyopaque] = ACTIONS(2439), - [anon_sym_bool] = ACTIONS(2439), - [anon_sym_int] = ACTIONS(2439), - [anon_sym_uint] = ACTIONS(2439), - [anon_sym_float] = ACTIONS(2439), - [anon_sym_range] = ACTIONS(2439), - [anon_sym_i8] = ACTIONS(2439), - [anon_sym_i16] = ACTIONS(2439), - [anon_sym_i32] = ACTIONS(2439), - [anon_sym_i64] = ACTIONS(2439), - [anon_sym_u8] = ACTIONS(2439), - [anon_sym_u16] = ACTIONS(2439), - [anon_sym_u32] = ACTIONS(2439), - [anon_sym_u64] = ACTIONS(2439), - [anon_sym_isize] = ACTIONS(2439), - [anon_sym_usize] = ACTIONS(2439), - [anon_sym_f32] = ACTIONS(2439), - [anon_sym_f64] = ACTIONS(2439), - [anon_sym_c_char] = ACTIONS(2439), - [anon_sym_c_schar] = ACTIONS(2439), - [anon_sym_c_uchar] = ACTIONS(2439), - [anon_sym_c_short] = ACTIONS(2439), - [anon_sym_c_ushort] = ACTIONS(2439), - [anon_sym_c_int] = ACTIONS(2439), - [anon_sym_c_uint] = ACTIONS(2439), - [anon_sym_c_long] = ACTIONS(2439), - [anon_sym_c_ulong] = ACTIONS(2439), - [anon_sym_c_longlong] = ACTIONS(2439), - [anon_sym_c_ulonglong] = ACTIONS(2439), - [anon_sym_c_float] = ACTIONS(2439), - [anon_sym_c_double] = ACTIONS(2439), - [anon_sym_c_longdouble] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_defer] = ACTIONS(2439), - [anon_sym_errdefer] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_expand] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_DOT] = ACTIONS(2437), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_anyopaque] = ACTIONS(2430), + [anon_sym_bool] = ACTIONS(2430), + [anon_sym_int] = ACTIONS(2430), + [anon_sym_uint] = ACTIONS(2430), + [anon_sym_float] = ACTIONS(2430), + [anon_sym_range] = ACTIONS(2430), + [anon_sym_i8] = ACTIONS(2430), + [anon_sym_i16] = ACTIONS(2430), + [anon_sym_i32] = ACTIONS(2430), + [anon_sym_i64] = ACTIONS(2430), + [anon_sym_u8] = ACTIONS(2430), + [anon_sym_u16] = ACTIONS(2430), + [anon_sym_u32] = ACTIONS(2430), + [anon_sym_u64] = ACTIONS(2430), + [anon_sym_isize] = ACTIONS(2430), + [anon_sym_usize] = ACTIONS(2430), + [anon_sym_f32] = ACTIONS(2430), + [anon_sym_f64] = ACTIONS(2430), + [anon_sym_c_char] = ACTIONS(2430), + [anon_sym_c_schar] = ACTIONS(2430), + [anon_sym_c_uchar] = ACTIONS(2430), + [anon_sym_c_short] = ACTIONS(2430), + [anon_sym_c_ushort] = ACTIONS(2430), + [anon_sym_c_int] = ACTIONS(2430), + [anon_sym_c_uint] = ACTIONS(2430), + [anon_sym_c_long] = ACTIONS(2430), + [anon_sym_c_ulong] = ACTIONS(2430), + [anon_sym_c_longlong] = ACTIONS(2430), + [anon_sym_c_ulonglong] = ACTIONS(2430), + [anon_sym_c_float] = ACTIONS(2430), + [anon_sym_c_double] = ACTIONS(2430), + [anon_sym_c_longdouble] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_DOT] = ACTIONS(2436), [anon_sym_true] = ACTIONS(2439), [anon_sym_false] = ACTIONS(2439), - [sym_none] = ACTIONS(2439), - [sym_undefined] = ACTIONS(2439), - [sym_sink] = ACTIONS(2439), - [sym_integer] = ACTIONS(2439), - [sym_float] = ACTIONS(2437), - [anon_sym_DQUOTE] = ACTIONS(2437), - [sym_multiline_string] = ACTIONS(2437), - [sym_character] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2437), - }, - [STATE(1066)] = { - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [anon_sym_import] = ACTIONS(2443), - [anon_sym_test] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_func] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_void] = ACTIONS(2443), - [anon_sym_anyopaque] = ACTIONS(2443), - [anon_sym_bool] = ACTIONS(2443), - [anon_sym_int] = ACTIONS(2443), - [anon_sym_uint] = ACTIONS(2443), - [anon_sym_float] = ACTIONS(2443), - [anon_sym_range] = ACTIONS(2443), - [anon_sym_i8] = ACTIONS(2443), - [anon_sym_i16] = ACTIONS(2443), - [anon_sym_i32] = ACTIONS(2443), - [anon_sym_i64] = ACTIONS(2443), - [anon_sym_u8] = ACTIONS(2443), - [anon_sym_u16] = ACTIONS(2443), - [anon_sym_u32] = ACTIONS(2443), - [anon_sym_u64] = ACTIONS(2443), - [anon_sym_isize] = ACTIONS(2443), - [anon_sym_usize] = ACTIONS(2443), - [anon_sym_f32] = ACTIONS(2443), - [anon_sym_f64] = ACTIONS(2443), - [anon_sym_c_char] = ACTIONS(2443), - [anon_sym_c_schar] = ACTIONS(2443), - [anon_sym_c_uchar] = ACTIONS(2443), - [anon_sym_c_short] = ACTIONS(2443), - [anon_sym_c_ushort] = ACTIONS(2443), - [anon_sym_c_int] = ACTIONS(2443), - [anon_sym_c_uint] = ACTIONS(2443), - [anon_sym_c_long] = ACTIONS(2443), - [anon_sym_c_ulong] = ACTIONS(2443), - [anon_sym_c_longlong] = ACTIONS(2443), - [anon_sym_c_ulonglong] = ACTIONS(2443), - [anon_sym_c_float] = ACTIONS(2443), - [anon_sym_c_double] = ACTIONS(2443), - [anon_sym_c_longdouble] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_yield] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_defer] = ACTIONS(2443), - [anon_sym_errdefer] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_expand] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_AMP] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_DOT] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [sym_none] = ACTIONS(2443), - [sym_undefined] = ACTIONS(2443), - [sym_sink] = ACTIONS(2443), - [sym_integer] = ACTIONS(2443), - [sym_float] = ACTIONS(2441), - [anon_sym_DQUOTE] = ACTIONS(2441), - [sym_multiline_string] = ACTIONS(2441), - [sym_character] = ACTIONS(2441), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2441), - }, - [STATE(1067)] = { - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_import] = ACTIONS(2447), - [anon_sym_test] = ACTIONS(2447), - [anon_sym_hide] = ACTIONS(2447), - [anon_sym_func] = ACTIONS(2447), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_void] = ACTIONS(2447), - [anon_sym_anyopaque] = ACTIONS(2447), - [anon_sym_bool] = ACTIONS(2447), - [anon_sym_int] = ACTIONS(2447), - [anon_sym_uint] = ACTIONS(2447), - [anon_sym_float] = ACTIONS(2447), - [anon_sym_range] = ACTIONS(2447), - [anon_sym_i8] = ACTIONS(2447), - [anon_sym_i16] = ACTIONS(2447), - [anon_sym_i32] = ACTIONS(2447), - [anon_sym_i64] = ACTIONS(2447), - [anon_sym_u8] = ACTIONS(2447), - [anon_sym_u16] = ACTIONS(2447), - [anon_sym_u32] = ACTIONS(2447), - [anon_sym_u64] = ACTIONS(2447), - [anon_sym_isize] = ACTIONS(2447), - [anon_sym_usize] = ACTIONS(2447), - [anon_sym_f32] = ACTIONS(2447), - [anon_sym_f64] = ACTIONS(2447), - [anon_sym_c_char] = ACTIONS(2447), - [anon_sym_c_schar] = ACTIONS(2447), - [anon_sym_c_uchar] = ACTIONS(2447), - [anon_sym_c_short] = ACTIONS(2447), - [anon_sym_c_ushort] = ACTIONS(2447), - [anon_sym_c_int] = ACTIONS(2447), - [anon_sym_c_uint] = ACTIONS(2447), - [anon_sym_c_long] = ACTIONS(2447), - [anon_sym_c_ulong] = ACTIONS(2447), - [anon_sym_c_longlong] = ACTIONS(2447), - [anon_sym_c_ulonglong] = ACTIONS(2447), - [anon_sym_c_float] = ACTIONS(2447), - [anon_sym_c_double] = ACTIONS(2447), - [anon_sym_c_longdouble] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_yield] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_defer] = ACTIONS(2447), - [anon_sym_errdefer] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_expand] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_DOT] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2447), - [anon_sym_false] = ACTIONS(2447), - [sym_none] = ACTIONS(2447), - [sym_undefined] = ACTIONS(2447), - [sym_sink] = ACTIONS(2447), - [sym_integer] = ACTIONS(2447), + [sym_none] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [sym_sink] = ACTIONS(2442), + [sym_integer] = ACTIONS(2442), [sym_float] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2448), [sym_multiline_string] = ACTIONS(2445), [sym_character] = ACTIONS(2445), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2445), + [sym__newline] = ACTIONS(2422), }, - [STATE(1068)] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_import] = ACTIONS(2451), - [anon_sym_test] = ACTIONS(2451), - [anon_sym_hide] = ACTIONS(2451), - [anon_sym_func] = ACTIONS(2451), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_RPAREN] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_void] = ACTIONS(2451), - [anon_sym_anyopaque] = ACTIONS(2451), - [anon_sym_bool] = ACTIONS(2451), - [anon_sym_int] = ACTIONS(2451), - [anon_sym_uint] = ACTIONS(2451), - [anon_sym_float] = ACTIONS(2451), - [anon_sym_range] = ACTIONS(2451), - [anon_sym_i8] = ACTIONS(2451), - [anon_sym_i16] = ACTIONS(2451), - [anon_sym_i32] = ACTIONS(2451), - [anon_sym_i64] = ACTIONS(2451), - [anon_sym_u8] = ACTIONS(2451), - [anon_sym_u16] = ACTIONS(2451), - [anon_sym_u32] = ACTIONS(2451), - [anon_sym_u64] = ACTIONS(2451), - [anon_sym_isize] = ACTIONS(2451), - [anon_sym_usize] = ACTIONS(2451), - [anon_sym_f32] = ACTIONS(2451), - [anon_sym_f64] = ACTIONS(2451), - [anon_sym_c_char] = ACTIONS(2451), - [anon_sym_c_schar] = ACTIONS(2451), - [anon_sym_c_uchar] = ACTIONS(2451), - [anon_sym_c_short] = ACTIONS(2451), - [anon_sym_c_ushort] = ACTIONS(2451), - [anon_sym_c_int] = ACTIONS(2451), - [anon_sym_c_uint] = ACTIONS(2451), - [anon_sym_c_long] = ACTIONS(2451), - [anon_sym_c_ulong] = ACTIONS(2451), - [anon_sym_c_longlong] = ACTIONS(2451), - [anon_sym_c_ulonglong] = ACTIONS(2451), - [anon_sym_c_float] = ACTIONS(2451), - [anon_sym_c_double] = ACTIONS(2451), - [anon_sym_c_longdouble] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_yield] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_defer] = ACTIONS(2451), - [anon_sym_errdefer] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_expand] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_DOT] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2451), - [anon_sym_false] = ACTIONS(2451), - [sym_none] = ACTIONS(2451), - [sym_undefined] = ACTIONS(2451), - [sym_sink] = ACTIONS(2451), - [sym_integer] = ACTIONS(2451), - [sym_float] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_multiline_string] = ACTIONS(2449), - [sym_character] = ACTIONS(2449), + [STATE(1035)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2152), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2449), + [sym__newline] = ACTIONS(447), }, - [STATE(1069)] = { - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2455), - [anon_sym_import] = ACTIONS(2455), - [anon_sym_test] = ACTIONS(2455), - [anon_sym_hide] = ACTIONS(2455), - [anon_sym_func] = ACTIONS(2455), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_void] = ACTIONS(2455), - [anon_sym_anyopaque] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_int] = ACTIONS(2455), - [anon_sym_uint] = ACTIONS(2455), - [anon_sym_float] = ACTIONS(2455), - [anon_sym_range] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_c_char] = ACTIONS(2455), - [anon_sym_c_schar] = ACTIONS(2455), - [anon_sym_c_uchar] = ACTIONS(2455), - [anon_sym_c_short] = ACTIONS(2455), - [anon_sym_c_ushort] = ACTIONS(2455), - [anon_sym_c_int] = ACTIONS(2455), - [anon_sym_c_uint] = ACTIONS(2455), - [anon_sym_c_long] = ACTIONS(2455), - [anon_sym_c_ulong] = ACTIONS(2455), - [anon_sym_c_longlong] = ACTIONS(2455), - [anon_sym_c_ulonglong] = ACTIONS(2455), - [anon_sym_c_float] = ACTIONS(2455), - [anon_sym_c_double] = ACTIONS(2455), - [anon_sym_c_longdouble] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_defer] = ACTIONS(2455), - [anon_sym_errdefer] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_expand] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_DOT] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [sym_none] = ACTIONS(2455), - [sym_undefined] = ACTIONS(2455), - [sym_sink] = ACTIONS(2455), - [sym_integer] = ACTIONS(2455), - [sym_float] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_multiline_string] = ACTIONS(2453), - [sym_character] = ACTIONS(2453), + [STATE(1036)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2453), + [sym__newline] = ACTIONS(447), }, - [STATE(1070)] = { - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2459), - [anon_sym_import] = ACTIONS(2459), - [anon_sym_test] = ACTIONS(2459), - [anon_sym_hide] = ACTIONS(2459), - [anon_sym_func] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_void] = ACTIONS(2459), - [anon_sym_anyopaque] = ACTIONS(2459), - [anon_sym_bool] = ACTIONS(2459), - [anon_sym_int] = ACTIONS(2459), - [anon_sym_uint] = ACTIONS(2459), - [anon_sym_float] = ACTIONS(2459), - [anon_sym_range] = ACTIONS(2459), - [anon_sym_i8] = ACTIONS(2459), - [anon_sym_i16] = ACTIONS(2459), - [anon_sym_i32] = ACTIONS(2459), - [anon_sym_i64] = ACTIONS(2459), - [anon_sym_u8] = ACTIONS(2459), - [anon_sym_u16] = ACTIONS(2459), - [anon_sym_u32] = ACTIONS(2459), - [anon_sym_u64] = ACTIONS(2459), - [anon_sym_isize] = ACTIONS(2459), - [anon_sym_usize] = ACTIONS(2459), - [anon_sym_f32] = ACTIONS(2459), - [anon_sym_f64] = ACTIONS(2459), - [anon_sym_c_char] = ACTIONS(2459), - [anon_sym_c_schar] = ACTIONS(2459), - [anon_sym_c_uchar] = ACTIONS(2459), - [anon_sym_c_short] = ACTIONS(2459), - [anon_sym_c_ushort] = ACTIONS(2459), - [anon_sym_c_int] = ACTIONS(2459), - [anon_sym_c_uint] = ACTIONS(2459), - [anon_sym_c_long] = ACTIONS(2459), - [anon_sym_c_ulong] = ACTIONS(2459), - [anon_sym_c_longlong] = ACTIONS(2459), - [anon_sym_c_ulonglong] = ACTIONS(2459), - [anon_sym_c_float] = ACTIONS(2459), - [anon_sym_c_double] = ACTIONS(2459), - [anon_sym_c_longdouble] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_yield] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_defer] = ACTIONS(2459), - [anon_sym_errdefer] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_expand] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_DOT] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [sym_none] = ACTIONS(2459), - [sym_undefined] = ACTIONS(2459), - [sym_sink] = ACTIONS(2459), - [sym_integer] = ACTIONS(2459), - [sym_float] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_multiline_string] = ACTIONS(2457), - [sym_character] = ACTIONS(2457), + [STATE(1037)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1038)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1092), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2455), + }, + [STATE(1039)] = { + [sym_type] = STATE(619), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(281), + [sym_identifier] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(286), + [anon_sym_test] = ACTIONS(286), + [anon_sym_hide] = ACTIONS(286), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PIPE] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(1689), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_mut] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(281), + [anon_sym_else] = ACTIONS(286), + [anon_sym_DOT_DOT] = ACTIONS(286), + [anon_sym_DOT_DOT_EQ] = ACTIONS(281), + [anon_sym_orelse] = ACTIONS(286), + [anon_sym_catch] = ACTIONS(286), + [anon_sym_or] = ACTIONS(286), + [anon_sym_and] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(281), + [anon_sym_BANG_EQ] = ACTIONS(281), + [anon_sym_LT] = ACTIONS(286), + [anon_sym_LT_EQ] = ACTIONS(281), + [anon_sym_GT] = ACTIONS(286), + [anon_sym_GT_EQ] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(281), + [anon_sym_xor] = ACTIONS(286), + [anon_sym_LT_LT] = ACTIONS(286), + [anon_sym_GT_GT] = ACTIONS(281), + [anon_sym_LT_LT_PIPE] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(286), + [anon_sym_CARET] = ACTIONS(281), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(281), + }, + [STATE(1040)] = { + [sym_type] = STATE(627), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(333), + [sym_identifier] = ACTIONS(1607), + [anon_sym_import] = ACTIONS(338), + [anon_sym_test] = ACTIONS(338), + [anon_sym_hide] = ACTIONS(338), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PIPE] = ACTIONS(333), + [anon_sym_QMARK] = ACTIONS(1615), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_mut] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(333), + [anon_sym_else] = ACTIONS(338), + [anon_sym_DOT_DOT] = ACTIONS(338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(333), + [anon_sym_orelse] = ACTIONS(338), + [anon_sym_catch] = ACTIONS(338), + [anon_sym_or] = ACTIONS(338), + [anon_sym_and] = ACTIONS(338), + [anon_sym_EQ_EQ] = ACTIONS(333), + [anon_sym_BANG_EQ] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(338), + [anon_sym_LT_EQ] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(338), + [anon_sym_GT_EQ] = ACTIONS(333), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_xor] = ACTIONS(338), + [anon_sym_LT_LT] = ACTIONS(338), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_LT_LT_PIPE] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(333), + [anon_sym_DOT] = ACTIONS(338), + [anon_sym_CARET] = ACTIONS(333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(333), + }, + [STATE(1041)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1093), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2457), }, - [STATE(1071)] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_import] = ACTIONS(2463), - [anon_sym_test] = ACTIONS(2463), - [anon_sym_hide] = ACTIONS(2463), - [anon_sym_func] = ACTIONS(2463), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_RPAREN] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_void] = ACTIONS(2463), - [anon_sym_anyopaque] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_int] = ACTIONS(2463), - [anon_sym_uint] = ACTIONS(2463), - [anon_sym_float] = ACTIONS(2463), - [anon_sym_range] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_c_char] = ACTIONS(2463), - [anon_sym_c_schar] = ACTIONS(2463), - [anon_sym_c_uchar] = ACTIONS(2463), - [anon_sym_c_short] = ACTIONS(2463), - [anon_sym_c_ushort] = ACTIONS(2463), - [anon_sym_c_int] = ACTIONS(2463), - [anon_sym_c_uint] = ACTIONS(2463), - [anon_sym_c_long] = ACTIONS(2463), - [anon_sym_c_ulong] = ACTIONS(2463), - [anon_sym_c_longlong] = ACTIONS(2463), - [anon_sym_c_ulonglong] = ACTIONS(2463), - [anon_sym_c_float] = ACTIONS(2463), - [anon_sym_c_double] = ACTIONS(2463), - [anon_sym_c_longdouble] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_yield] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_defer] = ACTIONS(2463), - [anon_sym_errdefer] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_expand] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_DOT] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [sym_none] = ACTIONS(2463), - [sym_undefined] = ACTIONS(2463), - [sym_sink] = ACTIONS(2463), - [sym_integer] = ACTIONS(2463), - [sym_float] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_multiline_string] = ACTIONS(2461), - [sym_character] = ACTIONS(2461), + [STATE(1042)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2294), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1290), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2461), }, - [STATE(1072)] = { - [ts_builtin_sym_end] = ACTIONS(2465), + [STATE(1043)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(2463), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1877), + }, + [STATE(1044)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), [sym_identifier] = ACTIONS(2467), - [anon_sym_import] = ACTIONS(2467), - [anon_sym_test] = ACTIONS(2467), - [anon_sym_hide] = ACTIONS(2467), - [anon_sym_func] = ACTIONS(2467), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_RPAREN] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_void] = ACTIONS(2467), - [anon_sym_anyopaque] = ACTIONS(2467), - [anon_sym_bool] = ACTIONS(2467), - [anon_sym_int] = ACTIONS(2467), - [anon_sym_uint] = ACTIONS(2467), - [anon_sym_float] = ACTIONS(2467), - [anon_sym_range] = ACTIONS(2467), - [anon_sym_i8] = ACTIONS(2467), - [anon_sym_i16] = ACTIONS(2467), - [anon_sym_i32] = ACTIONS(2467), - [anon_sym_i64] = ACTIONS(2467), - [anon_sym_u8] = ACTIONS(2467), - [anon_sym_u16] = ACTIONS(2467), - [anon_sym_u32] = ACTIONS(2467), - [anon_sym_u64] = ACTIONS(2467), - [anon_sym_isize] = ACTIONS(2467), - [anon_sym_usize] = ACTIONS(2467), - [anon_sym_f32] = ACTIONS(2467), - [anon_sym_f64] = ACTIONS(2467), - [anon_sym_c_char] = ACTIONS(2467), - [anon_sym_c_schar] = ACTIONS(2467), - [anon_sym_c_uchar] = ACTIONS(2467), - [anon_sym_c_short] = ACTIONS(2467), - [anon_sym_c_ushort] = ACTIONS(2467), - [anon_sym_c_int] = ACTIONS(2467), - [anon_sym_c_uint] = ACTIONS(2467), - [anon_sym_c_long] = ACTIONS(2467), - [anon_sym_c_ulong] = ACTIONS(2467), - [anon_sym_c_longlong] = ACTIONS(2467), - [anon_sym_c_ulonglong] = ACTIONS(2467), - [anon_sym_c_float] = ACTIONS(2467), - [anon_sym_c_double] = ACTIONS(2467), - [anon_sym_c_longdouble] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_yield] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_defer] = ACTIONS(2467), - [anon_sym_errdefer] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_expand] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_DOT] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [sym_none] = ACTIONS(2467), - [sym_undefined] = ACTIONS(2467), - [sym_sink] = ACTIONS(2467), - [sym_integer] = ACTIONS(2467), - [sym_float] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_multiline_string] = ACTIONS(2465), - [sym_character] = ACTIONS(2465), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2465), - }, - [STATE(1073)] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_import] = ACTIONS(2471), - [anon_sym_test] = ACTIONS(2471), - [anon_sym_hide] = ACTIONS(2471), - [anon_sym_func] = ACTIONS(2471), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_RPAREN] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_void] = ACTIONS(2471), - [anon_sym_anyopaque] = ACTIONS(2471), - [anon_sym_bool] = ACTIONS(2471), - [anon_sym_int] = ACTIONS(2471), - [anon_sym_uint] = ACTIONS(2471), - [anon_sym_float] = ACTIONS(2471), - [anon_sym_range] = ACTIONS(2471), - [anon_sym_i8] = ACTIONS(2471), - [anon_sym_i16] = ACTIONS(2471), - [anon_sym_i32] = ACTIONS(2471), - [anon_sym_i64] = ACTIONS(2471), - [anon_sym_u8] = ACTIONS(2471), - [anon_sym_u16] = ACTIONS(2471), - [anon_sym_u32] = ACTIONS(2471), - [anon_sym_u64] = ACTIONS(2471), - [anon_sym_isize] = ACTIONS(2471), - [anon_sym_usize] = ACTIONS(2471), - [anon_sym_f32] = ACTIONS(2471), - [anon_sym_f64] = ACTIONS(2471), - [anon_sym_c_char] = ACTIONS(2471), - [anon_sym_c_schar] = ACTIONS(2471), - [anon_sym_c_uchar] = ACTIONS(2471), - [anon_sym_c_short] = ACTIONS(2471), - [anon_sym_c_ushort] = ACTIONS(2471), - [anon_sym_c_int] = ACTIONS(2471), - [anon_sym_c_uint] = ACTIONS(2471), - [anon_sym_c_long] = ACTIONS(2471), - [anon_sym_c_ulong] = ACTIONS(2471), - [anon_sym_c_longlong] = ACTIONS(2471), - [anon_sym_c_ulonglong] = ACTIONS(2471), - [anon_sym_c_float] = ACTIONS(2471), - [anon_sym_c_double] = ACTIONS(2471), - [anon_sym_c_longdouble] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_defer] = ACTIONS(2471), - [anon_sym_errdefer] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_expand] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_DOT] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [sym_none] = ACTIONS(2471), - [sym_undefined] = ACTIONS(2471), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), [sym_sink] = ACTIONS(2471), - [sym_integer] = ACTIONS(2471), - [sym_float] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_multiline_string] = ACTIONS(2469), - [sym_character] = ACTIONS(2469), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2469), + [sym__newline] = ACTIONS(1877), }, - [STATE(1074)] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_import] = ACTIONS(2475), - [anon_sym_test] = ACTIONS(2475), - [anon_sym_hide] = ACTIONS(2475), - [anon_sym_func] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_RPAREN] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_void] = ACTIONS(2475), - [anon_sym_anyopaque] = ACTIONS(2475), - [anon_sym_bool] = ACTIONS(2475), - [anon_sym_int] = ACTIONS(2475), - [anon_sym_uint] = ACTIONS(2475), - [anon_sym_float] = ACTIONS(2475), - [anon_sym_range] = ACTIONS(2475), - [anon_sym_i8] = ACTIONS(2475), - [anon_sym_i16] = ACTIONS(2475), - [anon_sym_i32] = ACTIONS(2475), - [anon_sym_i64] = ACTIONS(2475), - [anon_sym_u8] = ACTIONS(2475), - [anon_sym_u16] = ACTIONS(2475), - [anon_sym_u32] = ACTIONS(2475), - [anon_sym_u64] = ACTIONS(2475), - [anon_sym_isize] = ACTIONS(2475), - [anon_sym_usize] = ACTIONS(2475), - [anon_sym_f32] = ACTIONS(2475), - [anon_sym_f64] = ACTIONS(2475), - [anon_sym_c_char] = ACTIONS(2475), - [anon_sym_c_schar] = ACTIONS(2475), - [anon_sym_c_uchar] = ACTIONS(2475), - [anon_sym_c_short] = ACTIONS(2475), - [anon_sym_c_ushort] = ACTIONS(2475), - [anon_sym_c_int] = ACTIONS(2475), - [anon_sym_c_uint] = ACTIONS(2475), - [anon_sym_c_long] = ACTIONS(2475), - [anon_sym_c_ulong] = ACTIONS(2475), - [anon_sym_c_longlong] = ACTIONS(2475), - [anon_sym_c_ulonglong] = ACTIONS(2475), - [anon_sym_c_float] = ACTIONS(2475), - [anon_sym_c_double] = ACTIONS(2475), - [anon_sym_c_longdouble] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_errdefer] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_expand] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_undefined] = ACTIONS(2475), - [sym_sink] = ACTIONS(2475), - [sym_integer] = ACTIONS(2475), - [sym_float] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_multiline_string] = ACTIONS(2473), - [sym_character] = ACTIONS(2473), + [STATE(1045)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(665), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2473), + [sym__newline] = ACTIONS(2475), }, - [STATE(1075)] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2479), - [anon_sym_import] = ACTIONS(2479), - [anon_sym_test] = ACTIONS(2479), - [anon_sym_hide] = ACTIONS(2479), - [anon_sym_func] = ACTIONS(2479), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), + [STATE(1046)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2487), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_void] = ACTIONS(2479), - [anon_sym_anyopaque] = ACTIONS(2479), - [anon_sym_bool] = ACTIONS(2479), - [anon_sym_int] = ACTIONS(2479), - [anon_sym_uint] = ACTIONS(2479), - [anon_sym_float] = ACTIONS(2479), - [anon_sym_range] = ACTIONS(2479), - [anon_sym_i8] = ACTIONS(2479), - [anon_sym_i16] = ACTIONS(2479), - [anon_sym_i32] = ACTIONS(2479), - [anon_sym_i64] = ACTIONS(2479), - [anon_sym_u8] = ACTIONS(2479), - [anon_sym_u16] = ACTIONS(2479), - [anon_sym_u32] = ACTIONS(2479), - [anon_sym_u64] = ACTIONS(2479), - [anon_sym_isize] = ACTIONS(2479), - [anon_sym_usize] = ACTIONS(2479), - [anon_sym_f32] = ACTIONS(2479), - [anon_sym_f64] = ACTIONS(2479), - [anon_sym_c_char] = ACTIONS(2479), - [anon_sym_c_schar] = ACTIONS(2479), - [anon_sym_c_uchar] = ACTIONS(2479), - [anon_sym_c_short] = ACTIONS(2479), - [anon_sym_c_ushort] = ACTIONS(2479), - [anon_sym_c_int] = ACTIONS(2479), - [anon_sym_c_uint] = ACTIONS(2479), - [anon_sym_c_long] = ACTIONS(2479), - [anon_sym_c_ulong] = ACTIONS(2479), - [anon_sym_c_longlong] = ACTIONS(2479), - [anon_sym_c_ulonglong] = ACTIONS(2479), - [anon_sym_c_float] = ACTIONS(2479), - [anon_sym_c_double] = ACTIONS(2479), - [anon_sym_c_longdouble] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_defer] = ACTIONS(2479), - [anon_sym_errdefer] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_expand] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_DOT] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [sym_none] = ACTIONS(2479), - [sym_undefined] = ACTIONS(2479), - [sym_sink] = ACTIONS(2479), - [sym_integer] = ACTIONS(2479), - [sym_float] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_multiline_string] = ACTIONS(2477), - [sym_character] = ACTIONS(2477), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2477), + [sym__newline] = ACTIONS(2479), }, - [STATE(1076)] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_import] = ACTIONS(2483), - [anon_sym_test] = ACTIONS(2483), - [anon_sym_hide] = ACTIONS(2483), - [anon_sym_func] = ACTIONS(2483), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2481), + [STATE(1047)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2362), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1052), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_void] = ACTIONS(2483), - [anon_sym_anyopaque] = ACTIONS(2483), - [anon_sym_bool] = ACTIONS(2483), - [anon_sym_int] = ACTIONS(2483), - [anon_sym_uint] = ACTIONS(2483), - [anon_sym_float] = ACTIONS(2483), - [anon_sym_range] = ACTIONS(2483), - [anon_sym_i8] = ACTIONS(2483), - [anon_sym_i16] = ACTIONS(2483), - [anon_sym_i32] = ACTIONS(2483), - [anon_sym_i64] = ACTIONS(2483), - [anon_sym_u8] = ACTIONS(2483), - [anon_sym_u16] = ACTIONS(2483), - [anon_sym_u32] = ACTIONS(2483), - [anon_sym_u64] = ACTIONS(2483), - [anon_sym_isize] = ACTIONS(2483), - [anon_sym_usize] = ACTIONS(2483), - [anon_sym_f32] = ACTIONS(2483), - [anon_sym_f64] = ACTIONS(2483), - [anon_sym_c_char] = ACTIONS(2483), - [anon_sym_c_schar] = ACTIONS(2483), - [anon_sym_c_uchar] = ACTIONS(2483), - [anon_sym_c_short] = ACTIONS(2483), - [anon_sym_c_ushort] = ACTIONS(2483), - [anon_sym_c_int] = ACTIONS(2483), - [anon_sym_c_uint] = ACTIONS(2483), - [anon_sym_c_long] = ACTIONS(2483), - [anon_sym_c_ulong] = ACTIONS(2483), - [anon_sym_c_longlong] = ACTIONS(2483), - [anon_sym_c_ulonglong] = ACTIONS(2483), - [anon_sym_c_float] = ACTIONS(2483), - [anon_sym_c_double] = ACTIONS(2483), - [anon_sym_c_longdouble] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_defer] = ACTIONS(2483), - [anon_sym_errdefer] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_expand] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [sym_none] = ACTIONS(2483), - [sym_undefined] = ACTIONS(2483), - [sym_sink] = ACTIONS(2483), - [sym_integer] = ACTIONS(2483), - [sym_float] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_multiline_string] = ACTIONS(2481), - [sym_character] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2481), + [sym__newline] = ACTIONS(2483), }, - [STATE(1077)] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_import] = ACTIONS(2487), - [anon_sym_test] = ACTIONS(2487), - [anon_sym_hide] = ACTIONS(2487), - [anon_sym_func] = ACTIONS(2487), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), + [STATE(1048)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2490), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_void] = 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_return] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_defer] = ACTIONS(2487), - [anon_sym_errdefer] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_expand] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_DOT] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [sym_none] = ACTIONS(2487), - [sym_undefined] = ACTIONS(2487), - [sym_sink] = ACTIONS(2487), - [sym_integer] = ACTIONS(2487), - [sym_float] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_multiline_string] = ACTIONS(2485), - [sym_character] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2485), + [sym__newline] = ACTIONS(447), }, - [STATE(1078)] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2491), - [anon_sym_import] = ACTIONS(2491), - [anon_sym_test] = ACTIONS(2491), - [anon_sym_hide] = ACTIONS(2491), - [anon_sym_func] = ACTIONS(2491), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_RPAREN] = ACTIONS(2489), + [STATE(1049)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(724), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1050)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2487), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1051)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(760), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_void] = ACTIONS(2491), - [anon_sym_anyopaque] = ACTIONS(2491), - [anon_sym_bool] = ACTIONS(2491), - [anon_sym_int] = ACTIONS(2491), - [anon_sym_uint] = ACTIONS(2491), - [anon_sym_float] = ACTIONS(2491), - [anon_sym_range] = ACTIONS(2491), - [anon_sym_i8] = ACTIONS(2491), - [anon_sym_i16] = ACTIONS(2491), - [anon_sym_i32] = ACTIONS(2491), - [anon_sym_i64] = ACTIONS(2491), - [anon_sym_u8] = ACTIONS(2491), - [anon_sym_u16] = ACTIONS(2491), - [anon_sym_u32] = ACTIONS(2491), - [anon_sym_u64] = ACTIONS(2491), - [anon_sym_isize] = ACTIONS(2491), - [anon_sym_usize] = ACTIONS(2491), - [anon_sym_f32] = ACTIONS(2491), - [anon_sym_f64] = ACTIONS(2491), - [anon_sym_c_char] = ACTIONS(2491), - [anon_sym_c_schar] = ACTIONS(2491), - [anon_sym_c_uchar] = ACTIONS(2491), - [anon_sym_c_short] = ACTIONS(2491), - [anon_sym_c_ushort] = ACTIONS(2491), - [anon_sym_c_int] = ACTIONS(2491), - [anon_sym_c_uint] = ACTIONS(2491), - [anon_sym_c_long] = ACTIONS(2491), - [anon_sym_c_ulong] = ACTIONS(2491), - [anon_sym_c_longlong] = ACTIONS(2491), - [anon_sym_c_ulonglong] = ACTIONS(2491), - [anon_sym_c_float] = ACTIONS(2491), - [anon_sym_c_double] = ACTIONS(2491), - [anon_sym_c_longdouble] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_defer] = ACTIONS(2491), - [anon_sym_errdefer] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_expand] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_DOT] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [sym_none] = ACTIONS(2491), - [sym_undefined] = ACTIONS(2491), - [sym_sink] = ACTIONS(2491), - [sym_integer] = ACTIONS(2491), - [sym_float] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_multiline_string] = ACTIONS(2489), - [sym_character] = ACTIONS(2489), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2489), - }, - [STATE(1079)] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2495), - [anon_sym_import] = ACTIONS(2495), - [anon_sym_test] = ACTIONS(2495), - [anon_sym_hide] = ACTIONS(2495), - [anon_sym_func] = ACTIONS(2495), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_RPAREN] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_void] = ACTIONS(2495), - [anon_sym_anyopaque] = ACTIONS(2495), - [anon_sym_bool] = ACTIONS(2495), - [anon_sym_int] = ACTIONS(2495), - [anon_sym_uint] = ACTIONS(2495), - [anon_sym_float] = ACTIONS(2495), - [anon_sym_range] = ACTIONS(2495), - [anon_sym_i8] = ACTIONS(2495), - [anon_sym_i16] = ACTIONS(2495), - [anon_sym_i32] = ACTIONS(2495), - [anon_sym_i64] = ACTIONS(2495), - [anon_sym_u8] = ACTIONS(2495), - [anon_sym_u16] = ACTIONS(2495), - [anon_sym_u32] = ACTIONS(2495), - [anon_sym_u64] = ACTIONS(2495), - [anon_sym_isize] = ACTIONS(2495), - [anon_sym_usize] = ACTIONS(2495), - [anon_sym_f32] = ACTIONS(2495), - [anon_sym_f64] = ACTIONS(2495), - [anon_sym_c_char] = ACTIONS(2495), - [anon_sym_c_schar] = ACTIONS(2495), - [anon_sym_c_uchar] = ACTIONS(2495), - [anon_sym_c_short] = ACTIONS(2495), - [anon_sym_c_ushort] = ACTIONS(2495), - [anon_sym_c_int] = ACTIONS(2495), - [anon_sym_c_uint] = ACTIONS(2495), - [anon_sym_c_long] = ACTIONS(2495), - [anon_sym_c_ulong] = ACTIONS(2495), - [anon_sym_c_longlong] = ACTIONS(2495), - [anon_sym_c_ulonglong] = ACTIONS(2495), - [anon_sym_c_float] = ACTIONS(2495), - [anon_sym_c_double] = ACTIONS(2495), - [anon_sym_c_longdouble] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_yield] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_defer] = ACTIONS(2495), - [anon_sym_errdefer] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_expand] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_match] = ACTIONS(2495), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_DOT] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2495), - [anon_sym_false] = ACTIONS(2495), - [sym_none] = ACTIONS(2495), - [sym_undefined] = ACTIONS(2495), - [sym_sink] = ACTIONS(2495), - [sym_integer] = ACTIONS(2495), - [sym_float] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_multiline_string] = ACTIONS(2493), - [sym_character] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2493), }, - [STATE(1080)] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_identifier] = ACTIONS(2499), - [anon_sym_import] = ACTIONS(2499), - [anon_sym_test] = ACTIONS(2499), - [anon_sym_hide] = ACTIONS(2499), - [anon_sym_func] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_RPAREN] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_void] = ACTIONS(2499), - [anon_sym_anyopaque] = ACTIONS(2499), - [anon_sym_bool] = ACTIONS(2499), - [anon_sym_int] = ACTIONS(2499), - [anon_sym_uint] = ACTIONS(2499), - [anon_sym_float] = ACTIONS(2499), - [anon_sym_range] = ACTIONS(2499), - [anon_sym_i8] = ACTIONS(2499), - [anon_sym_i16] = ACTIONS(2499), - [anon_sym_i32] = ACTIONS(2499), - [anon_sym_i64] = ACTIONS(2499), - [anon_sym_u8] = ACTIONS(2499), - [anon_sym_u16] = ACTIONS(2499), - [anon_sym_u32] = ACTIONS(2499), - [anon_sym_u64] = ACTIONS(2499), - [anon_sym_isize] = ACTIONS(2499), - [anon_sym_usize] = ACTIONS(2499), - [anon_sym_f32] = ACTIONS(2499), - [anon_sym_f64] = ACTIONS(2499), - [anon_sym_c_char] = ACTIONS(2499), - [anon_sym_c_schar] = ACTIONS(2499), - [anon_sym_c_uchar] = ACTIONS(2499), - [anon_sym_c_short] = ACTIONS(2499), - [anon_sym_c_ushort] = ACTIONS(2499), - [anon_sym_c_int] = ACTIONS(2499), - [anon_sym_c_uint] = ACTIONS(2499), - [anon_sym_c_long] = ACTIONS(2499), - [anon_sym_c_ulong] = ACTIONS(2499), - [anon_sym_c_longlong] = ACTIONS(2499), - [anon_sym_c_ulonglong] = ACTIONS(2499), - [anon_sym_c_float] = ACTIONS(2499), - [anon_sym_c_double] = ACTIONS(2499), - [anon_sym_c_longdouble] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_defer] = ACTIONS(2499), - [anon_sym_errdefer] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_expand] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_DOT] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [sym_none] = ACTIONS(2499), - [sym_undefined] = ACTIONS(2499), - [sym_sink] = ACTIONS(2499), - [sym_integer] = ACTIONS(2499), - [sym_float] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_multiline_string] = ACTIONS(2497), - [sym_character] = ACTIONS(2497), + [STATE(1052)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2358), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2497), + [sym__newline] = ACTIONS(447), }, - [STATE(1081)] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2503), - [anon_sym_import] = ACTIONS(2503), - [anon_sym_test] = ACTIONS(2503), - [anon_sym_hide] = ACTIONS(2503), - [anon_sym_func] = ACTIONS(2503), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_RPAREN] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_void] = ACTIONS(2503), - [anon_sym_anyopaque] = ACTIONS(2503), - [anon_sym_bool] = ACTIONS(2503), - [anon_sym_int] = ACTIONS(2503), - [anon_sym_uint] = ACTIONS(2503), - [anon_sym_float] = ACTIONS(2503), - [anon_sym_range] = ACTIONS(2503), - [anon_sym_i8] = ACTIONS(2503), - [anon_sym_i16] = ACTIONS(2503), - [anon_sym_i32] = ACTIONS(2503), - [anon_sym_i64] = ACTIONS(2503), - [anon_sym_u8] = ACTIONS(2503), - [anon_sym_u16] = ACTIONS(2503), - [anon_sym_u32] = ACTIONS(2503), - [anon_sym_u64] = ACTIONS(2503), - [anon_sym_isize] = ACTIONS(2503), - [anon_sym_usize] = ACTIONS(2503), - [anon_sym_f32] = ACTIONS(2503), - [anon_sym_f64] = ACTIONS(2503), - [anon_sym_c_char] = ACTIONS(2503), - [anon_sym_c_schar] = ACTIONS(2503), - [anon_sym_c_uchar] = ACTIONS(2503), - [anon_sym_c_short] = ACTIONS(2503), - [anon_sym_c_ushort] = ACTIONS(2503), - [anon_sym_c_int] = ACTIONS(2503), - [anon_sym_c_uint] = ACTIONS(2503), - [anon_sym_c_long] = ACTIONS(2503), - [anon_sym_c_ulong] = ACTIONS(2503), - [anon_sym_c_longlong] = ACTIONS(2503), - [anon_sym_c_ulonglong] = ACTIONS(2503), - [anon_sym_c_float] = ACTIONS(2503), - [anon_sym_c_double] = ACTIONS(2503), - [anon_sym_c_longdouble] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_defer] = ACTIONS(2503), - [anon_sym_errdefer] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_expand] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2503), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_DOT] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [sym_none] = ACTIONS(2503), - [sym_undefined] = ACTIONS(2503), - [sym_sink] = ACTIONS(2503), - [sym_integer] = ACTIONS(2503), - [sym_float] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_multiline_string] = ACTIONS(2501), - [sym_character] = ACTIONS(2501), + [STATE(1053)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1058), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2501), + [sym__newline] = ACTIONS(2499), }, - [STATE(1082)] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_import] = ACTIONS(2507), - [anon_sym_test] = ACTIONS(2507), - [anon_sym_hide] = ACTIONS(2507), - [anon_sym_func] = ACTIONS(2507), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_RPAREN] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_void] = ACTIONS(2507), - [anon_sym_anyopaque] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_int] = ACTIONS(2507), - [anon_sym_uint] = ACTIONS(2507), - [anon_sym_float] = ACTIONS(2507), - [anon_sym_range] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_c_char] = ACTIONS(2507), - [anon_sym_c_schar] = ACTIONS(2507), - [anon_sym_c_uchar] = ACTIONS(2507), - [anon_sym_c_short] = ACTIONS(2507), - [anon_sym_c_ushort] = ACTIONS(2507), - [anon_sym_c_int] = ACTIONS(2507), - [anon_sym_c_uint] = ACTIONS(2507), - [anon_sym_c_long] = ACTIONS(2507), - [anon_sym_c_ulong] = ACTIONS(2507), - [anon_sym_c_longlong] = ACTIONS(2507), - [anon_sym_c_ulonglong] = ACTIONS(2507), - [anon_sym_c_float] = ACTIONS(2507), - [anon_sym_c_double] = ACTIONS(2507), - [anon_sym_c_longdouble] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_defer] = ACTIONS(2507), - [anon_sym_errdefer] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_expand] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_DOT] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [sym_none] = ACTIONS(2507), - [sym_undefined] = ACTIONS(2507), - [sym_sink] = ACTIONS(2507), - [sym_integer] = ACTIONS(2507), - [sym_float] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_multiline_string] = ACTIONS(2505), - [sym_character] = ACTIONS(2505), + [STATE(1054)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2372), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1160), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2505), + [sym__newline] = ACTIONS(2503), }, - [STATE(1083)] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_import] = ACTIONS(2511), - [anon_sym_test] = ACTIONS(2511), - [anon_sym_hide] = ACTIONS(2511), - [anon_sym_func] = ACTIONS(2511), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_LPAREN] = ACTIONS(2509), + [STATE(1055)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2419), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3286), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2505), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2507), + }, + [STATE(1056)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_void] = ACTIONS(2511), - [anon_sym_anyopaque] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_int] = ACTIONS(2511), - [anon_sym_uint] = ACTIONS(2511), - [anon_sym_float] = ACTIONS(2511), - [anon_sym_range] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_c_char] = ACTIONS(2511), - [anon_sym_c_schar] = ACTIONS(2511), - [anon_sym_c_uchar] = ACTIONS(2511), - [anon_sym_c_short] = ACTIONS(2511), - [anon_sym_c_ushort] = ACTIONS(2511), - [anon_sym_c_int] = ACTIONS(2511), - [anon_sym_c_uint] = ACTIONS(2511), - [anon_sym_c_long] = ACTIONS(2511), - [anon_sym_c_ulong] = ACTIONS(2511), - [anon_sym_c_longlong] = ACTIONS(2511), - [anon_sym_c_ulonglong] = ACTIONS(2511), - [anon_sym_c_float] = ACTIONS(2511), - [anon_sym_c_double] = ACTIONS(2511), - [anon_sym_c_longdouble] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_defer] = ACTIONS(2511), - [anon_sym_errdefer] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_expand] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [sym_none] = ACTIONS(2511), - [sym_undefined] = ACTIONS(2511), - [sym_sink] = ACTIONS(2511), - [sym_integer] = ACTIONS(2511), - [sym_float] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_multiline_string] = ACTIONS(2509), - [sym_character] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2509), + [sym__newline] = ACTIONS(2511), }, - [STATE(1084)] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_import] = ACTIONS(2515), - [anon_sym_test] = ACTIONS(2515), - [anon_sym_hide] = ACTIONS(2515), - [anon_sym_func] = ACTIONS(2515), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_RPAREN] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_void] = ACTIONS(2515), - [anon_sym_anyopaque] = ACTIONS(2515), - [anon_sym_bool] = ACTIONS(2515), - [anon_sym_int] = ACTIONS(2515), - [anon_sym_uint] = ACTIONS(2515), - [anon_sym_float] = ACTIONS(2515), - [anon_sym_range] = ACTIONS(2515), - [anon_sym_i8] = ACTIONS(2515), - [anon_sym_i16] = ACTIONS(2515), - [anon_sym_i32] = ACTIONS(2515), - [anon_sym_i64] = ACTIONS(2515), - [anon_sym_u8] = ACTIONS(2515), - [anon_sym_u16] = ACTIONS(2515), - [anon_sym_u32] = ACTIONS(2515), - [anon_sym_u64] = ACTIONS(2515), - [anon_sym_isize] = ACTIONS(2515), - [anon_sym_usize] = ACTIONS(2515), - [anon_sym_f32] = ACTIONS(2515), - [anon_sym_f64] = ACTIONS(2515), - [anon_sym_c_char] = ACTIONS(2515), - [anon_sym_c_schar] = ACTIONS(2515), - [anon_sym_c_uchar] = ACTIONS(2515), - [anon_sym_c_short] = ACTIONS(2515), - [anon_sym_c_ushort] = ACTIONS(2515), - [anon_sym_c_int] = ACTIONS(2515), - [anon_sym_c_uint] = ACTIONS(2515), - [anon_sym_c_long] = ACTIONS(2515), - [anon_sym_c_ulong] = ACTIONS(2515), - [anon_sym_c_longlong] = ACTIONS(2515), - [anon_sym_c_ulonglong] = ACTIONS(2515), - [anon_sym_c_float] = ACTIONS(2515), - [anon_sym_c_double] = ACTIONS(2515), - [anon_sym_c_longdouble] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_defer] = ACTIONS(2515), - [anon_sym_errdefer] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_expand] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_DOT] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [sym_none] = ACTIONS(2515), - [sym_undefined] = ACTIONS(2515), - [sym_sink] = ACTIONS(2515), - [sym_integer] = ACTIONS(2515), - [sym_float] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_multiline_string] = ACTIONS(2513), - [sym_character] = ACTIONS(2513), + [STATE(1057)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2441), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1162), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2513), }, - [STATE(1085)] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_import] = ACTIONS(2519), - [anon_sym_test] = ACTIONS(2519), - [anon_sym_hide] = ACTIONS(2519), - [anon_sym_func] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_RPAREN] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_void] = ACTIONS(2519), - [anon_sym_anyopaque] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_int] = ACTIONS(2519), - [anon_sym_uint] = ACTIONS(2519), - [anon_sym_float] = ACTIONS(2519), - [anon_sym_range] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_c_char] = ACTIONS(2519), - [anon_sym_c_schar] = ACTIONS(2519), - [anon_sym_c_uchar] = ACTIONS(2519), - [anon_sym_c_short] = ACTIONS(2519), - [anon_sym_c_ushort] = ACTIONS(2519), - [anon_sym_c_int] = ACTIONS(2519), - [anon_sym_c_uint] = ACTIONS(2519), - [anon_sym_c_long] = ACTIONS(2519), - [anon_sym_c_ulong] = ACTIONS(2519), - [anon_sym_c_longlong] = ACTIONS(2519), - [anon_sym_c_ulonglong] = ACTIONS(2519), - [anon_sym_c_float] = ACTIONS(2519), - [anon_sym_c_double] = ACTIONS(2519), - [anon_sym_c_longdouble] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_defer] = ACTIONS(2519), - [anon_sym_errdefer] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_expand] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_DOT] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [sym_none] = ACTIONS(2519), - [sym_undefined] = ACTIONS(2519), - [sym_sink] = ACTIONS(2519), - [sym_integer] = ACTIONS(2519), - [sym_float] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_multiline_string] = ACTIONS(2517), - [sym_character] = ACTIONS(2517), + [STATE(1058)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1059)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1067), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2517), }, - [STATE(1086)] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2523), - [anon_sym_import] = ACTIONS(2523), - [anon_sym_test] = ACTIONS(2523), - [anon_sym_hide] = ACTIONS(2523), - [anon_sym_func] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_RPAREN] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_void] = ACTIONS(2523), - [anon_sym_anyopaque] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_int] = ACTIONS(2523), - [anon_sym_uint] = ACTIONS(2523), - [anon_sym_float] = ACTIONS(2523), - [anon_sym_range] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_c_char] = ACTIONS(2523), - [anon_sym_c_schar] = ACTIONS(2523), - [anon_sym_c_uchar] = ACTIONS(2523), - [anon_sym_c_short] = ACTIONS(2523), - [anon_sym_c_ushort] = ACTIONS(2523), - [anon_sym_c_int] = ACTIONS(2523), - [anon_sym_c_uint] = ACTIONS(2523), - [anon_sym_c_long] = ACTIONS(2523), - [anon_sym_c_ulong] = ACTIONS(2523), - [anon_sym_c_longlong] = ACTIONS(2523), - [anon_sym_c_ulonglong] = ACTIONS(2523), - [anon_sym_c_float] = ACTIONS(2523), - [anon_sym_c_double] = ACTIONS(2523), - [anon_sym_c_longdouble] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_defer] = ACTIONS(2523), - [anon_sym_errdefer] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_else] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_expand] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2523), - [anon_sym_DOT] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [sym_none] = ACTIONS(2523), - [sym_undefined] = ACTIONS(2523), - [sym_sink] = ACTIONS(2523), - [sym_integer] = ACTIONS(2523), - [sym_float] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_multiline_string] = ACTIONS(2521), - [sym_character] = ACTIONS(2521), + [STATE(1060)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1068), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2515), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2519), + }, + [STATE(1061)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2313), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2521), }, - [STATE(1087)] = { - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_identifier] = ACTIONS(2527), - [anon_sym_import] = ACTIONS(2527), - [anon_sym_test] = ACTIONS(2527), - [anon_sym_hide] = ACTIONS(2527), - [anon_sym_func] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2527), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_RPAREN] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_void] = ACTIONS(2527), - [anon_sym_anyopaque] = ACTIONS(2527), - [anon_sym_bool] = ACTIONS(2527), - [anon_sym_int] = ACTIONS(2527), - [anon_sym_uint] = ACTIONS(2527), - [anon_sym_float] = ACTIONS(2527), - [anon_sym_range] = ACTIONS(2527), - [anon_sym_i8] = ACTIONS(2527), - [anon_sym_i16] = ACTIONS(2527), - [anon_sym_i32] = ACTIONS(2527), - [anon_sym_i64] = ACTIONS(2527), - [anon_sym_u8] = ACTIONS(2527), - [anon_sym_u16] = ACTIONS(2527), - [anon_sym_u32] = ACTIONS(2527), - [anon_sym_u64] = ACTIONS(2527), - [anon_sym_isize] = ACTIONS(2527), - [anon_sym_usize] = ACTIONS(2527), - [anon_sym_f32] = ACTIONS(2527), - [anon_sym_f64] = ACTIONS(2527), - [anon_sym_c_char] = ACTIONS(2527), - [anon_sym_c_schar] = ACTIONS(2527), - [anon_sym_c_uchar] = ACTIONS(2527), - [anon_sym_c_short] = ACTIONS(2527), - [anon_sym_c_ushort] = ACTIONS(2527), - [anon_sym_c_int] = ACTIONS(2527), - [anon_sym_c_uint] = ACTIONS(2527), - [anon_sym_c_long] = ACTIONS(2527), - [anon_sym_c_ulong] = ACTIONS(2527), - [anon_sym_c_longlong] = ACTIONS(2527), - [anon_sym_c_ulonglong] = ACTIONS(2527), - [anon_sym_c_float] = ACTIONS(2527), - [anon_sym_c_double] = ACTIONS(2527), - [anon_sym_c_longdouble] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_defer] = ACTIONS(2527), - [anon_sym_errdefer] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_else] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2527), - [anon_sym_expand] = ACTIONS(2527), - [anon_sym_for] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2527), - [anon_sym_DOT] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [sym_none] = ACTIONS(2527), - [sym_undefined] = ACTIONS(2527), - [sym_sink] = ACTIONS(2527), - [sym_integer] = ACTIONS(2527), - [sym_float] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym_multiline_string] = ACTIONS(2525), - [sym_character] = ACTIONS(2525), + [STATE(1062)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2426), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2523), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2525), }, - [STATE(1088)] = { - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_identifier] = ACTIONS(2531), - [anon_sym_import] = ACTIONS(2531), - [anon_sym_test] = ACTIONS(2531), - [anon_sym_hide] = ACTIONS(2531), - [anon_sym_func] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_RPAREN] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2529), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_void] = ACTIONS(2531), - [anon_sym_anyopaque] = ACTIONS(2531), - [anon_sym_bool] = ACTIONS(2531), - [anon_sym_int] = ACTIONS(2531), - [anon_sym_uint] = ACTIONS(2531), - [anon_sym_float] = ACTIONS(2531), - [anon_sym_range] = ACTIONS(2531), - [anon_sym_i8] = ACTIONS(2531), - [anon_sym_i16] = ACTIONS(2531), - [anon_sym_i32] = ACTIONS(2531), - [anon_sym_i64] = ACTIONS(2531), - [anon_sym_u8] = ACTIONS(2531), - [anon_sym_u16] = ACTIONS(2531), - [anon_sym_u32] = ACTIONS(2531), - [anon_sym_u64] = ACTIONS(2531), - [anon_sym_isize] = ACTIONS(2531), - [anon_sym_usize] = ACTIONS(2531), - [anon_sym_f32] = ACTIONS(2531), - [anon_sym_f64] = ACTIONS(2531), - [anon_sym_c_char] = ACTIONS(2531), - [anon_sym_c_schar] = ACTIONS(2531), - [anon_sym_c_uchar] = ACTIONS(2531), - [anon_sym_c_short] = ACTIONS(2531), - [anon_sym_c_ushort] = ACTIONS(2531), - [anon_sym_c_int] = ACTIONS(2531), - [anon_sym_c_uint] = ACTIONS(2531), - [anon_sym_c_long] = ACTIONS(2531), - [anon_sym_c_ulong] = ACTIONS(2531), - [anon_sym_c_longlong] = ACTIONS(2531), - [anon_sym_c_ulonglong] = ACTIONS(2531), - [anon_sym_c_float] = ACTIONS(2531), - [anon_sym_c_double] = ACTIONS(2531), - [anon_sym_c_longdouble] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_defer] = ACTIONS(2531), - [anon_sym_errdefer] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_else] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_expand] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2531), - [anon_sym_DOT] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2531), - [anon_sym_false] = ACTIONS(2531), - [sym_none] = ACTIONS(2531), - [sym_undefined] = ACTIONS(2531), - [sym_sink] = ACTIONS(2531), - [sym_integer] = ACTIONS(2531), - [sym_float] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2529), - [sym_multiline_string] = ACTIONS(2529), - [sym_character] = ACTIONS(2529), + [STATE(1063)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2430), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3162), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2527), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2529), }, - [STATE(1089)] = { - [ts_builtin_sym_end] = ACTIONS(2533), - [sym_identifier] = ACTIONS(2535), - [anon_sym_import] = ACTIONS(2535), - [anon_sym_test] = ACTIONS(2535), - [anon_sym_hide] = ACTIONS(2535), - [anon_sym_func] = ACTIONS(2535), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_RPAREN] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_DOLLAR] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_void] = ACTIONS(2535), - [anon_sym_anyopaque] = ACTIONS(2535), - [anon_sym_bool] = ACTIONS(2535), - [anon_sym_int] = ACTIONS(2535), - [anon_sym_uint] = ACTIONS(2535), - [anon_sym_float] = ACTIONS(2535), - [anon_sym_range] = ACTIONS(2535), - [anon_sym_i8] = ACTIONS(2535), - [anon_sym_i16] = ACTIONS(2535), - [anon_sym_i32] = ACTIONS(2535), - [anon_sym_i64] = ACTIONS(2535), - [anon_sym_u8] = ACTIONS(2535), - [anon_sym_u16] = ACTIONS(2535), - [anon_sym_u32] = ACTIONS(2535), - [anon_sym_u64] = ACTIONS(2535), - [anon_sym_isize] = ACTIONS(2535), - [anon_sym_usize] = ACTIONS(2535), - [anon_sym_f32] = ACTIONS(2535), - [anon_sym_f64] = ACTIONS(2535), - [anon_sym_c_char] = ACTIONS(2535), - [anon_sym_c_schar] = ACTIONS(2535), - [anon_sym_c_uchar] = ACTIONS(2535), - [anon_sym_c_short] = ACTIONS(2535), - [anon_sym_c_ushort] = ACTIONS(2535), - [anon_sym_c_int] = ACTIONS(2535), - [anon_sym_c_uint] = ACTIONS(2535), - [anon_sym_c_long] = ACTIONS(2535), - [anon_sym_c_ulong] = ACTIONS(2535), - [anon_sym_c_longlong] = ACTIONS(2535), - [anon_sym_c_ulonglong] = ACTIONS(2535), - [anon_sym_c_float] = ACTIONS(2535), - [anon_sym_c_double] = ACTIONS(2535), - [anon_sym_c_longdouble] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_defer] = ACTIONS(2535), - [anon_sym_errdefer] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_expand] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2535), - [anon_sym_DOT] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [sym_none] = ACTIONS(2535), - [sym_undefined] = ACTIONS(2535), - [sym_sink] = ACTIONS(2535), - [sym_integer] = ACTIONS(2535), - [sym_float] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2533), - [sym_multiline_string] = ACTIONS(2533), - [sym_character] = ACTIONS(2533), + [STATE(1064)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1065)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2533), }, - [STATE(1090)] = { - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2539), - [anon_sym_import] = ACTIONS(2539), - [anon_sym_test] = ACTIONS(2539), - [anon_sym_hide] = ACTIONS(2539), - [anon_sym_func] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_RPAREN] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_void] = ACTIONS(2539), - [anon_sym_anyopaque] = ACTIONS(2539), - [anon_sym_bool] = ACTIONS(2539), - [anon_sym_int] = ACTIONS(2539), - [anon_sym_uint] = ACTIONS(2539), - [anon_sym_float] = ACTIONS(2539), - [anon_sym_range] = ACTIONS(2539), - [anon_sym_i8] = ACTIONS(2539), - [anon_sym_i16] = ACTIONS(2539), - [anon_sym_i32] = ACTIONS(2539), - [anon_sym_i64] = ACTIONS(2539), - [anon_sym_u8] = ACTIONS(2539), - [anon_sym_u16] = ACTIONS(2539), - [anon_sym_u32] = ACTIONS(2539), - [anon_sym_u64] = ACTIONS(2539), - [anon_sym_isize] = ACTIONS(2539), - [anon_sym_usize] = ACTIONS(2539), - [anon_sym_f32] = ACTIONS(2539), - [anon_sym_f64] = ACTIONS(2539), - [anon_sym_c_char] = ACTIONS(2539), - [anon_sym_c_schar] = ACTIONS(2539), - [anon_sym_c_uchar] = ACTIONS(2539), - [anon_sym_c_short] = ACTIONS(2539), - [anon_sym_c_ushort] = ACTIONS(2539), - [anon_sym_c_int] = ACTIONS(2539), - [anon_sym_c_uint] = ACTIONS(2539), - [anon_sym_c_long] = ACTIONS(2539), - [anon_sym_c_ulong] = ACTIONS(2539), - [anon_sym_c_longlong] = ACTIONS(2539), - [anon_sym_c_ulonglong] = ACTIONS(2539), - [anon_sym_c_float] = ACTIONS(2539), - [anon_sym_c_double] = ACTIONS(2539), - [anon_sym_c_longdouble] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_defer] = ACTIONS(2539), - [anon_sym_errdefer] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_else] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_expand] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2539), - [anon_sym_DOT] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2539), - [anon_sym_false] = ACTIONS(2539), - [sym_none] = ACTIONS(2539), - [sym_undefined] = ACTIONS(2539), - [sym_sink] = ACTIONS(2539), - [sym_integer] = ACTIONS(2539), - [sym_float] = ACTIONS(2537), - [anon_sym_DQUOTE] = ACTIONS(2537), - [sym_multiline_string] = ACTIONS(2537), - [sym_character] = ACTIONS(2537), + [STATE(1066)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1074), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2537), + [sym__newline] = ACTIONS(2535), }, - [STATE(1091)] = { - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_identifier] = ACTIONS(2543), - [anon_sym_import] = ACTIONS(2543), - [anon_sym_test] = ACTIONS(2543), - [anon_sym_hide] = ACTIONS(2543), - [anon_sym_func] = ACTIONS(2543), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_RPAREN] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_DOLLAR] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_void] = ACTIONS(2543), - [anon_sym_anyopaque] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_int] = ACTIONS(2543), - [anon_sym_uint] = ACTIONS(2543), - [anon_sym_float] = ACTIONS(2543), - [anon_sym_range] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_c_char] = ACTIONS(2543), - [anon_sym_c_schar] = ACTIONS(2543), - [anon_sym_c_uchar] = ACTIONS(2543), - [anon_sym_c_short] = ACTIONS(2543), - [anon_sym_c_ushort] = ACTIONS(2543), - [anon_sym_c_int] = ACTIONS(2543), - [anon_sym_c_uint] = ACTIONS(2543), - [anon_sym_c_long] = ACTIONS(2543), - [anon_sym_c_ulong] = ACTIONS(2543), - [anon_sym_c_longlong] = ACTIONS(2543), - [anon_sym_c_ulonglong] = ACTIONS(2543), - [anon_sym_c_float] = ACTIONS(2543), - [anon_sym_c_double] = ACTIONS(2543), - [anon_sym_c_longdouble] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_yield] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_defer] = ACTIONS(2543), - [anon_sym_errdefer] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_else] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_expand] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_AMP] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2543), - [anon_sym_DOT] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2543), - [anon_sym_false] = ACTIONS(2543), - [sym_none] = ACTIONS(2543), - [sym_undefined] = ACTIONS(2543), - [sym_sink] = ACTIONS(2543), - [sym_integer] = ACTIONS(2543), - [sym_float] = ACTIONS(2541), - [anon_sym_DQUOTE] = ACTIONS(2541), - [sym_multiline_string] = ACTIONS(2541), - [sym_character] = ACTIONS(2541), + [STATE(1067)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1068)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1069)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2539), + }, + [STATE(1070)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1078), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2537), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2541), }, - [STATE(1092)] = { - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_import] = ACTIONS(2547), - [anon_sym_test] = ACTIONS(2547), - [anon_sym_hide] = ACTIONS(2547), - [anon_sym_func] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_RPAREN] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_void] = ACTIONS(2547), - [anon_sym_anyopaque] = ACTIONS(2547), - [anon_sym_bool] = ACTIONS(2547), - [anon_sym_int] = ACTIONS(2547), - [anon_sym_uint] = ACTIONS(2547), - [anon_sym_float] = ACTIONS(2547), - [anon_sym_range] = ACTIONS(2547), - [anon_sym_i8] = ACTIONS(2547), - [anon_sym_i16] = ACTIONS(2547), - [anon_sym_i32] = ACTIONS(2547), - [anon_sym_i64] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2547), - [anon_sym_u16] = ACTIONS(2547), - [anon_sym_u32] = ACTIONS(2547), - [anon_sym_u64] = ACTIONS(2547), - [anon_sym_isize] = ACTIONS(2547), - [anon_sym_usize] = ACTIONS(2547), - [anon_sym_f32] = ACTIONS(2547), - [anon_sym_f64] = ACTIONS(2547), - [anon_sym_c_char] = ACTIONS(2547), - [anon_sym_c_schar] = ACTIONS(2547), - [anon_sym_c_uchar] = ACTIONS(2547), - [anon_sym_c_short] = ACTIONS(2547), - [anon_sym_c_ushort] = ACTIONS(2547), - [anon_sym_c_int] = ACTIONS(2547), - [anon_sym_c_uint] = ACTIONS(2547), - [anon_sym_c_long] = ACTIONS(2547), - [anon_sym_c_ulong] = ACTIONS(2547), - [anon_sym_c_longlong] = ACTIONS(2547), - [anon_sym_c_ulonglong] = ACTIONS(2547), - [anon_sym_c_float] = ACTIONS(2547), - [anon_sym_c_double] = ACTIONS(2547), - [anon_sym_c_longdouble] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_yield] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_defer] = ACTIONS(2547), - [anon_sym_errdefer] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_else] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_expand] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2547), - [anon_sym_DOT] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [sym_none] = ACTIONS(2547), - [sym_undefined] = ACTIONS(2547), - [sym_sink] = ACTIONS(2547), - [sym_integer] = ACTIONS(2547), - [sym_float] = ACTIONS(2545), - [anon_sym_DQUOTE] = ACTIONS(2545), - [sym_multiline_string] = ACTIONS(2545), - [sym_character] = ACTIONS(2545), + [STATE(1071)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2543), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2545), + [sym__newline] = ACTIONS(447), }, - [STATE(1093)] = { - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2551), - [anon_sym_import] = ACTIONS(2551), - [anon_sym_test] = ACTIONS(2551), - [anon_sym_hide] = ACTIONS(2551), - [anon_sym_func] = ACTIONS(2551), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_RPAREN] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_DOLLAR] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_void] = ACTIONS(2551), - [anon_sym_anyopaque] = ACTIONS(2551), - [anon_sym_bool] = ACTIONS(2551), - [anon_sym_int] = ACTIONS(2551), - [anon_sym_uint] = ACTIONS(2551), - [anon_sym_float] = ACTIONS(2551), - [anon_sym_range] = ACTIONS(2551), - [anon_sym_i8] = ACTIONS(2551), - [anon_sym_i16] = ACTIONS(2551), - [anon_sym_i32] = ACTIONS(2551), - [anon_sym_i64] = ACTIONS(2551), - [anon_sym_u8] = ACTIONS(2551), - [anon_sym_u16] = ACTIONS(2551), - [anon_sym_u32] = ACTIONS(2551), - [anon_sym_u64] = ACTIONS(2551), - [anon_sym_isize] = ACTIONS(2551), - [anon_sym_usize] = ACTIONS(2551), - [anon_sym_f32] = ACTIONS(2551), - [anon_sym_f64] = ACTIONS(2551), - [anon_sym_c_char] = ACTIONS(2551), - [anon_sym_c_schar] = ACTIONS(2551), - [anon_sym_c_uchar] = ACTIONS(2551), - [anon_sym_c_short] = ACTIONS(2551), - [anon_sym_c_ushort] = ACTIONS(2551), - [anon_sym_c_int] = ACTIONS(2551), - [anon_sym_c_uint] = ACTIONS(2551), - [anon_sym_c_long] = ACTIONS(2551), - [anon_sym_c_ulong] = ACTIONS(2551), - [anon_sym_c_longlong] = ACTIONS(2551), - [anon_sym_c_ulonglong] = ACTIONS(2551), - [anon_sym_c_float] = ACTIONS(2551), - [anon_sym_c_double] = ACTIONS(2551), - [anon_sym_c_longdouble] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_yield] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_defer] = ACTIONS(2551), - [anon_sym_errdefer] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_else] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_expand] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_AMP] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2551), - [anon_sym_DOT] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [sym_none] = ACTIONS(2551), - [sym_undefined] = ACTIONS(2551), - [sym_sink] = ACTIONS(2551), - [sym_integer] = ACTIONS(2551), - [sym_float] = ACTIONS(2549), - [anon_sym_DQUOTE] = ACTIONS(2549), - [sym_multiline_string] = ACTIONS(2549), - [sym_character] = ACTIONS(2549), + [STATE(1072)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2431), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1085), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2545), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2547), + }, + [STATE(1073)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1074)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1075)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2549), }, - [STATE(1094)] = { - [ts_builtin_sym_end] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2555), - [anon_sym_import] = ACTIONS(2555), - [anon_sym_test] = ACTIONS(2555), - [anon_sym_hide] = ACTIONS(2555), - [anon_sym_func] = ACTIONS(2555), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_RPAREN] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_DOLLAR] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_void] = ACTIONS(2555), - [anon_sym_anyopaque] = ACTIONS(2555), - [anon_sym_bool] = ACTIONS(2555), - [anon_sym_int] = ACTIONS(2555), - [anon_sym_uint] = ACTIONS(2555), - [anon_sym_float] = ACTIONS(2555), - [anon_sym_range] = ACTIONS(2555), - [anon_sym_i8] = ACTIONS(2555), - [anon_sym_i16] = ACTIONS(2555), - [anon_sym_i32] = ACTIONS(2555), - [anon_sym_i64] = ACTIONS(2555), - [anon_sym_u8] = ACTIONS(2555), - [anon_sym_u16] = ACTIONS(2555), - [anon_sym_u32] = ACTIONS(2555), - [anon_sym_u64] = ACTIONS(2555), - [anon_sym_isize] = ACTIONS(2555), - [anon_sym_usize] = ACTIONS(2555), - [anon_sym_f32] = ACTIONS(2555), - [anon_sym_f64] = ACTIONS(2555), - [anon_sym_c_char] = ACTIONS(2555), - [anon_sym_c_schar] = ACTIONS(2555), - [anon_sym_c_uchar] = ACTIONS(2555), - [anon_sym_c_short] = ACTIONS(2555), - [anon_sym_c_ushort] = ACTIONS(2555), - [anon_sym_c_int] = ACTIONS(2555), - [anon_sym_c_uint] = ACTIONS(2555), - [anon_sym_c_long] = ACTIONS(2555), - [anon_sym_c_ulong] = ACTIONS(2555), - [anon_sym_c_longlong] = ACTIONS(2555), - [anon_sym_c_ulonglong] = ACTIONS(2555), - [anon_sym_c_float] = ACTIONS(2555), - [anon_sym_c_double] = ACTIONS(2555), - [anon_sym_c_longdouble] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_defer] = ACTIONS(2555), - [anon_sym_errdefer] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_else] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_expand] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_match] = ACTIONS(2555), - [anon_sym_AMP] = ACTIONS(2553), - [anon_sym_try] = ACTIONS(2555), - [anon_sym_DOT] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2555), - [anon_sym_false] = ACTIONS(2555), - [sym_none] = ACTIONS(2555), - [sym_undefined] = ACTIONS(2555), - [sym_sink] = ACTIONS(2555), - [sym_integer] = ACTIONS(2555), - [sym_float] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(2553), - [sym_multiline_string] = ACTIONS(2553), - [sym_character] = ACTIONS(2553), + [STATE(1076)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(94), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1090), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2553), }, - [STATE(1095)] = { - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2559), - [anon_sym_import] = ACTIONS(2559), - [anon_sym_test] = ACTIONS(2559), - [anon_sym_hide] = ACTIONS(2559), - [anon_sym_func] = ACTIONS(2559), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_RPAREN] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_DOLLAR] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2557), - [anon_sym_void] = ACTIONS(2559), - [anon_sym_anyopaque] = ACTIONS(2559), - [anon_sym_bool] = ACTIONS(2559), - [anon_sym_int] = ACTIONS(2559), - [anon_sym_uint] = ACTIONS(2559), - [anon_sym_float] = ACTIONS(2559), - [anon_sym_range] = ACTIONS(2559), - [anon_sym_i8] = ACTIONS(2559), - [anon_sym_i16] = ACTIONS(2559), - [anon_sym_i32] = ACTIONS(2559), - [anon_sym_i64] = ACTIONS(2559), - [anon_sym_u8] = ACTIONS(2559), - [anon_sym_u16] = ACTIONS(2559), - [anon_sym_u32] = ACTIONS(2559), - [anon_sym_u64] = ACTIONS(2559), - [anon_sym_isize] = ACTIONS(2559), - [anon_sym_usize] = ACTIONS(2559), - [anon_sym_f32] = ACTIONS(2559), - [anon_sym_f64] = ACTIONS(2559), - [anon_sym_c_char] = ACTIONS(2559), - [anon_sym_c_schar] = ACTIONS(2559), - [anon_sym_c_uchar] = ACTIONS(2559), - [anon_sym_c_short] = ACTIONS(2559), - [anon_sym_c_ushort] = ACTIONS(2559), - [anon_sym_c_int] = ACTIONS(2559), - [anon_sym_c_uint] = ACTIONS(2559), - [anon_sym_c_long] = ACTIONS(2559), - [anon_sym_c_ulong] = ACTIONS(2559), - [anon_sym_c_longlong] = ACTIONS(2559), - [anon_sym_c_ulonglong] = ACTIONS(2559), - [anon_sym_c_float] = ACTIONS(2559), - [anon_sym_c_double] = ACTIONS(2559), - [anon_sym_c_longdouble] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_yield] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_defer] = ACTIONS(2559), - [anon_sym_errdefer] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_else] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_expand] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_match] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_DOT] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2559), - [anon_sym_false] = ACTIONS(2559), - [sym_none] = ACTIONS(2559), - [sym_undefined] = ACTIONS(2559), - [sym_sink] = ACTIONS(2559), - [sym_integer] = ACTIONS(2559), - [sym_float] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2557), - [sym_multiline_string] = ACTIONS(2557), - [sym_character] = ACTIONS(2557), + [STATE(1077)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2555), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1078)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2555), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1079)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2555), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2557), }, - [STATE(1096)] = { - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_import] = ACTIONS(2563), - [anon_sym_test] = ACTIONS(2563), - [anon_sym_hide] = ACTIONS(2563), - [anon_sym_func] = ACTIONS(2563), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_DOLLAR] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_void] = ACTIONS(2563), - [anon_sym_anyopaque] = ACTIONS(2563), - [anon_sym_bool] = ACTIONS(2563), - [anon_sym_int] = ACTIONS(2563), - [anon_sym_uint] = ACTIONS(2563), - [anon_sym_float] = ACTIONS(2563), - [anon_sym_range] = ACTIONS(2563), - [anon_sym_i8] = ACTIONS(2563), - [anon_sym_i16] = ACTIONS(2563), - [anon_sym_i32] = ACTIONS(2563), - [anon_sym_i64] = ACTIONS(2563), - [anon_sym_u8] = ACTIONS(2563), - [anon_sym_u16] = ACTIONS(2563), - [anon_sym_u32] = ACTIONS(2563), - [anon_sym_u64] = ACTIONS(2563), - [anon_sym_isize] = ACTIONS(2563), - [anon_sym_usize] = ACTIONS(2563), - [anon_sym_f32] = ACTIONS(2563), - [anon_sym_f64] = ACTIONS(2563), - [anon_sym_c_char] = ACTIONS(2563), - [anon_sym_c_schar] = ACTIONS(2563), - [anon_sym_c_uchar] = ACTIONS(2563), - [anon_sym_c_short] = ACTIONS(2563), - [anon_sym_c_ushort] = ACTIONS(2563), - [anon_sym_c_int] = ACTIONS(2563), - [anon_sym_c_uint] = ACTIONS(2563), - [anon_sym_c_long] = ACTIONS(2563), - [anon_sym_c_ulong] = ACTIONS(2563), - [anon_sym_c_longlong] = ACTIONS(2563), - [anon_sym_c_ulonglong] = ACTIONS(2563), - [anon_sym_c_float] = ACTIONS(2563), - [anon_sym_c_double] = ACTIONS(2563), - [anon_sym_c_longdouble] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_defer] = ACTIONS(2563), - [anon_sym_errdefer] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_else] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_expand] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_match] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_try] = ACTIONS(2563), - [anon_sym_DOT] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2563), - [anon_sym_false] = ACTIONS(2563), - [sym_none] = ACTIONS(2563), - [sym_undefined] = ACTIONS(2563), - [sym_sink] = ACTIONS(2563), - [sym_integer] = ACTIONS(2563), - [sym_float] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_multiline_string] = ACTIONS(2561), - [sym_character] = ACTIONS(2561), + [STATE(1080)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2344), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2561), + [sym__newline] = ACTIONS(447), }, - [STATE(1097)] = { - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_identifier] = ACTIONS(2567), - [anon_sym_import] = ACTIONS(2567), - [anon_sym_test] = ACTIONS(2567), - [anon_sym_hide] = ACTIONS(2567), - [anon_sym_func] = ACTIONS(2567), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_DOLLAR] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_void] = ACTIONS(2567), - [anon_sym_anyopaque] = ACTIONS(2567), - [anon_sym_bool] = ACTIONS(2567), - [anon_sym_int] = ACTIONS(2567), - [anon_sym_uint] = ACTIONS(2567), - [anon_sym_float] = ACTIONS(2567), - [anon_sym_range] = ACTIONS(2567), - [anon_sym_i8] = ACTIONS(2567), - [anon_sym_i16] = ACTIONS(2567), - [anon_sym_i32] = ACTIONS(2567), - [anon_sym_i64] = ACTIONS(2567), - [anon_sym_u8] = ACTIONS(2567), - [anon_sym_u16] = ACTIONS(2567), - [anon_sym_u32] = ACTIONS(2567), - [anon_sym_u64] = ACTIONS(2567), - [anon_sym_isize] = ACTIONS(2567), - [anon_sym_usize] = ACTIONS(2567), - [anon_sym_f32] = ACTIONS(2567), - [anon_sym_f64] = ACTIONS(2567), - [anon_sym_c_char] = ACTIONS(2567), - [anon_sym_c_schar] = ACTIONS(2567), - [anon_sym_c_uchar] = ACTIONS(2567), - [anon_sym_c_short] = ACTIONS(2567), - [anon_sym_c_ushort] = ACTIONS(2567), - [anon_sym_c_int] = ACTIONS(2567), - [anon_sym_c_uint] = ACTIONS(2567), - [anon_sym_c_long] = ACTIONS(2567), - [anon_sym_c_ulong] = ACTIONS(2567), - [anon_sym_c_longlong] = ACTIONS(2567), - [anon_sym_c_ulonglong] = ACTIONS(2567), - [anon_sym_c_float] = ACTIONS(2567), - [anon_sym_c_double] = ACTIONS(2567), - [anon_sym_c_longdouble] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_defer] = ACTIONS(2567), - [anon_sym_errdefer] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_expand] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_try] = ACTIONS(2567), - [anon_sym_DOT] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [sym_none] = ACTIONS(2567), - [sym_undefined] = ACTIONS(2567), - [sym_sink] = ACTIONS(2567), - [sym_integer] = ACTIONS(2567), - [sym_float] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2565), - [sym_multiline_string] = ACTIONS(2565), - [sym_character] = ACTIONS(2565), + [STATE(1081)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1082)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1083)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1164), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2563), + }, + [STATE(1084)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1165), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2565), }, - [STATE(1098)] = { - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2571), - [anon_sym_import] = ACTIONS(2571), - [anon_sym_test] = ACTIONS(2571), - [anon_sym_hide] = ACTIONS(2571), - [anon_sym_func] = ACTIONS(2571), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_DOLLAR] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_void] = ACTIONS(2571), - [anon_sym_anyopaque] = ACTIONS(2571), - [anon_sym_bool] = ACTIONS(2571), - [anon_sym_int] = ACTIONS(2571), - [anon_sym_uint] = ACTIONS(2571), - [anon_sym_float] = ACTIONS(2571), - [anon_sym_range] = ACTIONS(2571), - [anon_sym_i8] = ACTIONS(2571), - [anon_sym_i16] = ACTIONS(2571), - [anon_sym_i32] = ACTIONS(2571), - [anon_sym_i64] = ACTIONS(2571), - [anon_sym_u8] = ACTIONS(2571), - [anon_sym_u16] = ACTIONS(2571), - [anon_sym_u32] = ACTIONS(2571), - [anon_sym_u64] = ACTIONS(2571), - [anon_sym_isize] = ACTIONS(2571), - [anon_sym_usize] = ACTIONS(2571), - [anon_sym_f32] = ACTIONS(2571), - [anon_sym_f64] = ACTIONS(2571), - [anon_sym_c_char] = ACTIONS(2571), - [anon_sym_c_schar] = ACTIONS(2571), - [anon_sym_c_uchar] = ACTIONS(2571), - [anon_sym_c_short] = ACTIONS(2571), - [anon_sym_c_ushort] = ACTIONS(2571), - [anon_sym_c_int] = ACTIONS(2571), - [anon_sym_c_uint] = ACTIONS(2571), - [anon_sym_c_long] = ACTIONS(2571), - [anon_sym_c_ulong] = ACTIONS(2571), - [anon_sym_c_longlong] = ACTIONS(2571), - [anon_sym_c_ulonglong] = ACTIONS(2571), - [anon_sym_c_float] = ACTIONS(2571), - [anon_sym_c_double] = ACTIONS(2571), - [anon_sym_c_longdouble] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_defer] = ACTIONS(2571), - [anon_sym_errdefer] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_else] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_expand] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_try] = ACTIONS(2571), - [anon_sym_DOT] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2571), - [anon_sym_false] = ACTIONS(2571), - [sym_none] = ACTIONS(2571), - [sym_undefined] = ACTIONS(2571), - [sym_sink] = ACTIONS(2571), - [sym_integer] = ACTIONS(2571), - [sym_float] = ACTIONS(2569), - [anon_sym_DQUOTE] = ACTIONS(2569), - [sym_multiline_string] = ACTIONS(2569), - [sym_character] = ACTIONS(2569), + [STATE(1085)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2567), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2569), + [sym__newline] = ACTIONS(447), + }, + [STATE(1086)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1087)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1088)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2569), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2571), + }, + [STATE(1089)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2573), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1090)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(107), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1091)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1092)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1093)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1094)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1171), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2577), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2579), + }, + [STATE(1095)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2491), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1048), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2583), + }, + [STATE(1096)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(94), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2587), + }, + [STATE(1097)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(107), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1098)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2222), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2591), }, [STATE(1099)] = { - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2575), - [anon_sym_import] = ACTIONS(2575), - [anon_sym_test] = ACTIONS(2575), - [anon_sym_hide] = ACTIONS(2575), - [anon_sym_func] = ACTIONS(2575), - [anon_sym_BANG] = ACTIONS(2573), - [anon_sym_struct] = ACTIONS(2575), - [anon_sym_LPAREN] = ACTIONS(2573), - [anon_sym_RPAREN] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_void] = ACTIONS(2575), - [anon_sym_anyopaque] = ACTIONS(2575), - [anon_sym_bool] = ACTIONS(2575), - [anon_sym_int] = ACTIONS(2575), - [anon_sym_uint] = ACTIONS(2575), - [anon_sym_float] = ACTIONS(2575), - [anon_sym_range] = ACTIONS(2575), - [anon_sym_i8] = ACTIONS(2575), - [anon_sym_i16] = ACTIONS(2575), - [anon_sym_i32] = ACTIONS(2575), - [anon_sym_i64] = ACTIONS(2575), - [anon_sym_u8] = ACTIONS(2575), - [anon_sym_u16] = ACTIONS(2575), - [anon_sym_u32] = ACTIONS(2575), - [anon_sym_u64] = ACTIONS(2575), - [anon_sym_isize] = ACTIONS(2575), - [anon_sym_usize] = ACTIONS(2575), - [anon_sym_f32] = ACTIONS(2575), - [anon_sym_f64] = ACTIONS(2575), - [anon_sym_c_char] = ACTIONS(2575), - [anon_sym_c_schar] = ACTIONS(2575), - [anon_sym_c_uchar] = ACTIONS(2575), - [anon_sym_c_short] = ACTIONS(2575), - [anon_sym_c_ushort] = ACTIONS(2575), - [anon_sym_c_int] = ACTIONS(2575), - [anon_sym_c_uint] = ACTIONS(2575), - [anon_sym_c_long] = ACTIONS(2575), - [anon_sym_c_ulong] = ACTIONS(2575), - [anon_sym_c_longlong] = ACTIONS(2575), - [anon_sym_c_ulonglong] = ACTIONS(2575), - [anon_sym_c_float] = ACTIONS(2575), - [anon_sym_c_double] = ACTIONS(2575), - [anon_sym_c_longdouble] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_defer] = ACTIONS(2575), - [anon_sym_errdefer] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_else] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_expand] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_try] = ACTIONS(2575), - [anon_sym_DOT] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2575), - [anon_sym_false] = ACTIONS(2575), - [sym_none] = ACTIONS(2575), - [sym_undefined] = ACTIONS(2575), - [sym_sink] = ACTIONS(2575), - [sym_integer] = ACTIONS(2575), - [sym_float] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(2573), - [sym_multiline_string] = ACTIONS(2573), - [sym_character] = ACTIONS(2573), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2348), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1080), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2573), + [sym__newline] = ACTIONS(2595), }, [STATE(1100)] = { - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [anon_sym_import] = ACTIONS(2579), - [anon_sym_test] = ACTIONS(2579), - [anon_sym_hide] = ACTIONS(2579), - [anon_sym_func] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_struct] = ACTIONS(2579), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_RPAREN] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2577), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_void] = ACTIONS(2579), - [anon_sym_anyopaque] = ACTIONS(2579), - [anon_sym_bool] = ACTIONS(2579), - [anon_sym_int] = ACTIONS(2579), - [anon_sym_uint] = ACTIONS(2579), - [anon_sym_float] = ACTIONS(2579), - [anon_sym_range] = ACTIONS(2579), - [anon_sym_i8] = ACTIONS(2579), - [anon_sym_i16] = ACTIONS(2579), - [anon_sym_i32] = ACTIONS(2579), - [anon_sym_i64] = ACTIONS(2579), - [anon_sym_u8] = ACTIONS(2579), - [anon_sym_u16] = ACTIONS(2579), - [anon_sym_u32] = ACTIONS(2579), - [anon_sym_u64] = ACTIONS(2579), - [anon_sym_isize] = ACTIONS(2579), - [anon_sym_usize] = ACTIONS(2579), - [anon_sym_f32] = ACTIONS(2579), - [anon_sym_f64] = ACTIONS(2579), - [anon_sym_c_char] = ACTIONS(2579), - [anon_sym_c_schar] = ACTIONS(2579), - [anon_sym_c_uchar] = ACTIONS(2579), - [anon_sym_c_short] = ACTIONS(2579), - [anon_sym_c_ushort] = ACTIONS(2579), - [anon_sym_c_int] = ACTIONS(2579), - [anon_sym_c_uint] = ACTIONS(2579), - [anon_sym_c_long] = ACTIONS(2579), - [anon_sym_c_ulong] = ACTIONS(2579), - [anon_sym_c_longlong] = ACTIONS(2579), - [anon_sym_c_ulonglong] = ACTIONS(2579), - [anon_sym_c_float] = ACTIONS(2579), - [anon_sym_c_double] = ACTIONS(2579), - [anon_sym_c_longdouble] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_defer] = ACTIONS(2579), - [anon_sym_errdefer] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_else] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_expand] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_try] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [sym_none] = ACTIONS(2579), - [sym_undefined] = ACTIONS(2579), - [sym_sink] = ACTIONS(2579), - [sym_integer] = ACTIONS(2579), - [sym_float] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2577), - [sym_multiline_string] = ACTIONS(2577), - [sym_character] = ACTIONS(2577), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2577), - }, - [STATE(1101)] = { - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2583), - [anon_sym_import] = ACTIONS(2583), - [anon_sym_test] = ACTIONS(2583), - [anon_sym_hide] = ACTIONS(2583), - [anon_sym_func] = ACTIONS(2583), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_void] = ACTIONS(2583), - [anon_sym_anyopaque] = ACTIONS(2583), - [anon_sym_bool] = ACTIONS(2583), - [anon_sym_int] = ACTIONS(2583), - [anon_sym_uint] = ACTIONS(2583), - [anon_sym_float] = ACTIONS(2583), - [anon_sym_range] = ACTIONS(2583), - [anon_sym_i8] = ACTIONS(2583), - [anon_sym_i16] = ACTIONS(2583), - [anon_sym_i32] = ACTIONS(2583), - [anon_sym_i64] = ACTIONS(2583), - [anon_sym_u8] = ACTIONS(2583), - [anon_sym_u16] = ACTIONS(2583), - [anon_sym_u32] = ACTIONS(2583), - [anon_sym_u64] = ACTIONS(2583), - [anon_sym_isize] = ACTIONS(2583), - [anon_sym_usize] = ACTIONS(2583), - [anon_sym_f32] = ACTIONS(2583), - [anon_sym_f64] = ACTIONS(2583), - [anon_sym_c_char] = ACTIONS(2583), - [anon_sym_c_schar] = ACTIONS(2583), - [anon_sym_c_uchar] = ACTIONS(2583), - [anon_sym_c_short] = ACTIONS(2583), - [anon_sym_c_ushort] = ACTIONS(2583), - [anon_sym_c_int] = ACTIONS(2583), - [anon_sym_c_uint] = ACTIONS(2583), - [anon_sym_c_long] = ACTIONS(2583), - [anon_sym_c_ulong] = ACTIONS(2583), - [anon_sym_c_longlong] = ACTIONS(2583), - [anon_sym_c_ulonglong] = ACTIONS(2583), - [anon_sym_c_float] = ACTIONS(2583), - [anon_sym_c_double] = ACTIONS(2583), - [anon_sym_c_longdouble] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_defer] = ACTIONS(2583), - [anon_sym_errdefer] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_else] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_expand] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_DOT] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [sym_none] = ACTIONS(2583), - [sym_undefined] = ACTIONS(2583), - [sym_sink] = ACTIONS(2583), - [sym_integer] = ACTIONS(2583), - [sym_float] = ACTIONS(2581), - [anon_sym_DQUOTE] = ACTIONS(2581), - [sym_multiline_string] = ACTIONS(2581), - [sym_character] = ACTIONS(2581), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2581), - }, - [STATE(1102)] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [anon_sym_import] = ACTIONS(2587), - [anon_sym_test] = ACTIONS(2587), - [anon_sym_hide] = ACTIONS(2587), - [anon_sym_func] = ACTIONS(2587), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_DOLLAR] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_void] = ACTIONS(2587), - [anon_sym_anyopaque] = ACTIONS(2587), - [anon_sym_bool] = ACTIONS(2587), - [anon_sym_int] = ACTIONS(2587), - [anon_sym_uint] = ACTIONS(2587), - [anon_sym_float] = ACTIONS(2587), - [anon_sym_range] = ACTIONS(2587), - [anon_sym_i8] = ACTIONS(2587), - [anon_sym_i16] = ACTIONS(2587), - [anon_sym_i32] = ACTIONS(2587), - [anon_sym_i64] = ACTIONS(2587), - [anon_sym_u8] = ACTIONS(2587), - [anon_sym_u16] = ACTIONS(2587), - [anon_sym_u32] = ACTIONS(2587), - [anon_sym_u64] = ACTIONS(2587), - [anon_sym_isize] = ACTIONS(2587), - [anon_sym_usize] = ACTIONS(2587), - [anon_sym_f32] = ACTIONS(2587), - [anon_sym_f64] = ACTIONS(2587), - [anon_sym_c_char] = ACTIONS(2587), - [anon_sym_c_schar] = ACTIONS(2587), - [anon_sym_c_uchar] = ACTIONS(2587), - [anon_sym_c_short] = ACTIONS(2587), - [anon_sym_c_ushort] = ACTIONS(2587), - [anon_sym_c_int] = ACTIONS(2587), - [anon_sym_c_uint] = ACTIONS(2587), - [anon_sym_c_long] = ACTIONS(2587), - [anon_sym_c_ulong] = ACTIONS(2587), - [anon_sym_c_longlong] = ACTIONS(2587), - [anon_sym_c_ulonglong] = ACTIONS(2587), - [anon_sym_c_float] = ACTIONS(2587), - [anon_sym_c_double] = ACTIONS(2587), - [anon_sym_c_longdouble] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_defer] = ACTIONS(2587), - [anon_sym_errdefer] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_else] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_expand] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_DOT] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2587), - [anon_sym_false] = ACTIONS(2587), - [sym_none] = ACTIONS(2587), - [sym_undefined] = ACTIONS(2587), - [sym_sink] = ACTIONS(2587), - [sym_integer] = ACTIONS(2587), - [sym_float] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_multiline_string] = ACTIONS(2585), - [sym_character] = ACTIONS(2585), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2585), - }, - [STATE(1103)] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2591), - [anon_sym_import] = ACTIONS(2591), - [anon_sym_test] = ACTIONS(2591), - [anon_sym_hide] = ACTIONS(2591), - [anon_sym_func] = ACTIONS(2591), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_RPAREN] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_DOLLAR] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_void] = ACTIONS(2591), - [anon_sym_anyopaque] = ACTIONS(2591), - [anon_sym_bool] = ACTIONS(2591), - [anon_sym_int] = ACTIONS(2591), - [anon_sym_uint] = ACTIONS(2591), - [anon_sym_float] = ACTIONS(2591), - [anon_sym_range] = ACTIONS(2591), - [anon_sym_i8] = ACTIONS(2591), - [anon_sym_i16] = ACTIONS(2591), - [anon_sym_i32] = ACTIONS(2591), - [anon_sym_i64] = ACTIONS(2591), - [anon_sym_u8] = ACTIONS(2591), - [anon_sym_u16] = ACTIONS(2591), - [anon_sym_u32] = ACTIONS(2591), - [anon_sym_u64] = ACTIONS(2591), - [anon_sym_isize] = ACTIONS(2591), - [anon_sym_usize] = ACTIONS(2591), - [anon_sym_f32] = ACTIONS(2591), - [anon_sym_f64] = ACTIONS(2591), - [anon_sym_c_char] = ACTIONS(2591), - [anon_sym_c_schar] = ACTIONS(2591), - [anon_sym_c_uchar] = ACTIONS(2591), - [anon_sym_c_short] = ACTIONS(2591), - [anon_sym_c_ushort] = ACTIONS(2591), - [anon_sym_c_int] = ACTIONS(2591), - [anon_sym_c_uint] = ACTIONS(2591), - [anon_sym_c_long] = ACTIONS(2591), - [anon_sym_c_ulong] = ACTIONS(2591), - [anon_sym_c_longlong] = ACTIONS(2591), - [anon_sym_c_ulonglong] = ACTIONS(2591), - [anon_sym_c_float] = ACTIONS(2591), - [anon_sym_c_double] = ACTIONS(2591), - [anon_sym_c_longdouble] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_defer] = ACTIONS(2591), - [anon_sym_errdefer] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_else] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_expand] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_AMP] = ACTIONS(2589), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_DOT] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2591), - [anon_sym_false] = ACTIONS(2591), - [sym_none] = ACTIONS(2591), - [sym_undefined] = ACTIONS(2591), - [sym_sink] = ACTIONS(2591), - [sym_integer] = ACTIONS(2591), - [sym_float] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_multiline_string] = ACTIONS(2589), - [sym_character] = ACTIONS(2589), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2589), - }, - [STATE(1104)] = { - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2595), - [anon_sym_import] = ACTIONS(2595), - [anon_sym_test] = ACTIONS(2595), - [anon_sym_hide] = ACTIONS(2595), - [anon_sym_func] = ACTIONS(2595), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_LPAREN] = ACTIONS(2593), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_DOLLAR] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2593), - [anon_sym_void] = ACTIONS(2595), - [anon_sym_anyopaque] = ACTIONS(2595), - [anon_sym_bool] = ACTIONS(2595), - [anon_sym_int] = ACTIONS(2595), - [anon_sym_uint] = ACTIONS(2595), - [anon_sym_float] = ACTIONS(2595), - [anon_sym_range] = ACTIONS(2595), - [anon_sym_i8] = ACTIONS(2595), - [anon_sym_i16] = ACTIONS(2595), - [anon_sym_i32] = ACTIONS(2595), - [anon_sym_i64] = ACTIONS(2595), - [anon_sym_u8] = ACTIONS(2595), - [anon_sym_u16] = ACTIONS(2595), - [anon_sym_u32] = ACTIONS(2595), - [anon_sym_u64] = ACTIONS(2595), - [anon_sym_isize] = ACTIONS(2595), - [anon_sym_usize] = ACTIONS(2595), - [anon_sym_f32] = ACTIONS(2595), - [anon_sym_f64] = ACTIONS(2595), - [anon_sym_c_char] = ACTIONS(2595), - [anon_sym_c_schar] = ACTIONS(2595), - [anon_sym_c_uchar] = ACTIONS(2595), - [anon_sym_c_short] = ACTIONS(2595), - [anon_sym_c_ushort] = ACTIONS(2595), - [anon_sym_c_int] = ACTIONS(2595), - [anon_sym_c_uint] = ACTIONS(2595), - [anon_sym_c_long] = ACTIONS(2595), - [anon_sym_c_ulong] = ACTIONS(2595), - [anon_sym_c_longlong] = ACTIONS(2595), - [anon_sym_c_ulonglong] = ACTIONS(2595), - [anon_sym_c_float] = ACTIONS(2595), - [anon_sym_c_double] = ACTIONS(2595), - [anon_sym_c_longdouble] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_yield] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_defer] = ACTIONS(2595), - [anon_sym_errdefer] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_else] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_expand] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_match] = ACTIONS(2595), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_try] = ACTIONS(2595), - [anon_sym_DOT] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [sym_none] = ACTIONS(2595), - [sym_undefined] = ACTIONS(2595), - [sym_sink] = ACTIONS(2595), - [sym_integer] = ACTIONS(2595), - [sym_float] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_multiline_string] = ACTIONS(2593), - [sym_character] = ACTIONS(2593), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2593), - }, - [STATE(1105)] = { - [ts_builtin_sym_end] = ACTIONS(2597), - [sym_identifier] = ACTIONS(2599), - [anon_sym_import] = ACTIONS(2599), - [anon_sym_test] = ACTIONS(2599), - [anon_sym_hide] = ACTIONS(2599), - [anon_sym_func] = ACTIONS(2599), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_void] = ACTIONS(2599), - [anon_sym_anyopaque] = ACTIONS(2599), - [anon_sym_bool] = ACTIONS(2599), - [anon_sym_int] = ACTIONS(2599), - [anon_sym_uint] = ACTIONS(2599), - [anon_sym_float] = ACTIONS(2599), - [anon_sym_range] = ACTIONS(2599), - [anon_sym_i8] = ACTIONS(2599), - [anon_sym_i16] = ACTIONS(2599), - [anon_sym_i32] = ACTIONS(2599), - [anon_sym_i64] = ACTIONS(2599), - [anon_sym_u8] = ACTIONS(2599), - [anon_sym_u16] = ACTIONS(2599), - [anon_sym_u32] = ACTIONS(2599), - [anon_sym_u64] = ACTIONS(2599), - [anon_sym_isize] = ACTIONS(2599), - [anon_sym_usize] = ACTIONS(2599), - [anon_sym_f32] = ACTIONS(2599), - [anon_sym_f64] = ACTIONS(2599), - [anon_sym_c_char] = ACTIONS(2599), - [anon_sym_c_schar] = ACTIONS(2599), - [anon_sym_c_uchar] = ACTIONS(2599), - [anon_sym_c_short] = ACTIONS(2599), - [anon_sym_c_ushort] = ACTIONS(2599), - [anon_sym_c_int] = ACTIONS(2599), - [anon_sym_c_uint] = ACTIONS(2599), - [anon_sym_c_long] = ACTIONS(2599), - [anon_sym_c_ulong] = ACTIONS(2599), - [anon_sym_c_longlong] = ACTIONS(2599), - [anon_sym_c_ulonglong] = ACTIONS(2599), - [anon_sym_c_float] = ACTIONS(2599), - [anon_sym_c_double] = ACTIONS(2599), - [anon_sym_c_longdouble] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_defer] = ACTIONS(2599), - [anon_sym_errdefer] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_else] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_expand] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_match] = ACTIONS(2599), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2599), - [anon_sym_DOT] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2599), - [anon_sym_false] = ACTIONS(2599), - [sym_none] = ACTIONS(2599), - [sym_undefined] = ACTIONS(2599), - [sym_sink] = ACTIONS(2599), - [sym_integer] = ACTIONS(2599), - [sym_float] = ACTIONS(2597), - [anon_sym_DQUOTE] = ACTIONS(2597), - [sym_multiline_string] = ACTIONS(2597), - [sym_character] = ACTIONS(2597), + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2597), }, - [STATE(1106)] = { - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_identifier] = ACTIONS(2603), - [anon_sym_import] = ACTIONS(2603), - [anon_sym_test] = ACTIONS(2603), - [anon_sym_hide] = ACTIONS(2603), - [anon_sym_func] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_DOLLAR] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_void] = ACTIONS(2603), - [anon_sym_anyopaque] = ACTIONS(2603), - [anon_sym_bool] = ACTIONS(2603), - [anon_sym_int] = ACTIONS(2603), - [anon_sym_uint] = ACTIONS(2603), - [anon_sym_float] = ACTIONS(2603), - [anon_sym_range] = ACTIONS(2603), - [anon_sym_i8] = ACTIONS(2603), - [anon_sym_i16] = ACTIONS(2603), - [anon_sym_i32] = ACTIONS(2603), - [anon_sym_i64] = ACTIONS(2603), - [anon_sym_u8] = ACTIONS(2603), - [anon_sym_u16] = ACTIONS(2603), - [anon_sym_u32] = ACTIONS(2603), - [anon_sym_u64] = ACTIONS(2603), - [anon_sym_isize] = ACTIONS(2603), - [anon_sym_usize] = ACTIONS(2603), - [anon_sym_f32] = ACTIONS(2603), - [anon_sym_f64] = ACTIONS(2603), - [anon_sym_c_char] = ACTIONS(2603), - [anon_sym_c_schar] = ACTIONS(2603), - [anon_sym_c_uchar] = ACTIONS(2603), - [anon_sym_c_short] = ACTIONS(2603), - [anon_sym_c_ushort] = ACTIONS(2603), - [anon_sym_c_int] = ACTIONS(2603), - [anon_sym_c_uint] = ACTIONS(2603), - [anon_sym_c_long] = ACTIONS(2603), - [anon_sym_c_ulong] = ACTIONS(2603), - [anon_sym_c_longlong] = ACTIONS(2603), - [anon_sym_c_ulonglong] = ACTIONS(2603), - [anon_sym_c_float] = ACTIONS(2603), - [anon_sym_c_double] = ACTIONS(2603), - [anon_sym_c_longdouble] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_defer] = ACTIONS(2603), - [anon_sym_errdefer] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_else] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_expand] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_match] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2603), - [anon_sym_DOT] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2603), - [anon_sym_false] = ACTIONS(2603), - [sym_none] = ACTIONS(2603), - [sym_undefined] = ACTIONS(2603), - [sym_sink] = ACTIONS(2603), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2601), - [anon_sym_DQUOTE] = ACTIONS(2601), - [sym_multiline_string] = ACTIONS(2601), - [sym_character] = ACTIONS(2601), + [STATE(1101)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(665), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1105), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2601), + [sym__newline] = ACTIONS(2599), + }, + [STATE(1102)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2485), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2603), + }, + [STATE(1103)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2359), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1107), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2605), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2607), + }, + [STATE(1104)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2486), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1105)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(724), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1106)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2366), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1275), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2611), }, [STATE(1107)] = { - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2607), - [anon_sym_import] = ACTIONS(2607), - [anon_sym_test] = ACTIONS(2607), - [anon_sym_hide] = ACTIONS(2607), - [anon_sym_func] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_void] = ACTIONS(2607), - [anon_sym_anyopaque] = ACTIONS(2607), - [anon_sym_bool] = ACTIONS(2607), - [anon_sym_int] = ACTIONS(2607), - [anon_sym_uint] = ACTIONS(2607), - [anon_sym_float] = ACTIONS(2607), - [anon_sym_range] = ACTIONS(2607), - [anon_sym_i8] = ACTIONS(2607), - [anon_sym_i16] = ACTIONS(2607), - [anon_sym_i32] = ACTIONS(2607), - [anon_sym_i64] = ACTIONS(2607), - [anon_sym_u8] = ACTIONS(2607), - [anon_sym_u16] = ACTIONS(2607), - [anon_sym_u32] = ACTIONS(2607), - [anon_sym_u64] = ACTIONS(2607), - [anon_sym_isize] = ACTIONS(2607), - [anon_sym_usize] = ACTIONS(2607), - [anon_sym_f32] = ACTIONS(2607), - [anon_sym_f64] = ACTIONS(2607), - [anon_sym_c_char] = ACTIONS(2607), - [anon_sym_c_schar] = ACTIONS(2607), - [anon_sym_c_uchar] = ACTIONS(2607), - [anon_sym_c_short] = ACTIONS(2607), - [anon_sym_c_ushort] = ACTIONS(2607), - [anon_sym_c_int] = ACTIONS(2607), - [anon_sym_c_uint] = ACTIONS(2607), - [anon_sym_c_long] = ACTIONS(2607), - [anon_sym_c_ulong] = ACTIONS(2607), - [anon_sym_c_longlong] = ACTIONS(2607), - [anon_sym_c_ulonglong] = ACTIONS(2607), - [anon_sym_c_float] = ACTIONS(2607), - [anon_sym_c_double] = ACTIONS(2607), - [anon_sym_c_longdouble] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2607), - [anon_sym_break] = ACTIONS(2607), - [anon_sym_continue] = ACTIONS(2607), - [anon_sym_defer] = ACTIONS(2607), - [anon_sym_errdefer] = ACTIONS(2607), - [anon_sym_if] = ACTIONS(2607), - [anon_sym_else] = ACTIONS(2607), - [anon_sym_while] = ACTIONS(2607), - [anon_sym_expand] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2607), - [anon_sym_match] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2607), - [anon_sym_DOT] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2607), - [anon_sym_false] = ACTIONS(2607), - [sym_none] = ACTIONS(2607), - [sym_undefined] = ACTIONS(2607), - [sym_sink] = ACTIONS(2607), - [sym_integer] = ACTIONS(2607), - [sym_float] = ACTIONS(2605), - [anon_sym_DQUOTE] = ACTIONS(2605), - [sym_multiline_string] = ACTIONS(2605), - [sym_character] = ACTIONS(2605), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2373), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2605), + [sym__newline] = ACTIONS(447), }, [STATE(1108)] = { - [ts_builtin_sym_end] = ACTIONS(2609), - [sym_identifier] = ACTIONS(2611), - [anon_sym_import] = ACTIONS(2611), - [anon_sym_test] = ACTIONS(2611), - [anon_sym_hide] = ACTIONS(2611), - [anon_sym_func] = ACTIONS(2611), - [anon_sym_BANG] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_RPAREN] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_DOLLAR] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_void] = ACTIONS(2611), - [anon_sym_anyopaque] = ACTIONS(2611), - [anon_sym_bool] = ACTIONS(2611), - [anon_sym_int] = ACTIONS(2611), - [anon_sym_uint] = ACTIONS(2611), - [anon_sym_float] = ACTIONS(2611), - [anon_sym_range] = ACTIONS(2611), - [anon_sym_i8] = ACTIONS(2611), - [anon_sym_i16] = ACTIONS(2611), - [anon_sym_i32] = ACTIONS(2611), - [anon_sym_i64] = ACTIONS(2611), - [anon_sym_u8] = ACTIONS(2611), - [anon_sym_u16] = ACTIONS(2611), - [anon_sym_u32] = ACTIONS(2611), - [anon_sym_u64] = ACTIONS(2611), - [anon_sym_isize] = ACTIONS(2611), - [anon_sym_usize] = ACTIONS(2611), - [anon_sym_f32] = ACTIONS(2611), - [anon_sym_f64] = ACTIONS(2611), - [anon_sym_c_char] = ACTIONS(2611), - [anon_sym_c_schar] = ACTIONS(2611), - [anon_sym_c_uchar] = ACTIONS(2611), - [anon_sym_c_short] = ACTIONS(2611), - [anon_sym_c_ushort] = ACTIONS(2611), - [anon_sym_c_int] = ACTIONS(2611), - [anon_sym_c_uint] = ACTIONS(2611), - [anon_sym_c_long] = ACTIONS(2611), - [anon_sym_c_ulong] = ACTIONS(2611), - [anon_sym_c_longlong] = ACTIONS(2611), - [anon_sym_c_ulonglong] = ACTIONS(2611), - [anon_sym_c_float] = ACTIONS(2611), - [anon_sym_c_double] = ACTIONS(2611), - [anon_sym_c_longdouble] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_defer] = ACTIONS(2611), - [anon_sym_errdefer] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_else] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_expand] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_match] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2611), - [anon_sym_DOT] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2611), - [anon_sym_false] = ACTIONS(2611), - [sym_none] = ACTIONS(2611), - [sym_undefined] = ACTIONS(2611), - [sym_sink] = ACTIONS(2611), - [sym_integer] = ACTIONS(2611), - [sym_float] = ACTIONS(2609), - [anon_sym_DQUOTE] = ACTIONS(2609), - [sym_multiline_string] = ACTIONS(2609), - [sym_character] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2609), - }, - [STATE(1109)] = { - [ts_builtin_sym_end] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2615), - [anon_sym_import] = ACTIONS(2615), - [anon_sym_test] = ACTIONS(2615), - [anon_sym_hide] = ACTIONS(2615), - [anon_sym_func] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_RPAREN] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_DOLLAR] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_void] = ACTIONS(2615), - [anon_sym_anyopaque] = ACTIONS(2615), - [anon_sym_bool] = ACTIONS(2615), - [anon_sym_int] = ACTIONS(2615), - [anon_sym_uint] = ACTIONS(2615), - [anon_sym_float] = ACTIONS(2615), - [anon_sym_range] = ACTIONS(2615), - [anon_sym_i8] = ACTIONS(2615), - [anon_sym_i16] = ACTIONS(2615), - [anon_sym_i32] = ACTIONS(2615), - [anon_sym_i64] = ACTIONS(2615), - [anon_sym_u8] = ACTIONS(2615), - [anon_sym_u16] = ACTIONS(2615), - [anon_sym_u32] = ACTIONS(2615), - [anon_sym_u64] = ACTIONS(2615), - [anon_sym_isize] = ACTIONS(2615), - [anon_sym_usize] = ACTIONS(2615), - [anon_sym_f32] = ACTIONS(2615), - [anon_sym_f64] = ACTIONS(2615), - [anon_sym_c_char] = ACTIONS(2615), - [anon_sym_c_schar] = ACTIONS(2615), - [anon_sym_c_uchar] = ACTIONS(2615), - [anon_sym_c_short] = ACTIONS(2615), - [anon_sym_c_ushort] = ACTIONS(2615), - [anon_sym_c_int] = ACTIONS(2615), - [anon_sym_c_uint] = ACTIONS(2615), - [anon_sym_c_long] = ACTIONS(2615), - [anon_sym_c_ulong] = ACTIONS(2615), - [anon_sym_c_longlong] = ACTIONS(2615), - [anon_sym_c_ulonglong] = ACTIONS(2615), - [anon_sym_c_float] = ACTIONS(2615), - [anon_sym_c_double] = ACTIONS(2615), - [anon_sym_c_longdouble] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_yield] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_defer] = ACTIONS(2615), - [anon_sym_errdefer] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_else] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_expand] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_match] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2615), - [anon_sym_DOT] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2615), - [anon_sym_false] = ACTIONS(2615), - [sym_none] = ACTIONS(2615), - [sym_undefined] = ACTIONS(2615), - [sym_sink] = ACTIONS(2615), - [sym_integer] = ACTIONS(2615), - [sym_float] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(2613), - [sym_multiline_string] = ACTIONS(2613), - [sym_character] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2613), - }, - [STATE(1110)] = { - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2619), - [anon_sym_import] = ACTIONS(2619), - [anon_sym_test] = ACTIONS(2619), - [anon_sym_hide] = ACTIONS(2619), - [anon_sym_func] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_RPAREN] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_DOLLAR] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_void] = ACTIONS(2619), - [anon_sym_anyopaque] = ACTIONS(2619), - [anon_sym_bool] = ACTIONS(2619), - [anon_sym_int] = ACTIONS(2619), - [anon_sym_uint] = ACTIONS(2619), - [anon_sym_float] = ACTIONS(2619), - [anon_sym_range] = ACTIONS(2619), - [anon_sym_i8] = ACTIONS(2619), - [anon_sym_i16] = ACTIONS(2619), - [anon_sym_i32] = ACTIONS(2619), - [anon_sym_i64] = ACTIONS(2619), - [anon_sym_u8] = ACTIONS(2619), - [anon_sym_u16] = ACTIONS(2619), - [anon_sym_u32] = ACTIONS(2619), - [anon_sym_u64] = ACTIONS(2619), - [anon_sym_isize] = ACTIONS(2619), - [anon_sym_usize] = ACTIONS(2619), - [anon_sym_f32] = ACTIONS(2619), - [anon_sym_f64] = ACTIONS(2619), - [anon_sym_c_char] = ACTIONS(2619), - [anon_sym_c_schar] = ACTIONS(2619), - [anon_sym_c_uchar] = ACTIONS(2619), - [anon_sym_c_short] = ACTIONS(2619), - [anon_sym_c_ushort] = ACTIONS(2619), - [anon_sym_c_int] = ACTIONS(2619), - [anon_sym_c_uint] = ACTIONS(2619), - [anon_sym_c_long] = ACTIONS(2619), - [anon_sym_c_ulong] = ACTIONS(2619), - [anon_sym_c_longlong] = ACTIONS(2619), - [anon_sym_c_ulonglong] = ACTIONS(2619), - [anon_sym_c_float] = ACTIONS(2619), - [anon_sym_c_double] = ACTIONS(2619), - [anon_sym_c_longdouble] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_yield] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_defer] = ACTIONS(2619), - [anon_sym_errdefer] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_else] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_expand] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_match] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2619), - [anon_sym_DOT] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2619), - [anon_sym_false] = ACTIONS(2619), - [sym_none] = ACTIONS(2619), - [sym_undefined] = ACTIONS(2619), - [sym_sink] = ACTIONS(2619), - [sym_integer] = ACTIONS(2619), - [sym_float] = ACTIONS(2617), - [anon_sym_DQUOTE] = ACTIONS(2617), - [sym_multiline_string] = ACTIONS(2617), - [sym_character] = ACTIONS(2617), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2615), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2617), }, - [STATE(1111)] = { - [ts_builtin_sym_end] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2623), - [anon_sym_import] = ACTIONS(2623), - [anon_sym_test] = ACTIONS(2623), - [anon_sym_hide] = ACTIONS(2623), - [anon_sym_func] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_DOLLAR] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_void] = ACTIONS(2623), - [anon_sym_anyopaque] = ACTIONS(2623), - [anon_sym_bool] = ACTIONS(2623), - [anon_sym_int] = ACTIONS(2623), - [anon_sym_uint] = ACTIONS(2623), - [anon_sym_float] = ACTIONS(2623), - [anon_sym_range] = ACTIONS(2623), - [anon_sym_i8] = ACTIONS(2623), - [anon_sym_i16] = ACTIONS(2623), - [anon_sym_i32] = ACTIONS(2623), - [anon_sym_i64] = ACTIONS(2623), - [anon_sym_u8] = ACTIONS(2623), - [anon_sym_u16] = ACTIONS(2623), - [anon_sym_u32] = ACTIONS(2623), - [anon_sym_u64] = ACTIONS(2623), - [anon_sym_isize] = ACTIONS(2623), - [anon_sym_usize] = ACTIONS(2623), - [anon_sym_f32] = ACTIONS(2623), - [anon_sym_f64] = ACTIONS(2623), - [anon_sym_c_char] = ACTIONS(2623), - [anon_sym_c_schar] = ACTIONS(2623), - [anon_sym_c_uchar] = ACTIONS(2623), - [anon_sym_c_short] = ACTIONS(2623), - [anon_sym_c_ushort] = ACTIONS(2623), - [anon_sym_c_int] = ACTIONS(2623), - [anon_sym_c_uint] = ACTIONS(2623), - [anon_sym_c_long] = ACTIONS(2623), - [anon_sym_c_ulong] = ACTIONS(2623), - [anon_sym_c_longlong] = ACTIONS(2623), - [anon_sym_c_ulonglong] = ACTIONS(2623), - [anon_sym_c_float] = ACTIONS(2623), - [anon_sym_c_double] = ACTIONS(2623), - [anon_sym_c_longdouble] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_yield] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_defer] = ACTIONS(2623), - [anon_sym_errdefer] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_else] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_expand] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_match] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2623), - [anon_sym_DOT] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2623), - [anon_sym_false] = ACTIONS(2623), - [sym_none] = ACTIONS(2623), - [sym_undefined] = ACTIONS(2623), - [sym_sink] = ACTIONS(2623), - [sym_integer] = ACTIONS(2623), - [sym_float] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(2621), - [sym_multiline_string] = ACTIONS(2621), - [sym_character] = ACTIONS(2621), + [STATE(1109)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2451), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3221), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2619), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2621), }, - [STATE(1112)] = { - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_identifier] = ACTIONS(2627), - [anon_sym_import] = ACTIONS(2627), - [anon_sym_test] = ACTIONS(2627), - [anon_sym_hide] = ACTIONS(2627), - [anon_sym_func] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_RPAREN] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_DOLLAR] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_void] = ACTIONS(2627), - [anon_sym_anyopaque] = ACTIONS(2627), - [anon_sym_bool] = ACTIONS(2627), - [anon_sym_int] = ACTIONS(2627), - [anon_sym_uint] = ACTIONS(2627), - [anon_sym_float] = ACTIONS(2627), - [anon_sym_range] = ACTIONS(2627), - [anon_sym_i8] = ACTIONS(2627), - [anon_sym_i16] = ACTIONS(2627), - [anon_sym_i32] = ACTIONS(2627), - [anon_sym_i64] = ACTIONS(2627), - [anon_sym_u8] = ACTIONS(2627), - [anon_sym_u16] = ACTIONS(2627), - [anon_sym_u32] = ACTIONS(2627), - [anon_sym_u64] = ACTIONS(2627), - [anon_sym_isize] = ACTIONS(2627), - [anon_sym_usize] = ACTIONS(2627), - [anon_sym_f32] = ACTIONS(2627), - [anon_sym_f64] = ACTIONS(2627), - [anon_sym_c_char] = ACTIONS(2627), - [anon_sym_c_schar] = ACTIONS(2627), - [anon_sym_c_uchar] = ACTIONS(2627), - [anon_sym_c_short] = ACTIONS(2627), - [anon_sym_c_ushort] = ACTIONS(2627), - [anon_sym_c_int] = ACTIONS(2627), - [anon_sym_c_uint] = ACTIONS(2627), - [anon_sym_c_long] = ACTIONS(2627), - [anon_sym_c_ulong] = ACTIONS(2627), - [anon_sym_c_longlong] = ACTIONS(2627), - [anon_sym_c_ulonglong] = ACTIONS(2627), - [anon_sym_c_float] = ACTIONS(2627), - [anon_sym_c_double] = ACTIONS(2627), - [anon_sym_c_longdouble] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_yield] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_defer] = ACTIONS(2627), - [anon_sym_errdefer] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_else] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_expand] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2627), - [anon_sym_DOT] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2627), - [anon_sym_false] = ACTIONS(2627), - [sym_none] = ACTIONS(2627), - [sym_undefined] = ACTIONS(2627), - [sym_sink] = ACTIONS(2627), - [sym_integer] = ACTIONS(2627), - [sym_float] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(2625), - [sym_multiline_string] = ACTIONS(2625), - [sym_character] = ACTIONS(2625), + [STATE(1110)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1116), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2625), }, - [STATE(1113)] = { - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_identifier] = ACTIONS(2631), - [anon_sym_import] = ACTIONS(2631), - [anon_sym_test] = ACTIONS(2631), - [anon_sym_hide] = ACTIONS(2631), - [anon_sym_func] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_RPAREN] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_void] = ACTIONS(2631), - [anon_sym_anyopaque] = ACTIONS(2631), - [anon_sym_bool] = ACTIONS(2631), - [anon_sym_int] = ACTIONS(2631), - [anon_sym_uint] = ACTIONS(2631), - [anon_sym_float] = ACTIONS(2631), - [anon_sym_range] = ACTIONS(2631), - [anon_sym_i8] = ACTIONS(2631), - [anon_sym_i16] = ACTIONS(2631), - [anon_sym_i32] = ACTIONS(2631), - [anon_sym_i64] = ACTIONS(2631), - [anon_sym_u8] = ACTIONS(2631), - [anon_sym_u16] = ACTIONS(2631), - [anon_sym_u32] = ACTIONS(2631), - [anon_sym_u64] = ACTIONS(2631), - [anon_sym_isize] = ACTIONS(2631), - [anon_sym_usize] = ACTIONS(2631), - [anon_sym_f32] = ACTIONS(2631), - [anon_sym_f64] = ACTIONS(2631), - [anon_sym_c_char] = ACTIONS(2631), - [anon_sym_c_schar] = ACTIONS(2631), - [anon_sym_c_uchar] = ACTIONS(2631), - [anon_sym_c_short] = ACTIONS(2631), - [anon_sym_c_ushort] = ACTIONS(2631), - [anon_sym_c_int] = ACTIONS(2631), - [anon_sym_c_uint] = ACTIONS(2631), - [anon_sym_c_long] = ACTIONS(2631), - [anon_sym_c_ulong] = ACTIONS(2631), - [anon_sym_c_longlong] = ACTIONS(2631), - [anon_sym_c_ulonglong] = ACTIONS(2631), - [anon_sym_c_float] = ACTIONS(2631), - [anon_sym_c_double] = ACTIONS(2631), - [anon_sym_c_longdouble] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_yield] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_defer] = ACTIONS(2631), - [anon_sym_errdefer] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_else] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_expand] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2631), - [anon_sym_DOT] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2631), - [anon_sym_false] = ACTIONS(2631), - [sym_none] = ACTIONS(2631), - [sym_undefined] = ACTIONS(2631), - [sym_sink] = ACTIONS(2631), - [sym_integer] = ACTIONS(2631), - [sym_float] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(2629), - [sym_multiline_string] = ACTIONS(2629), - [sym_character] = ACTIONS(2629), + [STATE(1111)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1112)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2629), }, - [STATE(1114)] = { - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2635), - [anon_sym_import] = ACTIONS(2635), - [anon_sym_test] = ACTIONS(2635), - [anon_sym_hide] = ACTIONS(2635), - [anon_sym_func] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_void] = ACTIONS(2635), - [anon_sym_anyopaque] = ACTIONS(2635), - [anon_sym_bool] = ACTIONS(2635), - [anon_sym_int] = ACTIONS(2635), - [anon_sym_uint] = ACTIONS(2635), - [anon_sym_float] = ACTIONS(2635), - [anon_sym_range] = ACTIONS(2635), - [anon_sym_i8] = ACTIONS(2635), - [anon_sym_i16] = ACTIONS(2635), - [anon_sym_i32] = ACTIONS(2635), - [anon_sym_i64] = ACTIONS(2635), - [anon_sym_u8] = ACTIONS(2635), - [anon_sym_u16] = ACTIONS(2635), - [anon_sym_u32] = ACTIONS(2635), - [anon_sym_u64] = ACTIONS(2635), - [anon_sym_isize] = ACTIONS(2635), - [anon_sym_usize] = ACTIONS(2635), - [anon_sym_f32] = ACTIONS(2635), - [anon_sym_f64] = ACTIONS(2635), - [anon_sym_c_char] = ACTIONS(2635), - [anon_sym_c_schar] = ACTIONS(2635), - [anon_sym_c_uchar] = ACTIONS(2635), - [anon_sym_c_short] = ACTIONS(2635), - [anon_sym_c_ushort] = ACTIONS(2635), - [anon_sym_c_int] = ACTIONS(2635), - [anon_sym_c_uint] = ACTIONS(2635), - [anon_sym_c_long] = ACTIONS(2635), - [anon_sym_c_ulong] = ACTIONS(2635), - [anon_sym_c_longlong] = ACTIONS(2635), - [anon_sym_c_ulonglong] = ACTIONS(2635), - [anon_sym_c_float] = ACTIONS(2635), - [anon_sym_c_double] = ACTIONS(2635), - [anon_sym_c_longdouble] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_yield] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_defer] = ACTIONS(2635), - [anon_sym_errdefer] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_else] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_expand] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_DOT] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [sym_none] = ACTIONS(2635), - [sym_undefined] = ACTIONS(2635), - [sym_sink] = ACTIONS(2635), - [sym_integer] = ACTIONS(2635), - [sym_float] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2633), - [sym_multiline_string] = ACTIONS(2633), - [sym_character] = ACTIONS(2633), + [STATE(1113)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1197), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2633), + [sym__newline] = ACTIONS(2631), + }, + [STATE(1114)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2458), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1123), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2635), }, [STATE(1115)] = { - [ts_builtin_sym_end] = ACTIONS(2637), - [sym_identifier] = ACTIONS(2639), - [anon_sym_import] = ACTIONS(2639), - [anon_sym_test] = ACTIONS(2639), - [anon_sym_hide] = ACTIONS(2639), - [anon_sym_func] = ACTIONS(2639), - [anon_sym_BANG] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_LPAREN] = ACTIONS(2637), - [anon_sym_RPAREN] = ACTIONS(2637), - [anon_sym_LBRACE] = ACTIONS(2637), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_DASH] = ACTIONS(2637), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_LBRACK] = ACTIONS(2637), - [anon_sym_void] = ACTIONS(2639), - [anon_sym_anyopaque] = ACTIONS(2639), - [anon_sym_bool] = ACTIONS(2639), - [anon_sym_int] = ACTIONS(2639), - [anon_sym_uint] = ACTIONS(2639), - [anon_sym_float] = ACTIONS(2639), - [anon_sym_range] = ACTIONS(2639), - [anon_sym_i8] = ACTIONS(2639), - [anon_sym_i16] = ACTIONS(2639), - [anon_sym_i32] = ACTIONS(2639), - [anon_sym_i64] = ACTIONS(2639), - [anon_sym_u8] = ACTIONS(2639), - [anon_sym_u16] = ACTIONS(2639), - [anon_sym_u32] = ACTIONS(2639), - [anon_sym_u64] = ACTIONS(2639), - [anon_sym_isize] = ACTIONS(2639), - [anon_sym_usize] = ACTIONS(2639), - [anon_sym_f32] = ACTIONS(2639), - [anon_sym_f64] = ACTIONS(2639), - [anon_sym_c_char] = ACTIONS(2639), - [anon_sym_c_schar] = ACTIONS(2639), - [anon_sym_c_uchar] = ACTIONS(2639), - [anon_sym_c_short] = ACTIONS(2639), - [anon_sym_c_ushort] = ACTIONS(2639), - [anon_sym_c_int] = ACTIONS(2639), - [anon_sym_c_uint] = ACTIONS(2639), - [anon_sym_c_long] = ACTIONS(2639), - [anon_sym_c_ulong] = ACTIONS(2639), - [anon_sym_c_longlong] = ACTIONS(2639), - [anon_sym_c_ulonglong] = ACTIONS(2639), - [anon_sym_c_float] = ACTIONS(2639), - [anon_sym_c_double] = ACTIONS(2639), - [anon_sym_c_longdouble] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_yield] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_defer] = ACTIONS(2639), - [anon_sym_errdefer] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_else] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_expand] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_match] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2637), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_DOT] = ACTIONS(2637), - [anon_sym_true] = ACTIONS(2639), - [anon_sym_false] = ACTIONS(2639), - [sym_none] = ACTIONS(2639), - [sym_undefined] = ACTIONS(2639), - [sym_sink] = ACTIONS(2639), - [sym_integer] = ACTIONS(2639), - [sym_float] = ACTIONS(2637), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym_multiline_string] = ACTIONS(2637), - [sym_character] = ACTIONS(2637), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2459), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3197), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2637), + [sym__newline] = ACTIONS(2639), }, [STATE(1116)] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2643), - [anon_sym_import] = ACTIONS(2643), - [anon_sym_test] = ACTIONS(2643), - [anon_sym_hide] = ACTIONS(2643), - [anon_sym_func] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_LPAREN] = ACTIONS(2641), + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_void] = ACTIONS(2643), - [anon_sym_anyopaque] = ACTIONS(2643), - [anon_sym_bool] = ACTIONS(2643), - [anon_sym_int] = ACTIONS(2643), - [anon_sym_uint] = ACTIONS(2643), - [anon_sym_float] = ACTIONS(2643), - [anon_sym_range] = ACTIONS(2643), - [anon_sym_i8] = ACTIONS(2643), - [anon_sym_i16] = ACTIONS(2643), - [anon_sym_i32] = ACTIONS(2643), - [anon_sym_i64] = ACTIONS(2643), - [anon_sym_u8] = ACTIONS(2643), - [anon_sym_u16] = ACTIONS(2643), - [anon_sym_u32] = ACTIONS(2643), - [anon_sym_u64] = ACTIONS(2643), - [anon_sym_isize] = ACTIONS(2643), - [anon_sym_usize] = ACTIONS(2643), - [anon_sym_f32] = ACTIONS(2643), - [anon_sym_f64] = ACTIONS(2643), - [anon_sym_c_char] = ACTIONS(2643), - [anon_sym_c_schar] = ACTIONS(2643), - [anon_sym_c_uchar] = ACTIONS(2643), - [anon_sym_c_short] = ACTIONS(2643), - [anon_sym_c_ushort] = ACTIONS(2643), - [anon_sym_c_int] = ACTIONS(2643), - [anon_sym_c_uint] = ACTIONS(2643), - [anon_sym_c_long] = ACTIONS(2643), - [anon_sym_c_ulong] = ACTIONS(2643), - [anon_sym_c_longlong] = ACTIONS(2643), - [anon_sym_c_ulonglong] = ACTIONS(2643), - [anon_sym_c_float] = ACTIONS(2643), - [anon_sym_c_double] = ACTIONS(2643), - [anon_sym_c_longdouble] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_yield] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_defer] = ACTIONS(2643), - [anon_sym_errdefer] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_else] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_expand] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_match] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2641), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_DOT] = ACTIONS(2641), - [anon_sym_true] = ACTIONS(2643), - [anon_sym_false] = ACTIONS(2643), - [sym_none] = ACTIONS(2643), - [sym_undefined] = ACTIONS(2643), - [sym_sink] = ACTIONS(2643), - [sym_integer] = ACTIONS(2643), - [sym_float] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_multiline_string] = ACTIONS(2641), - [sym_character] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2641), + [sym__newline] = ACTIONS(447), }, [STATE(1117)] = { - [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(2645), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_LPAREN] = ACTIONS(2645), - [anon_sym_RPAREN] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2645), - [anon_sym_DOLLAR] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_void] = 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_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_AMP] = ACTIONS(2645), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(2645), - [anon_sym_true] = ACTIONS(2647), - [anon_sym_false] = ACTIONS(2647), - [sym_none] = ACTIONS(2647), - [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_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2643), + }, + [STATE(1118)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2645), }, - [STATE(1118)] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2651), - [anon_sym_import] = ACTIONS(2651), - [anon_sym_test] = ACTIONS(2651), - [anon_sym_hide] = ACTIONS(2651), - [anon_sym_func] = ACTIONS(2651), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2649), - [anon_sym_void] = ACTIONS(2651), - [anon_sym_anyopaque] = ACTIONS(2651), - [anon_sym_bool] = ACTIONS(2651), - [anon_sym_int] = ACTIONS(2651), - [anon_sym_uint] = ACTIONS(2651), - [anon_sym_float] = ACTIONS(2651), - [anon_sym_range] = ACTIONS(2651), - [anon_sym_i8] = ACTIONS(2651), - [anon_sym_i16] = ACTIONS(2651), - [anon_sym_i32] = ACTIONS(2651), - [anon_sym_i64] = ACTIONS(2651), - [anon_sym_u8] = ACTIONS(2651), - [anon_sym_u16] = ACTIONS(2651), - [anon_sym_u32] = ACTIONS(2651), - [anon_sym_u64] = ACTIONS(2651), - [anon_sym_isize] = ACTIONS(2651), - [anon_sym_usize] = ACTIONS(2651), - [anon_sym_f32] = ACTIONS(2651), - [anon_sym_f64] = ACTIONS(2651), - [anon_sym_c_char] = ACTIONS(2651), - [anon_sym_c_schar] = ACTIONS(2651), - [anon_sym_c_uchar] = ACTIONS(2651), - [anon_sym_c_short] = ACTIONS(2651), - [anon_sym_c_ushort] = ACTIONS(2651), - [anon_sym_c_int] = ACTIONS(2651), - [anon_sym_c_uint] = ACTIONS(2651), - [anon_sym_c_long] = ACTIONS(2651), - [anon_sym_c_ulong] = ACTIONS(2651), - [anon_sym_c_longlong] = ACTIONS(2651), - [anon_sym_c_ulonglong] = ACTIONS(2651), - [anon_sym_c_float] = ACTIONS(2651), - [anon_sym_c_double] = ACTIONS(2651), - [anon_sym_c_longdouble] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_defer] = ACTIONS(2651), - [anon_sym_errdefer] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_else] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_expand] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_match] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2649), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_DOT] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2651), - [anon_sym_false] = ACTIONS(2651), - [sym_none] = ACTIONS(2651), - [sym_undefined] = ACTIONS(2651), - [sym_sink] = ACTIONS(2651), - [sym_integer] = ACTIONS(2651), - [sym_float] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_multiline_string] = ACTIONS(2649), - [sym_character] = ACTIONS(2649), + [STATE(1119)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1120)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2421), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3184), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1121)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1129), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2649), }, - [STATE(1119)] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_import] = ACTIONS(2655), - [anon_sym_test] = ACTIONS(2655), - [anon_sym_hide] = ACTIONS(2655), - [anon_sym_func] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_RPAREN] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_DOLLAR] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_void] = ACTIONS(2655), - [anon_sym_anyopaque] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_int] = ACTIONS(2655), - [anon_sym_uint] = ACTIONS(2655), - [anon_sym_float] = ACTIONS(2655), - [anon_sym_range] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_c_char] = ACTIONS(2655), - [anon_sym_c_schar] = ACTIONS(2655), - [anon_sym_c_uchar] = ACTIONS(2655), - [anon_sym_c_short] = ACTIONS(2655), - [anon_sym_c_ushort] = ACTIONS(2655), - [anon_sym_c_int] = ACTIONS(2655), - [anon_sym_c_uint] = ACTIONS(2655), - [anon_sym_c_long] = ACTIONS(2655), - [anon_sym_c_ulong] = ACTIONS(2655), - [anon_sym_c_longlong] = ACTIONS(2655), - [anon_sym_c_ulonglong] = ACTIONS(2655), - [anon_sym_c_float] = ACTIONS(2655), - [anon_sym_c_double] = ACTIONS(2655), - [anon_sym_c_longdouble] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_defer] = ACTIONS(2655), - [anon_sym_errdefer] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_else] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_expand] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_DOT] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [sym_none] = ACTIONS(2655), - [sym_undefined] = ACTIONS(2655), - [sym_sink] = ACTIONS(2655), - [sym_integer] = ACTIONS(2655), - [sym_float] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_multiline_string] = ACTIONS(2653), - [sym_character] = ACTIONS(2653), + [STATE(1122)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1130), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2653), + [sym__newline] = ACTIONS(2651), }, - [STATE(1120)] = { - [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(2657), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_void] = 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_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_AMP] = ACTIONS(2657), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_DOT] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [sym_none] = ACTIONS(2659), - [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), + [STATE(1123)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2653), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1124)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2456), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1132), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2655), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2657), }, - [STATE(1121)] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_import] = ACTIONS(2663), - [anon_sym_test] = ACTIONS(2663), - [anon_sym_hide] = ACTIONS(2663), - [anon_sym_func] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_RPAREN] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_void] = ACTIONS(2663), - [anon_sym_anyopaque] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_int] = ACTIONS(2663), - [anon_sym_uint] = ACTIONS(2663), - [anon_sym_float] = ACTIONS(2663), - [anon_sym_range] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_c_char] = ACTIONS(2663), - [anon_sym_c_schar] = ACTIONS(2663), - [anon_sym_c_uchar] = ACTIONS(2663), - [anon_sym_c_short] = ACTIONS(2663), - [anon_sym_c_ushort] = ACTIONS(2663), - [anon_sym_c_int] = ACTIONS(2663), - [anon_sym_c_uint] = ACTIONS(2663), - [anon_sym_c_long] = ACTIONS(2663), - [anon_sym_c_ulong] = ACTIONS(2663), - [anon_sym_c_longlong] = ACTIONS(2663), - [anon_sym_c_ulonglong] = ACTIONS(2663), - [anon_sym_c_float] = ACTIONS(2663), - [anon_sym_c_double] = ACTIONS(2663), - [anon_sym_c_longdouble] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_errdefer] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_expand] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_try] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_undefined] = ACTIONS(2663), - [sym_sink] = ACTIONS(2663), - [sym_integer] = ACTIONS(2663), - [sym_float] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_multiline_string] = ACTIONS(2661), - [sym_character] = ACTIONS(2661), + [STATE(1125)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1126)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1127)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1135), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2661), }, - [STATE(1122)] = { - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_import] = ACTIONS(2667), - [anon_sym_test] = ACTIONS(2667), - [anon_sym_hide] = ACTIONS(2667), - [anon_sym_func] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_RPAREN] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_DOLLAR] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_void] = ACTIONS(2667), - [anon_sym_anyopaque] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_int] = ACTIONS(2667), - [anon_sym_uint] = ACTIONS(2667), - [anon_sym_float] = ACTIONS(2667), - [anon_sym_range] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_c_char] = ACTIONS(2667), - [anon_sym_c_schar] = ACTIONS(2667), - [anon_sym_c_uchar] = ACTIONS(2667), - [anon_sym_c_short] = ACTIONS(2667), - [anon_sym_c_ushort] = ACTIONS(2667), - [anon_sym_c_int] = ACTIONS(2667), - [anon_sym_c_uint] = ACTIONS(2667), - [anon_sym_c_long] = ACTIONS(2667), - [anon_sym_c_ulong] = ACTIONS(2667), - [anon_sym_c_longlong] = ACTIONS(2667), - [anon_sym_c_ulonglong] = ACTIONS(2667), - [anon_sym_c_float] = ACTIONS(2667), - [anon_sym_c_double] = ACTIONS(2667), - [anon_sym_c_longdouble] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_defer] = ACTIONS(2667), - [anon_sym_errdefer] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_else] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_expand] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2667), - [anon_sym_DOT] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [sym_none] = ACTIONS(2667), - [sym_undefined] = ACTIONS(2667), - [sym_sink] = ACTIONS(2667), - [sym_integer] = ACTIONS(2667), - [sym_float] = ACTIONS(2665), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym_multiline_string] = ACTIONS(2665), - [sym_character] = ACTIONS(2665), + [STATE(1128)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1136), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2665), + [sym__newline] = ACTIONS(2663), }, - [STATE(1123)] = { - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_import] = ACTIONS(2671), - [anon_sym_test] = ACTIONS(2671), - [anon_sym_hide] = ACTIONS(2671), - [anon_sym_func] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_DOLLAR] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_void] = ACTIONS(2671), - [anon_sym_anyopaque] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_int] = ACTIONS(2671), - [anon_sym_uint] = ACTIONS(2671), - [anon_sym_float] = ACTIONS(2671), - [anon_sym_range] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_c_char] = ACTIONS(2671), - [anon_sym_c_schar] = ACTIONS(2671), - [anon_sym_c_uchar] = ACTIONS(2671), - [anon_sym_c_short] = ACTIONS(2671), - [anon_sym_c_ushort] = ACTIONS(2671), - [anon_sym_c_int] = ACTIONS(2671), - [anon_sym_c_uint] = ACTIONS(2671), - [anon_sym_c_long] = ACTIONS(2671), - [anon_sym_c_ulong] = ACTIONS(2671), - [anon_sym_c_longlong] = ACTIONS(2671), - [anon_sym_c_ulonglong] = ACTIONS(2671), - [anon_sym_c_float] = ACTIONS(2671), - [anon_sym_c_double] = ACTIONS(2671), - [anon_sym_c_longdouble] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_errdefer] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_else] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_expand] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_undefined] = ACTIONS(2671), - [sym_sink] = ACTIONS(2671), - [sym_integer] = ACTIONS(2671), - [sym_float] = ACTIONS(2669), - [anon_sym_DQUOTE] = ACTIONS(2669), - [sym_multiline_string] = ACTIONS(2669), - [sym_character] = ACTIONS(2669), + [STATE(1129)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2669), + [sym__newline] = ACTIONS(447), }, - [STATE(1124)] = { - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_import] = ACTIONS(2675), - [anon_sym_test] = ACTIONS(2675), - [anon_sym_hide] = ACTIONS(2675), - [anon_sym_func] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_RPAREN] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_DOLLAR] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_void] = ACTIONS(2675), - [anon_sym_anyopaque] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_int] = ACTIONS(2675), - [anon_sym_uint] = ACTIONS(2675), - [anon_sym_float] = ACTIONS(2675), - [anon_sym_range] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_c_char] = ACTIONS(2675), - [anon_sym_c_schar] = ACTIONS(2675), - [anon_sym_c_uchar] = ACTIONS(2675), - [anon_sym_c_short] = ACTIONS(2675), - [anon_sym_c_ushort] = ACTIONS(2675), - [anon_sym_c_int] = ACTIONS(2675), - [anon_sym_c_uint] = ACTIONS(2675), - [anon_sym_c_long] = ACTIONS(2675), - [anon_sym_c_ulong] = ACTIONS(2675), - [anon_sym_c_longlong] = ACTIONS(2675), - [anon_sym_c_ulonglong] = ACTIONS(2675), - [anon_sym_c_float] = ACTIONS(2675), - [anon_sym_c_double] = ACTIONS(2675), - [anon_sym_c_longdouble] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_defer] = ACTIONS(2675), - [anon_sym_errdefer] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_else] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_expand] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2675), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [sym_none] = ACTIONS(2675), - [sym_undefined] = ACTIONS(2675), - [sym_sink] = ACTIONS(2675), - [sym_integer] = ACTIONS(2675), - [sym_float] = ACTIONS(2673), - [anon_sym_DQUOTE] = ACTIONS(2673), - [sym_multiline_string] = ACTIONS(2673), - [sym_character] = ACTIONS(2673), + [STATE(1130)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1131)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1138), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2665), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2667), + }, + [STATE(1132)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2669), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1133)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2673), }, - [STATE(1125)] = { - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_import] = ACTIONS(2679), - [anon_sym_test] = ACTIONS(2679), - [anon_sym_hide] = ACTIONS(2679), - [anon_sym_func] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_DOLLAR] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_void] = ACTIONS(2679), - [anon_sym_anyopaque] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_int] = ACTIONS(2679), - [anon_sym_uint] = ACTIONS(2679), - [anon_sym_float] = ACTIONS(2679), - [anon_sym_range] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_c_char] = ACTIONS(2679), - [anon_sym_c_schar] = ACTIONS(2679), - [anon_sym_c_uchar] = ACTIONS(2679), - [anon_sym_c_short] = ACTIONS(2679), - [anon_sym_c_ushort] = ACTIONS(2679), - [anon_sym_c_int] = ACTIONS(2679), - [anon_sym_c_uint] = ACTIONS(2679), - [anon_sym_c_long] = ACTIONS(2679), - [anon_sym_c_ulong] = ACTIONS(2679), - [anon_sym_c_longlong] = ACTIONS(2679), - [anon_sym_c_ulonglong] = ACTIONS(2679), - [anon_sym_c_float] = ACTIONS(2679), - [anon_sym_c_double] = ACTIONS(2679), - [anon_sym_c_longdouble] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_defer] = ACTIONS(2679), - [anon_sym_errdefer] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_else] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_expand] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2679), - [anon_sym_DOT] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [sym_none] = ACTIONS(2679), - [sym_undefined] = ACTIONS(2679), - [sym_sink] = ACTIONS(2679), - [sym_integer] = ACTIONS(2679), - [sym_float] = ACTIONS(2677), - [anon_sym_DQUOTE] = ACTIONS(2677), - [sym_multiline_string] = ACTIONS(2677), - [sym_character] = ACTIONS(2677), + [STATE(1134)] = { + [sym_type] = STATE(622), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(1631), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_mut] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(1135)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1136)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1137)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1141), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2677), }, - [STATE(1126)] = { - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_import] = ACTIONS(2683), - [anon_sym_test] = ACTIONS(2683), - [anon_sym_hide] = ACTIONS(2683), - [anon_sym_func] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_DOLLAR] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_void] = ACTIONS(2683), - [anon_sym_anyopaque] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_int] = ACTIONS(2683), - [anon_sym_uint] = ACTIONS(2683), - [anon_sym_float] = ACTIONS(2683), - [anon_sym_range] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_c_char] = ACTIONS(2683), - [anon_sym_c_schar] = ACTIONS(2683), - [anon_sym_c_uchar] = ACTIONS(2683), - [anon_sym_c_short] = ACTIONS(2683), - [anon_sym_c_ushort] = ACTIONS(2683), - [anon_sym_c_int] = ACTIONS(2683), - [anon_sym_c_uint] = ACTIONS(2683), - [anon_sym_c_long] = ACTIONS(2683), - [anon_sym_c_ulong] = ACTIONS(2683), - [anon_sym_c_longlong] = ACTIONS(2683), - [anon_sym_c_ulonglong] = ACTIONS(2683), - [anon_sym_c_float] = ACTIONS(2683), - [anon_sym_c_double] = ACTIONS(2683), - [anon_sym_c_longdouble] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_defer] = ACTIONS(2683), - [anon_sym_errdefer] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_else] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_expand] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2683), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [sym_none] = ACTIONS(2683), - [sym_undefined] = ACTIONS(2683), - [sym_sink] = ACTIONS(2683), - [sym_integer] = ACTIONS(2683), - [sym_float] = ACTIONS(2681), - [anon_sym_DQUOTE] = ACTIONS(2681), - [sym_multiline_string] = ACTIONS(2681), - [sym_character] = ACTIONS(2681), + [STATE(1138)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1139)] = { + [sym_type] = STATE(639), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(305), + [sym_identifier] = ACTIONS(1631), + [anon_sym_import] = ACTIONS(310), + [anon_sym_test] = ACTIONS(310), + [anon_sym_hide] = ACTIONS(310), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(305), + [anon_sym_DASH] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(305), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_mut] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1645), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(305), + [anon_sym_else] = ACTIONS(310), + [anon_sym_DOT_DOT] = ACTIONS(310), + [anon_sym_DOT_DOT_EQ] = ACTIONS(305), + [anon_sym_orelse] = ACTIONS(310), + [anon_sym_catch] = ACTIONS(310), + [anon_sym_or] = ACTIONS(310), + [anon_sym_and] = ACTIONS(310), + [anon_sym_EQ_EQ] = ACTIONS(305), + [anon_sym_BANG_EQ] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(310), + [anon_sym_LT_EQ] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(310), + [anon_sym_GT_EQ] = ACTIONS(305), + [anon_sym_AMP] = ACTIONS(305), + [anon_sym_xor] = ACTIONS(310), + [anon_sym_LT_LT] = ACTIONS(310), + [anon_sym_GT_GT] = ACTIONS(305), + [anon_sym_LT_LT_PIPE] = ACTIONS(305), + [anon_sym_PLUS] = ACTIONS(305), + [anon_sym_SLASH] = ACTIONS(305), + [anon_sym_DOT] = ACTIONS(310), + [anon_sym_CARET] = ACTIONS(305), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(305), + }, + [STATE(1140)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2356), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1180), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2681), }, - [STATE(1127)] = { - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_import] = ACTIONS(2687), - [anon_sym_test] = ACTIONS(2687), - [anon_sym_hide] = ACTIONS(2687), - [anon_sym_func] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_LPAREN] = ACTIONS(2685), + [STATE(1141)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1142)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2346), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1143), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_DOLLAR] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_void] = ACTIONS(2687), - [anon_sym_anyopaque] = ACTIONS(2687), - [anon_sym_bool] = ACTIONS(2687), - [anon_sym_int] = ACTIONS(2687), - [anon_sym_uint] = ACTIONS(2687), - [anon_sym_float] = ACTIONS(2687), - [anon_sym_range] = ACTIONS(2687), - [anon_sym_i8] = ACTIONS(2687), - [anon_sym_i16] = ACTIONS(2687), - [anon_sym_i32] = ACTIONS(2687), - [anon_sym_i64] = ACTIONS(2687), - [anon_sym_u8] = ACTIONS(2687), - [anon_sym_u16] = ACTIONS(2687), - [anon_sym_u32] = ACTIONS(2687), - [anon_sym_u64] = ACTIONS(2687), - [anon_sym_isize] = ACTIONS(2687), - [anon_sym_usize] = ACTIONS(2687), - [anon_sym_f32] = ACTIONS(2687), - [anon_sym_f64] = ACTIONS(2687), - [anon_sym_c_char] = ACTIONS(2687), - [anon_sym_c_schar] = ACTIONS(2687), - [anon_sym_c_uchar] = ACTIONS(2687), - [anon_sym_c_short] = ACTIONS(2687), - [anon_sym_c_ushort] = ACTIONS(2687), - [anon_sym_c_int] = ACTIONS(2687), - [anon_sym_c_uint] = ACTIONS(2687), - [anon_sym_c_long] = ACTIONS(2687), - [anon_sym_c_ulong] = ACTIONS(2687), - [anon_sym_c_longlong] = ACTIONS(2687), - [anon_sym_c_ulonglong] = ACTIONS(2687), - [anon_sym_c_float] = ACTIONS(2687), - [anon_sym_c_double] = ACTIONS(2687), - [anon_sym_c_longdouble] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_yield] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_defer] = ACTIONS(2687), - [anon_sym_errdefer] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_else] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_expand] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2687), - [anon_sym_DOT] = ACTIONS(2685), - [anon_sym_true] = ACTIONS(2687), - [anon_sym_false] = ACTIONS(2687), - [sym_none] = ACTIONS(2687), - [sym_undefined] = ACTIONS(2687), - [sym_sink] = ACTIONS(2687), - [sym_integer] = ACTIONS(2687), - [sym_float] = ACTIONS(2685), - [anon_sym_DQUOTE] = ACTIONS(2685), - [sym_multiline_string] = ACTIONS(2685), - [sym_character] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2685), + [sym__newline] = ACTIONS(2687), }, - [STATE(1128)] = { - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_import] = ACTIONS(2691), - [anon_sym_test] = ACTIONS(2691), - [anon_sym_hide] = ACTIONS(2691), - [anon_sym_func] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2689), + [STATE(1143)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2345), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_DOLLAR] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_void] = ACTIONS(2691), - [anon_sym_anyopaque] = ACTIONS(2691), - [anon_sym_bool] = ACTIONS(2691), - [anon_sym_int] = ACTIONS(2691), - [anon_sym_uint] = ACTIONS(2691), - [anon_sym_float] = ACTIONS(2691), - [anon_sym_range] = ACTIONS(2691), - [anon_sym_i8] = ACTIONS(2691), - [anon_sym_i16] = ACTIONS(2691), - [anon_sym_i32] = ACTIONS(2691), - [anon_sym_i64] = ACTIONS(2691), - [anon_sym_u8] = ACTIONS(2691), - [anon_sym_u16] = ACTIONS(2691), - [anon_sym_u32] = ACTIONS(2691), - [anon_sym_u64] = ACTIONS(2691), - [anon_sym_isize] = ACTIONS(2691), - [anon_sym_usize] = ACTIONS(2691), - [anon_sym_f32] = ACTIONS(2691), - [anon_sym_f64] = ACTIONS(2691), - [anon_sym_c_char] = ACTIONS(2691), - [anon_sym_c_schar] = ACTIONS(2691), - [anon_sym_c_uchar] = ACTIONS(2691), - [anon_sym_c_short] = ACTIONS(2691), - [anon_sym_c_ushort] = ACTIONS(2691), - [anon_sym_c_int] = ACTIONS(2691), - [anon_sym_c_uint] = ACTIONS(2691), - [anon_sym_c_long] = ACTIONS(2691), - [anon_sym_c_ulong] = ACTIONS(2691), - [anon_sym_c_longlong] = ACTIONS(2691), - [anon_sym_c_ulonglong] = ACTIONS(2691), - [anon_sym_c_float] = ACTIONS(2691), - [anon_sym_c_double] = ACTIONS(2691), - [anon_sym_c_longdouble] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_yield] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_defer] = ACTIONS(2691), - [anon_sym_errdefer] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_expand] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_DOT] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2691), - [anon_sym_false] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_undefined] = ACTIONS(2691), - [sym_sink] = ACTIONS(2691), - [sym_integer] = ACTIONS(2691), - [sym_float] = ACTIONS(2689), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_multiline_string] = ACTIONS(2689), - [sym_character] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2689), + [sym__newline] = ACTIONS(447), }, - [STATE(1129)] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2695), - [anon_sym_import] = ACTIONS(2695), - [anon_sym_test] = ACTIONS(2695), - [anon_sym_hide] = ACTIONS(2695), - [anon_sym_func] = ACTIONS(2695), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_void] = ACTIONS(2695), - [anon_sym_anyopaque] = ACTIONS(2695), - [anon_sym_bool] = ACTIONS(2695), - [anon_sym_int] = ACTIONS(2695), - [anon_sym_uint] = ACTIONS(2695), - [anon_sym_float] = ACTIONS(2695), - [anon_sym_range] = ACTIONS(2695), - [anon_sym_i8] = ACTIONS(2695), - [anon_sym_i16] = ACTIONS(2695), - [anon_sym_i32] = ACTIONS(2695), - [anon_sym_i64] = ACTIONS(2695), - [anon_sym_u8] = ACTIONS(2695), - [anon_sym_u16] = ACTIONS(2695), - [anon_sym_u32] = ACTIONS(2695), - [anon_sym_u64] = ACTIONS(2695), - [anon_sym_isize] = ACTIONS(2695), - [anon_sym_usize] = ACTIONS(2695), - [anon_sym_f32] = ACTIONS(2695), - [anon_sym_f64] = ACTIONS(2695), - [anon_sym_c_char] = ACTIONS(2695), - [anon_sym_c_schar] = ACTIONS(2695), - [anon_sym_c_uchar] = ACTIONS(2695), - [anon_sym_c_short] = ACTIONS(2695), - [anon_sym_c_ushort] = ACTIONS(2695), - [anon_sym_c_int] = ACTIONS(2695), - [anon_sym_c_uint] = ACTIONS(2695), - [anon_sym_c_long] = ACTIONS(2695), - [anon_sym_c_ulong] = ACTIONS(2695), - [anon_sym_c_longlong] = ACTIONS(2695), - [anon_sym_c_ulonglong] = ACTIONS(2695), - [anon_sym_c_float] = ACTIONS(2695), - [anon_sym_c_double] = ACTIONS(2695), - [anon_sym_c_longdouble] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_yield] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_defer] = ACTIONS(2695), - [anon_sym_errdefer] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_else] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_expand] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2695), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_DOT] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2695), - [anon_sym_false] = ACTIONS(2695), - [sym_none] = ACTIONS(2695), - [sym_undefined] = ACTIONS(2695), - [sym_sink] = ACTIONS(2695), - [sym_integer] = ACTIONS(2695), - [sym_float] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_multiline_string] = ACTIONS(2693), - [sym_character] = ACTIONS(2693), + [STATE(1144)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1145), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2693), }, - [STATE(1130)] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2699), - [anon_sym_import] = ACTIONS(2699), - [anon_sym_test] = ACTIONS(2699), - [anon_sym_hide] = ACTIONS(2699), - [anon_sym_func] = ACTIONS(2699), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_void] = ACTIONS(2699), - [anon_sym_anyopaque] = ACTIONS(2699), - [anon_sym_bool] = ACTIONS(2699), - [anon_sym_int] = ACTIONS(2699), - [anon_sym_uint] = ACTIONS(2699), - [anon_sym_float] = ACTIONS(2699), - [anon_sym_range] = ACTIONS(2699), - [anon_sym_i8] = ACTIONS(2699), - [anon_sym_i16] = ACTIONS(2699), - [anon_sym_i32] = ACTIONS(2699), - [anon_sym_i64] = ACTIONS(2699), - [anon_sym_u8] = ACTIONS(2699), - [anon_sym_u16] = ACTIONS(2699), - [anon_sym_u32] = ACTIONS(2699), - [anon_sym_u64] = ACTIONS(2699), - [anon_sym_isize] = ACTIONS(2699), - [anon_sym_usize] = ACTIONS(2699), - [anon_sym_f32] = ACTIONS(2699), - [anon_sym_f64] = ACTIONS(2699), - [anon_sym_c_char] = ACTIONS(2699), - [anon_sym_c_schar] = ACTIONS(2699), - [anon_sym_c_uchar] = ACTIONS(2699), - [anon_sym_c_short] = ACTIONS(2699), - [anon_sym_c_ushort] = ACTIONS(2699), - [anon_sym_c_int] = ACTIONS(2699), - [anon_sym_c_uint] = ACTIONS(2699), - [anon_sym_c_long] = ACTIONS(2699), - [anon_sym_c_ulong] = ACTIONS(2699), - [anon_sym_c_longlong] = ACTIONS(2699), - [anon_sym_c_ulonglong] = ACTIONS(2699), - [anon_sym_c_float] = ACTIONS(2699), - [anon_sym_c_double] = ACTIONS(2699), - [anon_sym_c_longdouble] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_yield] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_defer] = ACTIONS(2699), - [anon_sym_errdefer] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_else] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_expand] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_DOT] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2699), - [anon_sym_false] = ACTIONS(2699), - [sym_none] = ACTIONS(2699), - [sym_undefined] = ACTIONS(2699), - [sym_sink] = ACTIONS(2699), - [sym_integer] = ACTIONS(2699), - [sym_float] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_multiline_string] = ACTIONS(2697), - [sym_character] = ACTIONS(2697), + [STATE(1145)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1146)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1148), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2697), }, - [STATE(1131)] = { - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_import] = ACTIONS(2703), - [anon_sym_test] = ACTIONS(2703), - [anon_sym_hide] = ACTIONS(2703), - [anon_sym_func] = ACTIONS(2703), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_RPAREN] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_DOLLAR] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_void] = ACTIONS(2703), - [anon_sym_anyopaque] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_int] = ACTIONS(2703), - [anon_sym_uint] = ACTIONS(2703), - [anon_sym_float] = ACTIONS(2703), - [anon_sym_range] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_c_char] = ACTIONS(2703), - [anon_sym_c_schar] = ACTIONS(2703), - [anon_sym_c_uchar] = ACTIONS(2703), - [anon_sym_c_short] = ACTIONS(2703), - [anon_sym_c_ushort] = ACTIONS(2703), - [anon_sym_c_int] = ACTIONS(2703), - [anon_sym_c_uint] = ACTIONS(2703), - [anon_sym_c_long] = ACTIONS(2703), - [anon_sym_c_ulong] = ACTIONS(2703), - [anon_sym_c_longlong] = ACTIONS(2703), - [anon_sym_c_ulonglong] = ACTIONS(2703), - [anon_sym_c_float] = ACTIONS(2703), - [anon_sym_c_double] = ACTIONS(2703), - [anon_sym_c_longdouble] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_defer] = ACTIONS(2703), - [anon_sym_errdefer] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_else] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_expand] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_try] = ACTIONS(2703), - [anon_sym_DOT] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [sym_none] = ACTIONS(2703), - [sym_undefined] = ACTIONS(2703), - [sym_sink] = ACTIONS(2703), - [sym_integer] = ACTIONS(2703), - [sym_float] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_multiline_string] = ACTIONS(2701), - [sym_character] = ACTIONS(2701), + [STATE(1147)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1149), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2701), + [sym__newline] = ACTIONS(2699), }, - [STATE(1132)] = { - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_import] = ACTIONS(2707), - [anon_sym_test] = ACTIONS(2707), - [anon_sym_hide] = ACTIONS(2707), - [anon_sym_func] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_RPAREN] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_DOLLAR] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_void] = ACTIONS(2707), - [anon_sym_anyopaque] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_int] = ACTIONS(2707), - [anon_sym_uint] = ACTIONS(2707), - [anon_sym_float] = ACTIONS(2707), - [anon_sym_range] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_c_char] = ACTIONS(2707), - [anon_sym_c_schar] = ACTIONS(2707), - [anon_sym_c_uchar] = ACTIONS(2707), - [anon_sym_c_short] = ACTIONS(2707), - [anon_sym_c_ushort] = ACTIONS(2707), - [anon_sym_c_int] = ACTIONS(2707), - [anon_sym_c_uint] = ACTIONS(2707), - [anon_sym_c_long] = ACTIONS(2707), - [anon_sym_c_ulong] = ACTIONS(2707), - [anon_sym_c_longlong] = ACTIONS(2707), - [anon_sym_c_ulonglong] = ACTIONS(2707), - [anon_sym_c_float] = ACTIONS(2707), - [anon_sym_c_double] = ACTIONS(2707), - [anon_sym_c_longdouble] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_defer] = ACTIONS(2707), - [anon_sym_errdefer] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_else] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_expand] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [sym_none] = ACTIONS(2707), - [sym_undefined] = ACTIONS(2707), - [sym_sink] = ACTIONS(2707), - [sym_integer] = ACTIONS(2707), - [sym_float] = ACTIONS(2705), - [anon_sym_DQUOTE] = ACTIONS(2705), - [sym_multiline_string] = ACTIONS(2705), - [sym_character] = ACTIONS(2705), + [STATE(1148)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1149)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1150)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1152), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2703), + }, + [STATE(1151)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1153), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2705), }, - [STATE(1133)] = { - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_import] = ACTIONS(2711), - [anon_sym_test] = ACTIONS(2711), - [anon_sym_hide] = ACTIONS(2711), - [anon_sym_func] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_RPAREN] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_void] = ACTIONS(2711), - [anon_sym_anyopaque] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_int] = ACTIONS(2711), - [anon_sym_uint] = ACTIONS(2711), - [anon_sym_float] = ACTIONS(2711), - [anon_sym_range] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_c_char] = ACTIONS(2711), - [anon_sym_c_schar] = ACTIONS(2711), - [anon_sym_c_uchar] = ACTIONS(2711), - [anon_sym_c_short] = ACTIONS(2711), - [anon_sym_c_ushort] = ACTIONS(2711), - [anon_sym_c_int] = ACTIONS(2711), - [anon_sym_c_uint] = ACTIONS(2711), - [anon_sym_c_long] = ACTIONS(2711), - [anon_sym_c_ulong] = ACTIONS(2711), - [anon_sym_c_longlong] = ACTIONS(2711), - [anon_sym_c_ulonglong] = ACTIONS(2711), - [anon_sym_c_float] = ACTIONS(2711), - [anon_sym_c_double] = ACTIONS(2711), - [anon_sym_c_longdouble] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_defer] = ACTIONS(2711), - [anon_sym_errdefer] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_else] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_expand] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2711), - [anon_sym_DOT] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [sym_none] = ACTIONS(2711), - [sym_undefined] = ACTIONS(2711), - [sym_sink] = ACTIONS(2711), - [sym_integer] = ACTIONS(2711), - [sym_float] = ACTIONS(2709), - [anon_sym_DQUOTE] = ACTIONS(2709), - [sym_multiline_string] = ACTIONS(2709), - [sym_character] = ACTIONS(2709), + [STATE(1152)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1153)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1154)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2709), }, - [STATE(1134)] = { - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_import] = ACTIONS(2715), - [anon_sym_test] = ACTIONS(2715), - [anon_sym_hide] = ACTIONS(2715), - [anon_sym_func] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_RPAREN] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_DOLLAR] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_void] = ACTIONS(2715), - [anon_sym_anyopaque] = ACTIONS(2715), - [anon_sym_bool] = ACTIONS(2715), - [anon_sym_int] = ACTIONS(2715), - [anon_sym_uint] = ACTIONS(2715), - [anon_sym_float] = ACTIONS(2715), - [anon_sym_range] = ACTIONS(2715), - [anon_sym_i8] = ACTIONS(2715), - [anon_sym_i16] = ACTIONS(2715), - [anon_sym_i32] = ACTIONS(2715), - [anon_sym_i64] = ACTIONS(2715), - [anon_sym_u8] = ACTIONS(2715), - [anon_sym_u16] = ACTIONS(2715), - [anon_sym_u32] = ACTIONS(2715), - [anon_sym_u64] = ACTIONS(2715), - [anon_sym_isize] = ACTIONS(2715), - [anon_sym_usize] = ACTIONS(2715), - [anon_sym_f32] = ACTIONS(2715), - [anon_sym_f64] = ACTIONS(2715), - [anon_sym_c_char] = ACTIONS(2715), - [anon_sym_c_schar] = ACTIONS(2715), - [anon_sym_c_uchar] = ACTIONS(2715), - [anon_sym_c_short] = ACTIONS(2715), - [anon_sym_c_ushort] = ACTIONS(2715), - [anon_sym_c_int] = ACTIONS(2715), - [anon_sym_c_uint] = ACTIONS(2715), - [anon_sym_c_long] = ACTIONS(2715), - [anon_sym_c_ulong] = ACTIONS(2715), - [anon_sym_c_longlong] = ACTIONS(2715), - [anon_sym_c_ulonglong] = ACTIONS(2715), - [anon_sym_c_float] = ACTIONS(2715), - [anon_sym_c_double] = ACTIONS(2715), - [anon_sym_c_longdouble] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_yield] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_defer] = ACTIONS(2715), - [anon_sym_errdefer] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_else] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_expand] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2715), - [anon_sym_DOT] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2715), - [anon_sym_false] = ACTIONS(2715), - [sym_none] = ACTIONS(2715), - [sym_undefined] = ACTIONS(2715), - [sym_sink] = ACTIONS(2715), - [sym_integer] = ACTIONS(2715), - [sym_float] = ACTIONS(2713), - [anon_sym_DQUOTE] = ACTIONS(2713), - [sym_multiline_string] = ACTIONS(2713), - [sym_character] = ACTIONS(2713), + [STATE(1155)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1156)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_block] = STATE(665), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1033), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2713), }, - [STATE(1135)] = { - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_import] = ACTIONS(2719), - [anon_sym_test] = ACTIONS(2719), - [anon_sym_hide] = ACTIONS(2719), - [anon_sym_func] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_RPAREN] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_DOLLAR] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_void] = ACTIONS(2719), - [anon_sym_anyopaque] = ACTIONS(2719), - [anon_sym_bool] = ACTIONS(2719), - [anon_sym_int] = ACTIONS(2719), - [anon_sym_uint] = ACTIONS(2719), - [anon_sym_float] = ACTIONS(2719), - [anon_sym_range] = ACTIONS(2719), - [anon_sym_i8] = ACTIONS(2719), - [anon_sym_i16] = ACTIONS(2719), - [anon_sym_i32] = ACTIONS(2719), - [anon_sym_i64] = ACTIONS(2719), - [anon_sym_u8] = ACTIONS(2719), - [anon_sym_u16] = ACTIONS(2719), - [anon_sym_u32] = ACTIONS(2719), - [anon_sym_u64] = ACTIONS(2719), - [anon_sym_isize] = ACTIONS(2719), - [anon_sym_usize] = ACTIONS(2719), - [anon_sym_f32] = ACTIONS(2719), - [anon_sym_f64] = ACTIONS(2719), - [anon_sym_c_char] = ACTIONS(2719), - [anon_sym_c_schar] = ACTIONS(2719), - [anon_sym_c_uchar] = ACTIONS(2719), - [anon_sym_c_short] = ACTIONS(2719), - [anon_sym_c_ushort] = ACTIONS(2719), - [anon_sym_c_int] = ACTIONS(2719), - [anon_sym_c_uint] = ACTIONS(2719), - [anon_sym_c_long] = ACTIONS(2719), - [anon_sym_c_ulong] = ACTIONS(2719), - [anon_sym_c_longlong] = ACTIONS(2719), - [anon_sym_c_ulonglong] = ACTIONS(2719), - [anon_sym_c_float] = ACTIONS(2719), - [anon_sym_c_double] = ACTIONS(2719), - [anon_sym_c_longdouble] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_defer] = ACTIONS(2719), - [anon_sym_errdefer] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_else] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_expand] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2719), - [anon_sym_DOT] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [sym_none] = ACTIONS(2719), - [sym_undefined] = ACTIONS(2719), - [sym_sink] = ACTIONS(2719), - [sym_integer] = ACTIONS(2719), - [sym_float] = ACTIONS(2717), - [anon_sym_DQUOTE] = ACTIONS(2717), - [sym_multiline_string] = ACTIONS(2717), - [sym_character] = ACTIONS(2717), + [STATE(1157)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(2715), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2717), + [sym__newline] = ACTIONS(1877), }, - [STATE(1136)] = { - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2723), - [anon_sym_import] = ACTIONS(2723), - [anon_sym_test] = ACTIONS(2723), - [anon_sym_hide] = ACTIONS(2723), - [anon_sym_func] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_RPAREN] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_DOLLAR] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_void] = ACTIONS(2723), - [anon_sym_anyopaque] = ACTIONS(2723), - [anon_sym_bool] = ACTIONS(2723), - [anon_sym_int] = ACTIONS(2723), - [anon_sym_uint] = ACTIONS(2723), - [anon_sym_float] = ACTIONS(2723), - [anon_sym_range] = ACTIONS(2723), - [anon_sym_i8] = ACTIONS(2723), - [anon_sym_i16] = ACTIONS(2723), - [anon_sym_i32] = ACTIONS(2723), - [anon_sym_i64] = ACTIONS(2723), - [anon_sym_u8] = ACTIONS(2723), - [anon_sym_u16] = ACTIONS(2723), - [anon_sym_u32] = ACTIONS(2723), - [anon_sym_u64] = ACTIONS(2723), - [anon_sym_isize] = ACTIONS(2723), - [anon_sym_usize] = ACTIONS(2723), - [anon_sym_f32] = ACTIONS(2723), - [anon_sym_f64] = ACTIONS(2723), - [anon_sym_c_char] = ACTIONS(2723), - [anon_sym_c_schar] = ACTIONS(2723), - [anon_sym_c_uchar] = ACTIONS(2723), - [anon_sym_c_short] = ACTIONS(2723), - [anon_sym_c_ushort] = ACTIONS(2723), - [anon_sym_c_int] = ACTIONS(2723), - [anon_sym_c_uint] = ACTIONS(2723), - [anon_sym_c_long] = ACTIONS(2723), - [anon_sym_c_ulong] = ACTIONS(2723), - [anon_sym_c_longlong] = ACTIONS(2723), - [anon_sym_c_ulonglong] = ACTIONS(2723), - [anon_sym_c_float] = ACTIONS(2723), - [anon_sym_c_double] = ACTIONS(2723), - [anon_sym_c_longdouble] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_defer] = ACTIONS(2723), - [anon_sym_errdefer] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_else] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_expand] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2723), - [anon_sym_DOT] = ACTIONS(2721), - [anon_sym_true] = ACTIONS(2723), - [anon_sym_false] = ACTIONS(2723), - [sym_none] = ACTIONS(2723), - [sym_undefined] = ACTIONS(2723), - [sym_sink] = ACTIONS(2723), - [sym_integer] = ACTIONS(2723), - [sym_float] = ACTIONS(2721), - [anon_sym_DQUOTE] = ACTIONS(2721), - [sym_multiline_string] = ACTIONS(2721), - [sym_character] = ACTIONS(2721), + [STATE(1158)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2438), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1159), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2721), }, - [STATE(1137)] = { - [ts_builtin_sym_end] = ACTIONS(2725), - [sym_identifier] = ACTIONS(2727), - [anon_sym_import] = ACTIONS(2727), - [anon_sym_test] = ACTIONS(2727), - [anon_sym_hide] = ACTIONS(2727), - [anon_sym_func] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym_RPAREN] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_DOLLAR] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_void] = ACTIONS(2727), - [anon_sym_anyopaque] = ACTIONS(2727), - [anon_sym_bool] = ACTIONS(2727), - [anon_sym_int] = ACTIONS(2727), - [anon_sym_uint] = ACTIONS(2727), - [anon_sym_float] = ACTIONS(2727), - [anon_sym_range] = ACTIONS(2727), - [anon_sym_i8] = ACTIONS(2727), - [anon_sym_i16] = ACTIONS(2727), - [anon_sym_i32] = ACTIONS(2727), - [anon_sym_i64] = ACTIONS(2727), - [anon_sym_u8] = ACTIONS(2727), - [anon_sym_u16] = ACTIONS(2727), - [anon_sym_u32] = ACTIONS(2727), - [anon_sym_u64] = ACTIONS(2727), - [anon_sym_isize] = ACTIONS(2727), - [anon_sym_usize] = ACTIONS(2727), - [anon_sym_f32] = ACTIONS(2727), - [anon_sym_f64] = ACTIONS(2727), - [anon_sym_c_char] = ACTIONS(2727), - [anon_sym_c_schar] = ACTIONS(2727), - [anon_sym_c_uchar] = ACTIONS(2727), - [anon_sym_c_short] = ACTIONS(2727), - [anon_sym_c_ushort] = ACTIONS(2727), - [anon_sym_c_int] = ACTIONS(2727), - [anon_sym_c_uint] = ACTIONS(2727), - [anon_sym_c_long] = ACTIONS(2727), - [anon_sym_c_ulong] = ACTIONS(2727), - [anon_sym_c_longlong] = ACTIONS(2727), - [anon_sym_c_ulonglong] = ACTIONS(2727), - [anon_sym_c_float] = ACTIONS(2727), - [anon_sym_c_double] = ACTIONS(2727), - [anon_sym_c_longdouble] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_defer] = ACTIONS(2727), - [anon_sym_errdefer] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_else] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_expand] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2727), - [anon_sym_DOT] = ACTIONS(2725), - [anon_sym_true] = ACTIONS(2727), - [anon_sym_false] = ACTIONS(2727), - [sym_none] = ACTIONS(2727), - [sym_undefined] = ACTIONS(2727), - [sym_sink] = ACTIONS(2727), - [sym_integer] = ACTIONS(2727), - [sym_float] = ACTIONS(2725), - [anon_sym_DQUOTE] = ACTIONS(2725), - [sym_multiline_string] = ACTIONS(2725), - [sym_character] = ACTIONS(2725), + [STATE(1159)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2432), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1725), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2725), }, - [STATE(1138)] = { - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2731), - [anon_sym_import] = ACTIONS(2731), - [anon_sym_test] = ACTIONS(2731), - [anon_sym_hide] = ACTIONS(2731), - [anon_sym_func] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_RPAREN] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_DOLLAR] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_void] = ACTIONS(2731), - [anon_sym_anyopaque] = ACTIONS(2731), - [anon_sym_bool] = ACTIONS(2731), - [anon_sym_int] = ACTIONS(2731), - [anon_sym_uint] = ACTIONS(2731), - [anon_sym_float] = ACTIONS(2731), - [anon_sym_range] = ACTIONS(2731), - [anon_sym_i8] = ACTIONS(2731), - [anon_sym_i16] = ACTIONS(2731), - [anon_sym_i32] = ACTIONS(2731), - [anon_sym_i64] = ACTIONS(2731), - [anon_sym_u8] = ACTIONS(2731), - [anon_sym_u16] = ACTIONS(2731), - [anon_sym_u32] = ACTIONS(2731), - [anon_sym_u64] = ACTIONS(2731), - [anon_sym_isize] = ACTIONS(2731), - [anon_sym_usize] = ACTIONS(2731), - [anon_sym_f32] = ACTIONS(2731), - [anon_sym_f64] = ACTIONS(2731), - [anon_sym_c_char] = ACTIONS(2731), - [anon_sym_c_schar] = ACTIONS(2731), - [anon_sym_c_uchar] = ACTIONS(2731), - [anon_sym_c_short] = ACTIONS(2731), - [anon_sym_c_ushort] = ACTIONS(2731), - [anon_sym_c_int] = ACTIONS(2731), - [anon_sym_c_uint] = ACTIONS(2731), - [anon_sym_c_long] = ACTIONS(2731), - [anon_sym_c_ulong] = ACTIONS(2731), - [anon_sym_c_longlong] = ACTIONS(2731), - [anon_sym_c_ulonglong] = ACTIONS(2731), - [anon_sym_c_float] = ACTIONS(2731), - [anon_sym_c_double] = ACTIONS(2731), - [anon_sym_c_longdouble] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_defer] = ACTIONS(2731), - [anon_sym_errdefer] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_else] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_expand] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2731), - [anon_sym_DOT] = ACTIONS(2729), - [anon_sym_true] = ACTIONS(2731), - [anon_sym_false] = ACTIONS(2731), - [sym_none] = ACTIONS(2731), - [sym_undefined] = ACTIONS(2731), - [sym_sink] = ACTIONS(2731), - [sym_integer] = ACTIONS(2731), - [sym_float] = ACTIONS(2729), - [anon_sym_DQUOTE] = ACTIONS(2729), - [sym_multiline_string] = ACTIONS(2729), - [sym_character] = ACTIONS(2729), + [STATE(1160)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2727), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2729), + [sym__newline] = ACTIONS(447), }, - [STATE(1139)] = { - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2735), - [anon_sym_import] = ACTIONS(2735), - [anon_sym_test] = ACTIONS(2735), - [anon_sym_hide] = ACTIONS(2735), - [anon_sym_func] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_RPAREN] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_DOLLAR] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_void] = ACTIONS(2735), - [anon_sym_anyopaque] = ACTIONS(2735), - [anon_sym_bool] = ACTIONS(2735), - [anon_sym_int] = ACTIONS(2735), - [anon_sym_uint] = ACTIONS(2735), - [anon_sym_float] = ACTIONS(2735), - [anon_sym_range] = ACTIONS(2735), - [anon_sym_i8] = ACTIONS(2735), - [anon_sym_i16] = ACTIONS(2735), - [anon_sym_i32] = ACTIONS(2735), - [anon_sym_i64] = ACTIONS(2735), - [anon_sym_u8] = ACTIONS(2735), - [anon_sym_u16] = ACTIONS(2735), - [anon_sym_u32] = ACTIONS(2735), - [anon_sym_u64] = ACTIONS(2735), - [anon_sym_isize] = ACTIONS(2735), - [anon_sym_usize] = ACTIONS(2735), - [anon_sym_f32] = ACTIONS(2735), - [anon_sym_f64] = ACTIONS(2735), - [anon_sym_c_char] = ACTIONS(2735), - [anon_sym_c_schar] = ACTIONS(2735), - [anon_sym_c_uchar] = ACTIONS(2735), - [anon_sym_c_short] = ACTIONS(2735), - [anon_sym_c_ushort] = ACTIONS(2735), - [anon_sym_c_int] = ACTIONS(2735), - [anon_sym_c_uint] = ACTIONS(2735), - [anon_sym_c_long] = ACTIONS(2735), - [anon_sym_c_ulong] = ACTIONS(2735), - [anon_sym_c_longlong] = ACTIONS(2735), - [anon_sym_c_ulonglong] = ACTIONS(2735), - [anon_sym_c_float] = ACTIONS(2735), - [anon_sym_c_double] = ACTIONS(2735), - [anon_sym_c_longdouble] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_yield] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_defer] = ACTIONS(2735), - [anon_sym_errdefer] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_else] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_expand] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2735), - [anon_sym_DOT] = ACTIONS(2733), - [anon_sym_true] = ACTIONS(2735), - [anon_sym_false] = ACTIONS(2735), - [sym_none] = ACTIONS(2735), - [sym_undefined] = ACTIONS(2735), - [sym_sink] = ACTIONS(2735), - [sym_integer] = ACTIONS(2735), - [sym_float] = ACTIONS(2733), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym_multiline_string] = ACTIONS(2733), - [sym_character] = ACTIONS(2733), + [STATE(1161)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2444), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3192), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2729), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2731), + }, + [STATE(1162)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2446), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1725), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2725), + }, + [STATE(1163)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2435), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3233), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1181), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2733), }, - [STATE(1140)] = { - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2739), - [anon_sym_import] = ACTIONS(2739), - [anon_sym_test] = ACTIONS(2739), - [anon_sym_hide] = ACTIONS(2739), - [anon_sym_func] = ACTIONS(2739), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_RPAREN] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_DOLLAR] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_void] = ACTIONS(2739), - [anon_sym_anyopaque] = ACTIONS(2739), - [anon_sym_bool] = ACTIONS(2739), - [anon_sym_int] = ACTIONS(2739), - [anon_sym_uint] = ACTIONS(2739), - [anon_sym_float] = ACTIONS(2739), - [anon_sym_range] = ACTIONS(2739), - [anon_sym_i8] = ACTIONS(2739), - [anon_sym_i16] = ACTIONS(2739), - [anon_sym_i32] = ACTIONS(2739), - [anon_sym_i64] = ACTIONS(2739), - [anon_sym_u8] = ACTIONS(2739), - [anon_sym_u16] = ACTIONS(2739), - [anon_sym_u32] = ACTIONS(2739), - [anon_sym_u64] = ACTIONS(2739), - [anon_sym_isize] = ACTIONS(2739), - [anon_sym_usize] = ACTIONS(2739), - [anon_sym_f32] = ACTIONS(2739), - [anon_sym_f64] = ACTIONS(2739), - [anon_sym_c_char] = ACTIONS(2739), - [anon_sym_c_schar] = ACTIONS(2739), - [anon_sym_c_uchar] = ACTIONS(2739), - [anon_sym_c_short] = ACTIONS(2739), - [anon_sym_c_ushort] = ACTIONS(2739), - [anon_sym_c_int] = ACTIONS(2739), - [anon_sym_c_uint] = ACTIONS(2739), - [anon_sym_c_long] = ACTIONS(2739), - [anon_sym_c_ulong] = ACTIONS(2739), - [anon_sym_c_longlong] = ACTIONS(2739), - [anon_sym_c_ulonglong] = ACTIONS(2739), - [anon_sym_c_float] = ACTIONS(2739), - [anon_sym_c_double] = ACTIONS(2739), - [anon_sym_c_longdouble] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_yield] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_defer] = ACTIONS(2739), - [anon_sym_errdefer] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_else] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_expand] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_DOT] = ACTIONS(2737), - [anon_sym_true] = ACTIONS(2739), - [anon_sym_false] = ACTIONS(2739), - [sym_none] = ACTIONS(2739), - [sym_undefined] = ACTIONS(2739), - [sym_sink] = ACTIONS(2739), - [sym_integer] = ACTIONS(2739), - [sym_float] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(2737), - [sym_multiline_string] = ACTIONS(2737), - [sym_character] = ACTIONS(2737), + [STATE(1164)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1165)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1166)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2737), }, - [STATE(1141)] = { - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2743), - [anon_sym_import] = ACTIONS(2743), - [anon_sym_test] = ACTIONS(2743), - [anon_sym_hide] = ACTIONS(2743), - [anon_sym_func] = ACTIONS(2743), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_DOLLAR] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_void] = ACTIONS(2743), - [anon_sym_anyopaque] = ACTIONS(2743), - [anon_sym_bool] = ACTIONS(2743), - [anon_sym_int] = ACTIONS(2743), - [anon_sym_uint] = ACTIONS(2743), - [anon_sym_float] = ACTIONS(2743), - [anon_sym_range] = ACTIONS(2743), - [anon_sym_i8] = ACTIONS(2743), - [anon_sym_i16] = ACTIONS(2743), - [anon_sym_i32] = ACTIONS(2743), - [anon_sym_i64] = ACTIONS(2743), - [anon_sym_u8] = ACTIONS(2743), - [anon_sym_u16] = ACTIONS(2743), - [anon_sym_u32] = ACTIONS(2743), - [anon_sym_u64] = ACTIONS(2743), - [anon_sym_isize] = ACTIONS(2743), - [anon_sym_usize] = ACTIONS(2743), - [anon_sym_f32] = ACTIONS(2743), - [anon_sym_f64] = ACTIONS(2743), - [anon_sym_c_char] = ACTIONS(2743), - [anon_sym_c_schar] = ACTIONS(2743), - [anon_sym_c_uchar] = ACTIONS(2743), - [anon_sym_c_short] = ACTIONS(2743), - [anon_sym_c_ushort] = ACTIONS(2743), - [anon_sym_c_int] = ACTIONS(2743), - [anon_sym_c_uint] = ACTIONS(2743), - [anon_sym_c_long] = ACTIONS(2743), - [anon_sym_c_ulong] = ACTIONS(2743), - [anon_sym_c_longlong] = ACTIONS(2743), - [anon_sym_c_ulonglong] = ACTIONS(2743), - [anon_sym_c_float] = ACTIONS(2743), - [anon_sym_c_double] = ACTIONS(2743), - [anon_sym_c_longdouble] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_yield] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_defer] = ACTIONS(2743), - [anon_sym_errdefer] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_expand] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2743), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_try] = ACTIONS(2743), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_true] = ACTIONS(2743), - [anon_sym_false] = ACTIONS(2743), - [sym_none] = ACTIONS(2743), - [sym_undefined] = ACTIONS(2743), - [sym_sink] = ACTIONS(2743), - [sym_integer] = ACTIONS(2743), - [sym_float] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_multiline_string] = ACTIONS(2741), - [sym_character] = ACTIONS(2741), + [STATE(1167)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2145), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1169), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2741), + [sym__newline] = ACTIONS(2739), }, - [STATE(1142)] = { - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_import] = ACTIONS(2747), - [anon_sym_test] = ACTIONS(2747), - [anon_sym_hide] = ACTIONS(2747), - [anon_sym_func] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_void] = ACTIONS(2747), - [anon_sym_anyopaque] = ACTIONS(2747), - [anon_sym_bool] = ACTIONS(2747), - [anon_sym_int] = ACTIONS(2747), - [anon_sym_uint] = ACTIONS(2747), - [anon_sym_float] = ACTIONS(2747), - [anon_sym_range] = ACTIONS(2747), - [anon_sym_i8] = ACTIONS(2747), - [anon_sym_i16] = ACTIONS(2747), - [anon_sym_i32] = ACTIONS(2747), - [anon_sym_i64] = ACTIONS(2747), - [anon_sym_u8] = ACTIONS(2747), - [anon_sym_u16] = ACTIONS(2747), - [anon_sym_u32] = ACTIONS(2747), - [anon_sym_u64] = ACTIONS(2747), - [anon_sym_isize] = ACTIONS(2747), - [anon_sym_usize] = ACTIONS(2747), - [anon_sym_f32] = ACTIONS(2747), - [anon_sym_f64] = ACTIONS(2747), - [anon_sym_c_char] = ACTIONS(2747), - [anon_sym_c_schar] = ACTIONS(2747), - [anon_sym_c_uchar] = ACTIONS(2747), - [anon_sym_c_short] = ACTIONS(2747), - [anon_sym_c_ushort] = ACTIONS(2747), - [anon_sym_c_int] = ACTIONS(2747), - [anon_sym_c_uint] = ACTIONS(2747), - [anon_sym_c_long] = ACTIONS(2747), - [anon_sym_c_ulong] = ACTIONS(2747), - [anon_sym_c_longlong] = ACTIONS(2747), - [anon_sym_c_ulonglong] = ACTIONS(2747), - [anon_sym_c_float] = ACTIONS(2747), - [anon_sym_c_double] = ACTIONS(2747), - [anon_sym_c_longdouble] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_yield] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_errdefer] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_expand] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_DOT] = ACTIONS(2745), - [anon_sym_true] = ACTIONS(2747), - [anon_sym_false] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_undefined] = ACTIONS(2747), - [sym_sink] = ACTIONS(2747), - [sym_integer] = ACTIONS(2747), - [sym_float] = ACTIONS(2745), - [anon_sym_DQUOTE] = ACTIONS(2745), - [sym_multiline_string] = ACTIONS(2745), - [sym_character] = ACTIONS(2745), + [STATE(1168)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1189), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2743), + }, + [STATE(1169)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2152), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1170)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2265), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2745), }, - [STATE(1143)] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2751), - [anon_sym_import] = ACTIONS(2751), - [anon_sym_test] = ACTIONS(2751), - [anon_sym_hide] = ACTIONS(2751), - [anon_sym_func] = ACTIONS(2751), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_RPAREN] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_DOLLAR] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_void] = ACTIONS(2751), - [anon_sym_anyopaque] = ACTIONS(2751), - [anon_sym_bool] = ACTIONS(2751), - [anon_sym_int] = ACTIONS(2751), - [anon_sym_uint] = ACTIONS(2751), - [anon_sym_float] = ACTIONS(2751), - [anon_sym_range] = ACTIONS(2751), - [anon_sym_i8] = ACTIONS(2751), - [anon_sym_i16] = ACTIONS(2751), - [anon_sym_i32] = ACTIONS(2751), - [anon_sym_i64] = ACTIONS(2751), - [anon_sym_u8] = ACTIONS(2751), - [anon_sym_u16] = ACTIONS(2751), - [anon_sym_u32] = ACTIONS(2751), - [anon_sym_u64] = ACTIONS(2751), - [anon_sym_isize] = ACTIONS(2751), - [anon_sym_usize] = ACTIONS(2751), - [anon_sym_f32] = ACTIONS(2751), - [anon_sym_f64] = ACTIONS(2751), - [anon_sym_c_char] = ACTIONS(2751), - [anon_sym_c_schar] = ACTIONS(2751), - [anon_sym_c_uchar] = ACTIONS(2751), - [anon_sym_c_short] = ACTIONS(2751), - [anon_sym_c_ushort] = ACTIONS(2751), - [anon_sym_c_int] = ACTIONS(2751), - [anon_sym_c_uint] = ACTIONS(2751), - [anon_sym_c_long] = ACTIONS(2751), - [anon_sym_c_ulong] = ACTIONS(2751), - [anon_sym_c_longlong] = ACTIONS(2751), - [anon_sym_c_ulonglong] = ACTIONS(2751), - [anon_sym_c_float] = ACTIONS(2751), - [anon_sym_c_double] = ACTIONS(2751), - [anon_sym_c_longdouble] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_yield] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_defer] = ACTIONS(2751), - [anon_sym_errdefer] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_else] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_expand] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_match] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_try] = ACTIONS(2751), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(2751), - [anon_sym_false] = ACTIONS(2751), - [sym_none] = ACTIONS(2751), - [sym_undefined] = ACTIONS(2751), - [sym_sink] = ACTIONS(2751), - [sym_integer] = ACTIONS(2751), - [sym_float] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_multiline_string] = ACTIONS(2749), - [sym_character] = ACTIONS(2749), + [STATE(1171)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2747), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1172)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(94), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1173), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2749), }, - [STATE(1144)] = { - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2755), - [anon_sym_import] = ACTIONS(2755), - [anon_sym_test] = ACTIONS(2755), - [anon_sym_hide] = ACTIONS(2755), - [anon_sym_func] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_DOLLAR] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_void] = ACTIONS(2755), - [anon_sym_anyopaque] = ACTIONS(2755), - [anon_sym_bool] = ACTIONS(2755), - [anon_sym_int] = ACTIONS(2755), - [anon_sym_uint] = ACTIONS(2755), - [anon_sym_float] = ACTIONS(2755), - [anon_sym_range] = ACTIONS(2755), - [anon_sym_i8] = ACTIONS(2755), - [anon_sym_i16] = ACTIONS(2755), - [anon_sym_i32] = ACTIONS(2755), - [anon_sym_i64] = ACTIONS(2755), - [anon_sym_u8] = ACTIONS(2755), - [anon_sym_u16] = ACTIONS(2755), - [anon_sym_u32] = ACTIONS(2755), - [anon_sym_u64] = ACTIONS(2755), - [anon_sym_isize] = ACTIONS(2755), - [anon_sym_usize] = ACTIONS(2755), - [anon_sym_f32] = ACTIONS(2755), - [anon_sym_f64] = ACTIONS(2755), - [anon_sym_c_char] = ACTIONS(2755), - [anon_sym_c_schar] = ACTIONS(2755), - [anon_sym_c_uchar] = ACTIONS(2755), - [anon_sym_c_short] = ACTIONS(2755), - [anon_sym_c_ushort] = ACTIONS(2755), - [anon_sym_c_int] = ACTIONS(2755), - [anon_sym_c_uint] = ACTIONS(2755), - [anon_sym_c_long] = ACTIONS(2755), - [anon_sym_c_ulong] = ACTIONS(2755), - [anon_sym_c_longlong] = ACTIONS(2755), - [anon_sym_c_ulonglong] = ACTIONS(2755), - [anon_sym_c_float] = ACTIONS(2755), - [anon_sym_c_double] = ACTIONS(2755), - [anon_sym_c_longdouble] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_yield] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_defer] = ACTIONS(2755), - [anon_sym_errdefer] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_else] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_expand] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2755), - [anon_sym_DOT] = ACTIONS(2753), - [anon_sym_true] = ACTIONS(2755), - [anon_sym_false] = ACTIONS(2755), - [sym_none] = ACTIONS(2755), - [sym_undefined] = ACTIONS(2755), - [sym_sink] = ACTIONS(2755), - [sym_integer] = ACTIONS(2755), - [sym_float] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym_multiline_string] = ACTIONS(2753), - [sym_character] = ACTIONS(2753), + [STATE(1173)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_block] = STATE(107), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2753), + [sym__newline] = ACTIONS(447), }, - [STATE(1145)] = { - [ts_builtin_sym_end] = ACTIONS(2757), - [sym_identifier] = ACTIONS(2759), - [anon_sym_import] = ACTIONS(2759), - [anon_sym_test] = ACTIONS(2759), - [anon_sym_hide] = ACTIONS(2759), - [anon_sym_func] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_DOLLAR] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_void] = ACTIONS(2759), - [anon_sym_anyopaque] = ACTIONS(2759), - [anon_sym_bool] = ACTIONS(2759), - [anon_sym_int] = ACTIONS(2759), - [anon_sym_uint] = ACTIONS(2759), - [anon_sym_float] = ACTIONS(2759), - [anon_sym_range] = ACTIONS(2759), - [anon_sym_i8] = ACTIONS(2759), - [anon_sym_i16] = ACTIONS(2759), - [anon_sym_i32] = ACTIONS(2759), - [anon_sym_i64] = ACTIONS(2759), - [anon_sym_u8] = ACTIONS(2759), - [anon_sym_u16] = ACTIONS(2759), - [anon_sym_u32] = ACTIONS(2759), - [anon_sym_u64] = ACTIONS(2759), - [anon_sym_isize] = ACTIONS(2759), - [anon_sym_usize] = ACTIONS(2759), - [anon_sym_f32] = ACTIONS(2759), - [anon_sym_f64] = ACTIONS(2759), - [anon_sym_c_char] = ACTIONS(2759), - [anon_sym_c_schar] = ACTIONS(2759), - [anon_sym_c_uchar] = ACTIONS(2759), - [anon_sym_c_short] = ACTIONS(2759), - [anon_sym_c_ushort] = ACTIONS(2759), - [anon_sym_c_int] = ACTIONS(2759), - [anon_sym_c_uint] = ACTIONS(2759), - [anon_sym_c_long] = ACTIONS(2759), - [anon_sym_c_ulong] = ACTIONS(2759), - [anon_sym_c_longlong] = ACTIONS(2759), - [anon_sym_c_ulonglong] = ACTIONS(2759), - [anon_sym_c_float] = ACTIONS(2759), - [anon_sym_c_double] = ACTIONS(2759), - [anon_sym_c_longdouble] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_yield] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_defer] = ACTIONS(2759), - [anon_sym_errdefer] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_else] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_expand] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_match] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2759), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_true] = ACTIONS(2759), - [anon_sym_false] = ACTIONS(2759), - [sym_none] = ACTIONS(2759), - [sym_undefined] = ACTIONS(2759), - [sym_sink] = ACTIONS(2759), - [sym_integer] = ACTIONS(2759), - [sym_float] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(2757), - [sym_multiline_string] = ACTIONS(2757), - [sym_character] = ACTIONS(2757), + [STATE(1174)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2253), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1398), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2751), + }, + [STATE(1175)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1176)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1036), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2755), + }, + [STATE(1177)] = { + [sym_type] = STATE(611), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(253), + }, + [STATE(1178)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1037), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2753), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2757), }, - [STATE(1146)] = { - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2763), - [anon_sym_import] = ACTIONS(2763), - [anon_sym_test] = ACTIONS(2763), - [anon_sym_hide] = ACTIONS(2763), - [anon_sym_func] = ACTIONS(2763), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_RPAREN] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_DOLLAR] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_void] = ACTIONS(2763), - [anon_sym_anyopaque] = ACTIONS(2763), - [anon_sym_bool] = ACTIONS(2763), - [anon_sym_int] = ACTIONS(2763), - [anon_sym_uint] = ACTIONS(2763), - [anon_sym_float] = ACTIONS(2763), - [anon_sym_range] = ACTIONS(2763), - [anon_sym_i8] = ACTIONS(2763), - [anon_sym_i16] = ACTIONS(2763), - [anon_sym_i32] = ACTIONS(2763), - [anon_sym_i64] = ACTIONS(2763), - [anon_sym_u8] = ACTIONS(2763), - [anon_sym_u16] = ACTIONS(2763), - [anon_sym_u32] = ACTIONS(2763), - [anon_sym_u64] = ACTIONS(2763), - [anon_sym_isize] = ACTIONS(2763), - [anon_sym_usize] = ACTIONS(2763), - [anon_sym_f32] = ACTIONS(2763), - [anon_sym_f64] = ACTIONS(2763), - [anon_sym_c_char] = ACTIONS(2763), - [anon_sym_c_schar] = ACTIONS(2763), - [anon_sym_c_uchar] = ACTIONS(2763), - [anon_sym_c_short] = ACTIONS(2763), - [anon_sym_c_ushort] = ACTIONS(2763), - [anon_sym_c_int] = ACTIONS(2763), - [anon_sym_c_uint] = ACTIONS(2763), - [anon_sym_c_long] = ACTIONS(2763), - [anon_sym_c_ulong] = ACTIONS(2763), - [anon_sym_c_longlong] = ACTIONS(2763), - [anon_sym_c_ulonglong] = ACTIONS(2763), - [anon_sym_c_float] = ACTIONS(2763), - [anon_sym_c_double] = ACTIONS(2763), - [anon_sym_c_longdouble] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_yield] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_defer] = ACTIONS(2763), - [anon_sym_errdefer] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_else] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_expand] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_true] = ACTIONS(2763), - [anon_sym_false] = ACTIONS(2763), - [sym_none] = ACTIONS(2763), - [sym_undefined] = ACTIONS(2763), - [sym_sink] = ACTIONS(2763), - [sym_integer] = ACTIONS(2763), - [sym_float] = ACTIONS(2761), - [anon_sym_DQUOTE] = ACTIONS(2761), - [sym_multiline_string] = ACTIONS(2761), - [sym_character] = ACTIONS(2761), + [STATE(1179)] = { + [sym_type] = STATE(613), + [sym__type_atom] = STATE(648), + [sym_named_type] = STATE(648), + [sym_optional_type] = STATE(648), + [sym_pointer_type] = STATE(648), + [sym_array_type] = STATE(648), + [sym_function_type] = STATE(648), + [sym_builtin_type] = STATE(648), + [sym_qualified_identifier] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(253), + [sym_identifier] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(258), + [anon_sym_test] = ACTIONS(258), + [anon_sym_hide] = ACTIONS(258), + [anon_sym_func] = ACTIONS(1613), + [anon_sym_c_func] = ACTIONS(1613), + [anon_sym_LPAREN] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(253), + [anon_sym_DASH] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_QMARK] = ACTIONS(1661), + [anon_sym_AT] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1675), + [anon_sym_LBRACK] = ACTIONS(1669), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(253), + [anon_sym_else] = ACTIONS(258), + [anon_sym_DOT_DOT] = ACTIONS(258), + [anon_sym_DOT_DOT_EQ] = ACTIONS(253), + [anon_sym_orelse] = ACTIONS(258), + [anon_sym_catch] = ACTIONS(258), + [anon_sym_or] = ACTIONS(258), + [anon_sym_and] = ACTIONS(258), + [anon_sym_EQ_EQ] = ACTIONS(253), + [anon_sym_BANG_EQ] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_LT_EQ] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(258), + [anon_sym_GT_EQ] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), + [anon_sym_xor] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(258), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_LT_LT_PIPE] = ACTIONS(253), + [anon_sym_PLUS] = ACTIONS(253), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_DOT] = ACTIONS(258), + [anon_sym_CARET] = ACTIONS(253), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2761), + [sym__newline] = ACTIONS(253), }, - [STATE(1147)] = { - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2767), - [anon_sym_import] = ACTIONS(2767), - [anon_sym_test] = ACTIONS(2767), - [anon_sym_hide] = ACTIONS(2767), - [anon_sym_func] = ACTIONS(2767), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2765), + [STATE(1180)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2354), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1181)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1182)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2447), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_field_initializer] = STATE(3299), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1120), + [sym_identifier] = ACTIONS(2188), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2759), + }, + [STATE(1183)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(2761), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1877), + }, + [STATE(1184)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_void] = ACTIONS(2767), - [anon_sym_anyopaque] = ACTIONS(2767), - [anon_sym_bool] = ACTIONS(2767), - [anon_sym_int] = ACTIONS(2767), - [anon_sym_uint] = ACTIONS(2767), - [anon_sym_float] = ACTIONS(2767), - [anon_sym_range] = ACTIONS(2767), - [anon_sym_i8] = ACTIONS(2767), - [anon_sym_i16] = ACTIONS(2767), - [anon_sym_i32] = ACTIONS(2767), - [anon_sym_i64] = ACTIONS(2767), - [anon_sym_u8] = ACTIONS(2767), - [anon_sym_u16] = ACTIONS(2767), - [anon_sym_u32] = ACTIONS(2767), - [anon_sym_u64] = ACTIONS(2767), - [anon_sym_isize] = ACTIONS(2767), - [anon_sym_usize] = ACTIONS(2767), - [anon_sym_f32] = ACTIONS(2767), - [anon_sym_f64] = ACTIONS(2767), - [anon_sym_c_char] = ACTIONS(2767), - [anon_sym_c_schar] = ACTIONS(2767), - [anon_sym_c_uchar] = ACTIONS(2767), - [anon_sym_c_short] = ACTIONS(2767), - [anon_sym_c_ushort] = ACTIONS(2767), - [anon_sym_c_int] = ACTIONS(2767), - [anon_sym_c_uint] = ACTIONS(2767), - [anon_sym_c_long] = ACTIONS(2767), - [anon_sym_c_ulong] = ACTIONS(2767), - [anon_sym_c_longlong] = ACTIONS(2767), - [anon_sym_c_ulonglong] = ACTIONS(2767), - [anon_sym_c_float] = ACTIONS(2767), - [anon_sym_c_double] = ACTIONS(2767), - [anon_sym_c_longdouble] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_defer] = ACTIONS(2767), - [anon_sym_errdefer] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_else] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_expand] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_try] = ACTIONS(2767), - [anon_sym_DOT] = ACTIONS(2765), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [sym_none] = ACTIONS(2767), - [sym_undefined] = ACTIONS(2767), - [sym_sink] = ACTIONS(2767), - [sym_integer] = ACTIONS(2767), - [sym_float] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_multiline_string] = ACTIONS(2765), - [sym_character] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2765), + [sym__newline] = ACTIONS(447), }, - [STATE(1148)] = { - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2771), - [anon_sym_import] = ACTIONS(2771), - [anon_sym_test] = ACTIONS(2771), - [anon_sym_hide] = ACTIONS(2771), - [anon_sym_func] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_DOLLAR] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_void] = ACTIONS(2771), - [anon_sym_anyopaque] = ACTIONS(2771), - [anon_sym_bool] = ACTIONS(2771), - [anon_sym_int] = ACTIONS(2771), - [anon_sym_uint] = ACTIONS(2771), - [anon_sym_float] = ACTIONS(2771), - [anon_sym_range] = ACTIONS(2771), - [anon_sym_i8] = ACTIONS(2771), - [anon_sym_i16] = ACTIONS(2771), - [anon_sym_i32] = ACTIONS(2771), - [anon_sym_i64] = ACTIONS(2771), - [anon_sym_u8] = ACTIONS(2771), - [anon_sym_u16] = ACTIONS(2771), - [anon_sym_u32] = ACTIONS(2771), - [anon_sym_u64] = ACTIONS(2771), - [anon_sym_isize] = ACTIONS(2771), - [anon_sym_usize] = ACTIONS(2771), - [anon_sym_f32] = ACTIONS(2771), - [anon_sym_f64] = ACTIONS(2771), - [anon_sym_c_char] = ACTIONS(2771), - [anon_sym_c_schar] = ACTIONS(2771), - [anon_sym_c_uchar] = ACTIONS(2771), - [anon_sym_c_short] = ACTIONS(2771), - [anon_sym_c_ushort] = ACTIONS(2771), - [anon_sym_c_int] = ACTIONS(2771), - [anon_sym_c_uint] = ACTIONS(2771), - [anon_sym_c_long] = ACTIONS(2771), - [anon_sym_c_ulong] = ACTIONS(2771), - [anon_sym_c_longlong] = ACTIONS(2771), - [anon_sym_c_ulonglong] = ACTIONS(2771), - [anon_sym_c_float] = ACTIONS(2771), - [anon_sym_c_double] = ACTIONS(2771), - [anon_sym_c_longdouble] = ACTIONS(2771), - [anon_sym_return] = ACTIONS(2771), - [anon_sym_yield] = ACTIONS(2771), - [anon_sym_break] = ACTIONS(2771), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_defer] = ACTIONS(2771), - [anon_sym_errdefer] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_else] = ACTIONS(2771), - [anon_sym_while] = ACTIONS(2771), - [anon_sym_expand] = ACTIONS(2771), - [anon_sym_for] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2771), - [anon_sym_DOT] = ACTIONS(2769), - [anon_sym_true] = ACTIONS(2771), - [anon_sym_false] = ACTIONS(2771), - [sym_none] = ACTIONS(2771), - [sym_undefined] = ACTIONS(2771), - [sym_sink] = ACTIONS(2771), - [sym_integer] = ACTIONS(2771), - [sym_float] = ACTIONS(2769), - [anon_sym_DQUOTE] = ACTIONS(2769), - [sym_multiline_string] = ACTIONS(2769), - [sym_character] = ACTIONS(2769), + [STATE(1185)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2442), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1188), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2769), }, - [STATE(1149)] = { - [ts_builtin_sym_end] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2775), - [anon_sym_import] = ACTIONS(2775), - [anon_sym_test] = ACTIONS(2775), - [anon_sym_hide] = ACTIONS(2775), - [anon_sym_func] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_LPAREN] = ACTIONS(2773), - [anon_sym_RPAREN] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_DOLLAR] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_void] = ACTIONS(2775), - [anon_sym_anyopaque] = ACTIONS(2775), - [anon_sym_bool] = ACTIONS(2775), - [anon_sym_int] = ACTIONS(2775), - [anon_sym_uint] = ACTIONS(2775), - [anon_sym_float] = ACTIONS(2775), - [anon_sym_range] = ACTIONS(2775), - [anon_sym_i8] = ACTIONS(2775), - [anon_sym_i16] = ACTIONS(2775), - [anon_sym_i32] = ACTIONS(2775), - [anon_sym_i64] = ACTIONS(2775), - [anon_sym_u8] = ACTIONS(2775), - [anon_sym_u16] = ACTIONS(2775), - [anon_sym_u32] = ACTIONS(2775), - [anon_sym_u64] = ACTIONS(2775), - [anon_sym_isize] = ACTIONS(2775), - [anon_sym_usize] = ACTIONS(2775), - [anon_sym_f32] = ACTIONS(2775), - [anon_sym_f64] = ACTIONS(2775), - [anon_sym_c_char] = ACTIONS(2775), - [anon_sym_c_schar] = ACTIONS(2775), - [anon_sym_c_uchar] = ACTIONS(2775), - [anon_sym_c_short] = ACTIONS(2775), - [anon_sym_c_ushort] = ACTIONS(2775), - [anon_sym_c_int] = ACTIONS(2775), - [anon_sym_c_uint] = ACTIONS(2775), - [anon_sym_c_long] = ACTIONS(2775), - [anon_sym_c_ulong] = ACTIONS(2775), - [anon_sym_c_longlong] = ACTIONS(2775), - [anon_sym_c_ulonglong] = ACTIONS(2775), - [anon_sym_c_float] = ACTIONS(2775), - [anon_sym_c_double] = ACTIONS(2775), - [anon_sym_c_longdouble] = ACTIONS(2775), - [anon_sym_return] = ACTIONS(2775), - [anon_sym_yield] = ACTIONS(2775), - [anon_sym_break] = ACTIONS(2775), - [anon_sym_continue] = ACTIONS(2775), - [anon_sym_defer] = ACTIONS(2775), - [anon_sym_errdefer] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_else] = ACTIONS(2775), - [anon_sym_while] = ACTIONS(2775), - [anon_sym_expand] = ACTIONS(2775), - [anon_sym_for] = ACTIONS(2775), - [anon_sym_match] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2775), - [anon_sym_DOT] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2775), - [anon_sym_false] = ACTIONS(2775), - [sym_none] = ACTIONS(2775), - [sym_undefined] = ACTIONS(2775), - [sym_sink] = ACTIONS(2775), - [sym_integer] = ACTIONS(2775), - [sym_float] = ACTIONS(2773), - [anon_sym_DQUOTE] = ACTIONS(2773), - [sym_multiline_string] = ACTIONS(2773), - [sym_character] = ACTIONS(2773), + [STATE(1186)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2355), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2771), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2773), }, - [STATE(1150)] = { - [ts_builtin_sym_end] = ACTIONS(2777), - [sym_identifier] = ACTIONS(2779), - [anon_sym_import] = ACTIONS(2779), - [anon_sym_test] = ACTIONS(2779), - [anon_sym_hide] = ACTIONS(2779), - [anon_sym_func] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_LPAREN] = ACTIONS(2777), - [anon_sym_RPAREN] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_DOLLAR] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_void] = ACTIONS(2779), - [anon_sym_anyopaque] = ACTIONS(2779), - [anon_sym_bool] = ACTIONS(2779), - [anon_sym_int] = ACTIONS(2779), - [anon_sym_uint] = ACTIONS(2779), - [anon_sym_float] = ACTIONS(2779), - [anon_sym_range] = ACTIONS(2779), - [anon_sym_i8] = ACTIONS(2779), - [anon_sym_i16] = ACTIONS(2779), - [anon_sym_i32] = ACTIONS(2779), - [anon_sym_i64] = ACTIONS(2779), - [anon_sym_u8] = ACTIONS(2779), - [anon_sym_u16] = ACTIONS(2779), - [anon_sym_u32] = ACTIONS(2779), - [anon_sym_u64] = ACTIONS(2779), - [anon_sym_isize] = ACTIONS(2779), - [anon_sym_usize] = ACTIONS(2779), - [anon_sym_f32] = ACTIONS(2779), - [anon_sym_f64] = ACTIONS(2779), - [anon_sym_c_char] = ACTIONS(2779), - [anon_sym_c_schar] = ACTIONS(2779), - [anon_sym_c_uchar] = ACTIONS(2779), - [anon_sym_c_short] = ACTIONS(2779), - [anon_sym_c_ushort] = ACTIONS(2779), - [anon_sym_c_int] = ACTIONS(2779), - [anon_sym_c_uint] = ACTIONS(2779), - [anon_sym_c_long] = ACTIONS(2779), - [anon_sym_c_ulong] = ACTIONS(2779), - [anon_sym_c_longlong] = ACTIONS(2779), - [anon_sym_c_ulonglong] = ACTIONS(2779), - [anon_sym_c_float] = ACTIONS(2779), - [anon_sym_c_double] = ACTIONS(2779), - [anon_sym_c_longdouble] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_yield] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_defer] = ACTIONS(2779), - [anon_sym_errdefer] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_else] = ACTIONS(2779), - [anon_sym_while] = ACTIONS(2779), - [anon_sym_expand] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(2777), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [sym_none] = ACTIONS(2779), - [sym_undefined] = ACTIONS(2779), - [sym_sink] = ACTIONS(2779), - [sym_integer] = ACTIONS(2779), - [sym_float] = ACTIONS(2777), - [anon_sym_DQUOTE] = ACTIONS(2777), - [sym_multiline_string] = ACTIONS(2777), - [sym_character] = ACTIONS(2777), + [STATE(1187)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2462), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(3217), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2775), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2777), }, - [STATE(1151)] = { - [ts_builtin_sym_end] = ACTIONS(2781), - [sym_identifier] = ACTIONS(2783), - [anon_sym_import] = ACTIONS(2783), - [anon_sym_test] = ACTIONS(2783), - [anon_sym_hide] = ACTIONS(2783), - [anon_sym_func] = ACTIONS(2783), - [anon_sym_BANG] = ACTIONS(2781), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_LPAREN] = ACTIONS(2781), + [STATE(1188)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2452), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1725), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_DOT_DOT] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2725), + }, + [STATE(1189)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_DOLLAR] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_void] = ACTIONS(2783), - [anon_sym_anyopaque] = ACTIONS(2783), - [anon_sym_bool] = ACTIONS(2783), - [anon_sym_int] = ACTIONS(2783), - [anon_sym_uint] = ACTIONS(2783), - [anon_sym_float] = ACTIONS(2783), - [anon_sym_range] = ACTIONS(2783), - [anon_sym_i8] = ACTIONS(2783), - [anon_sym_i16] = ACTIONS(2783), - [anon_sym_i32] = ACTIONS(2783), - [anon_sym_i64] = ACTIONS(2783), - [anon_sym_u8] = ACTIONS(2783), - [anon_sym_u16] = ACTIONS(2783), - [anon_sym_u32] = ACTIONS(2783), - [anon_sym_u64] = ACTIONS(2783), - [anon_sym_isize] = ACTIONS(2783), - [anon_sym_usize] = ACTIONS(2783), - [anon_sym_f32] = ACTIONS(2783), - [anon_sym_f64] = ACTIONS(2783), - [anon_sym_c_char] = ACTIONS(2783), - [anon_sym_c_schar] = ACTIONS(2783), - [anon_sym_c_uchar] = ACTIONS(2783), - [anon_sym_c_short] = ACTIONS(2783), - [anon_sym_c_ushort] = ACTIONS(2783), - [anon_sym_c_int] = ACTIONS(2783), - [anon_sym_c_uint] = ACTIONS(2783), - [anon_sym_c_long] = ACTIONS(2783), - [anon_sym_c_ulong] = ACTIONS(2783), - [anon_sym_c_longlong] = ACTIONS(2783), - [anon_sym_c_ulonglong] = ACTIONS(2783), - [anon_sym_c_float] = ACTIONS(2783), - [anon_sym_c_double] = ACTIONS(2783), - [anon_sym_c_longdouble] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_yield] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_defer] = ACTIONS(2783), - [anon_sym_errdefer] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_else] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_expand] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_match] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_DOT] = ACTIONS(2781), - [anon_sym_true] = ACTIONS(2783), - [anon_sym_false] = ACTIONS(2783), - [sym_none] = ACTIONS(2783), - [sym_undefined] = ACTIONS(2783), - [sym_sink] = ACTIONS(2783), - [sym_integer] = ACTIONS(2783), - [sym_float] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2781), - [sym_multiline_string] = ACTIONS(2781), - [sym_character] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2781), + [sym__newline] = ACTIONS(447), }, - [STATE(1152)] = { - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2787), - [anon_sym_import] = ACTIONS(2787), - [anon_sym_test] = ACTIONS(2787), - [anon_sym_hide] = ACTIONS(2787), - [anon_sym_func] = ACTIONS(2787), + [STATE(1190)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2145), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1193), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_RPAREN] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_DOLLAR] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_void] = ACTIONS(2787), - [anon_sym_anyopaque] = ACTIONS(2787), - [anon_sym_bool] = ACTIONS(2787), - [anon_sym_int] = ACTIONS(2787), - [anon_sym_uint] = ACTIONS(2787), - [anon_sym_float] = ACTIONS(2787), - [anon_sym_range] = ACTIONS(2787), - [anon_sym_i8] = ACTIONS(2787), - [anon_sym_i16] = ACTIONS(2787), - [anon_sym_i32] = ACTIONS(2787), - [anon_sym_i64] = ACTIONS(2787), - [anon_sym_u8] = ACTIONS(2787), - [anon_sym_u16] = ACTIONS(2787), - [anon_sym_u32] = ACTIONS(2787), - [anon_sym_u64] = ACTIONS(2787), - [anon_sym_isize] = ACTIONS(2787), - [anon_sym_usize] = ACTIONS(2787), - [anon_sym_f32] = ACTIONS(2787), - [anon_sym_f64] = ACTIONS(2787), - [anon_sym_c_char] = ACTIONS(2787), - [anon_sym_c_schar] = ACTIONS(2787), - [anon_sym_c_uchar] = ACTIONS(2787), - [anon_sym_c_short] = ACTIONS(2787), - [anon_sym_c_ushort] = ACTIONS(2787), - [anon_sym_c_int] = ACTIONS(2787), - [anon_sym_c_uint] = ACTIONS(2787), - [anon_sym_c_long] = ACTIONS(2787), - [anon_sym_c_ulong] = ACTIONS(2787), - [anon_sym_c_longlong] = ACTIONS(2787), - [anon_sym_c_ulonglong] = ACTIONS(2787), - [anon_sym_c_float] = ACTIONS(2787), - [anon_sym_c_double] = ACTIONS(2787), - [anon_sym_c_longdouble] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_defer] = ACTIONS(2787), - [anon_sym_errdefer] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_else] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_expand] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_match] = ACTIONS(2787), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_try] = ACTIONS(2787), - [anon_sym_DOT] = ACTIONS(2785), - [anon_sym_true] = ACTIONS(2787), - [anon_sym_false] = ACTIONS(2787), - [sym_none] = ACTIONS(2787), - [sym_undefined] = ACTIONS(2787), - [sym_sink] = ACTIONS(2787), - [sym_integer] = ACTIONS(2787), - [sym_float] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_multiline_string] = ACTIONS(2785), - [sym_character] = ACTIONS(2785), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2785), - }, - [STATE(1153)] = { - [ts_builtin_sym_end] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2791), - [anon_sym_import] = ACTIONS(2791), - [anon_sym_test] = ACTIONS(2791), - [anon_sym_hide] = ACTIONS(2791), - [anon_sym_func] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_RPAREN] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DOLLAR] = ACTIONS(2789), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_void] = ACTIONS(2791), - [anon_sym_anyopaque] = ACTIONS(2791), - [anon_sym_bool] = ACTIONS(2791), - [anon_sym_int] = ACTIONS(2791), - [anon_sym_uint] = ACTIONS(2791), - [anon_sym_float] = ACTIONS(2791), - [anon_sym_range] = ACTIONS(2791), - [anon_sym_i8] = ACTIONS(2791), - [anon_sym_i16] = ACTIONS(2791), - [anon_sym_i32] = ACTIONS(2791), - [anon_sym_i64] = ACTIONS(2791), - [anon_sym_u8] = ACTIONS(2791), - [anon_sym_u16] = ACTIONS(2791), - [anon_sym_u32] = ACTIONS(2791), - [anon_sym_u64] = ACTIONS(2791), - [anon_sym_isize] = ACTIONS(2791), - [anon_sym_usize] = ACTIONS(2791), - [anon_sym_f32] = ACTIONS(2791), - [anon_sym_f64] = ACTIONS(2791), - [anon_sym_c_char] = ACTIONS(2791), - [anon_sym_c_schar] = ACTIONS(2791), - [anon_sym_c_uchar] = ACTIONS(2791), - [anon_sym_c_short] = ACTIONS(2791), - [anon_sym_c_ushort] = ACTIONS(2791), - [anon_sym_c_int] = ACTIONS(2791), - [anon_sym_c_uint] = ACTIONS(2791), - [anon_sym_c_long] = ACTIONS(2791), - [anon_sym_c_ulong] = ACTIONS(2791), - [anon_sym_c_longlong] = ACTIONS(2791), - [anon_sym_c_ulonglong] = ACTIONS(2791), - [anon_sym_c_float] = ACTIONS(2791), - [anon_sym_c_double] = ACTIONS(2791), - [anon_sym_c_longdouble] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_yield] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_defer] = ACTIONS(2791), - [anon_sym_errdefer] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_else] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_expand] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_match] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2791), - [anon_sym_DOT] = ACTIONS(2789), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [sym_none] = ACTIONS(2791), - [sym_undefined] = ACTIONS(2791), - [sym_sink] = ACTIONS(2791), - [sym_integer] = ACTIONS(2791), - [sym_float] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2789), - [sym_multiline_string] = ACTIONS(2789), - [sym_character] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2789), - }, - [STATE(1154)] = { - [ts_builtin_sym_end] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2795), - [anon_sym_import] = ACTIONS(2795), - [anon_sym_test] = ACTIONS(2795), - [anon_sym_hide] = ACTIONS(2795), - [anon_sym_func] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2793), - [anon_sym_RPAREN] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_DOLLAR] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_void] = ACTIONS(2795), - [anon_sym_anyopaque] = ACTIONS(2795), - [anon_sym_bool] = ACTIONS(2795), - [anon_sym_int] = ACTIONS(2795), - [anon_sym_uint] = ACTIONS(2795), - [anon_sym_float] = ACTIONS(2795), - [anon_sym_range] = ACTIONS(2795), - [anon_sym_i8] = ACTIONS(2795), - [anon_sym_i16] = ACTIONS(2795), - [anon_sym_i32] = ACTIONS(2795), - [anon_sym_i64] = ACTIONS(2795), - [anon_sym_u8] = ACTIONS(2795), - [anon_sym_u16] = ACTIONS(2795), - [anon_sym_u32] = ACTIONS(2795), - [anon_sym_u64] = ACTIONS(2795), - [anon_sym_isize] = ACTIONS(2795), - [anon_sym_usize] = ACTIONS(2795), - [anon_sym_f32] = ACTIONS(2795), - [anon_sym_f64] = ACTIONS(2795), - [anon_sym_c_char] = ACTIONS(2795), - [anon_sym_c_schar] = ACTIONS(2795), - [anon_sym_c_uchar] = ACTIONS(2795), - [anon_sym_c_short] = ACTIONS(2795), - [anon_sym_c_ushort] = ACTIONS(2795), - [anon_sym_c_int] = ACTIONS(2795), - [anon_sym_c_uint] = ACTIONS(2795), - [anon_sym_c_long] = ACTIONS(2795), - [anon_sym_c_ulong] = ACTIONS(2795), - [anon_sym_c_longlong] = ACTIONS(2795), - [anon_sym_c_ulonglong] = ACTIONS(2795), - [anon_sym_c_float] = ACTIONS(2795), - [anon_sym_c_double] = ACTIONS(2795), - [anon_sym_c_longdouble] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_yield] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_defer] = ACTIONS(2795), - [anon_sym_errdefer] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_else] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_expand] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_match] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2795), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_true] = ACTIONS(2795), - [anon_sym_false] = ACTIONS(2795), - [sym_none] = ACTIONS(2795), - [sym_undefined] = ACTIONS(2795), - [sym_sink] = ACTIONS(2795), - [sym_integer] = ACTIONS(2795), - [sym_float] = ACTIONS(2793), - [anon_sym_DQUOTE] = ACTIONS(2793), - [sym_multiline_string] = ACTIONS(2793), - [sym_character] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2793), }, - [STATE(1155)] = { - [ts_builtin_sym_end] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2799), - [anon_sym_import] = ACTIONS(2799), - [anon_sym_test] = ACTIONS(2799), - [anon_sym_hide] = ACTIONS(2799), - [anon_sym_func] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_RPAREN] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_DOLLAR] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_void] = ACTIONS(2799), - [anon_sym_anyopaque] = ACTIONS(2799), - [anon_sym_bool] = ACTIONS(2799), - [anon_sym_int] = ACTIONS(2799), - [anon_sym_uint] = ACTIONS(2799), - [anon_sym_float] = ACTIONS(2799), - [anon_sym_range] = ACTIONS(2799), - [anon_sym_i8] = ACTIONS(2799), - [anon_sym_i16] = ACTIONS(2799), - [anon_sym_i32] = ACTIONS(2799), - [anon_sym_i64] = ACTIONS(2799), - [anon_sym_u8] = ACTIONS(2799), - [anon_sym_u16] = ACTIONS(2799), - [anon_sym_u32] = ACTIONS(2799), - [anon_sym_u64] = ACTIONS(2799), - [anon_sym_isize] = ACTIONS(2799), - [anon_sym_usize] = ACTIONS(2799), - [anon_sym_f32] = ACTIONS(2799), - [anon_sym_f64] = ACTIONS(2799), - [anon_sym_c_char] = ACTIONS(2799), - [anon_sym_c_schar] = ACTIONS(2799), - [anon_sym_c_uchar] = ACTIONS(2799), - [anon_sym_c_short] = ACTIONS(2799), - [anon_sym_c_ushort] = ACTIONS(2799), - [anon_sym_c_int] = ACTIONS(2799), - [anon_sym_c_uint] = ACTIONS(2799), - [anon_sym_c_long] = ACTIONS(2799), - [anon_sym_c_ulong] = ACTIONS(2799), - [anon_sym_c_longlong] = ACTIONS(2799), - [anon_sym_c_ulonglong] = ACTIONS(2799), - [anon_sym_c_float] = ACTIONS(2799), - [anon_sym_c_double] = ACTIONS(2799), - [anon_sym_c_longdouble] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_yield] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_defer] = ACTIONS(2799), - [anon_sym_errdefer] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_else] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_expand] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_match] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2799), - [anon_sym_DOT] = ACTIONS(2797), - [anon_sym_true] = ACTIONS(2799), - [anon_sym_false] = ACTIONS(2799), - [sym_none] = ACTIONS(2799), - [sym_undefined] = ACTIONS(2799), - [sym_sink] = ACTIONS(2799), - [sym_integer] = ACTIONS(2799), - [sym_float] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2797), - [sym_multiline_string] = ACTIONS(2797), - [sym_character] = ACTIONS(2797), + [STATE(1191)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1081), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2795), + }, + [STATE(1192)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_RPAREN] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2797), }, - [STATE(1156)] = { - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [anon_sym_import] = ACTIONS(2803), - [anon_sym_test] = ACTIONS(2803), - [anon_sym_hide] = ACTIONS(2803), - [anon_sym_func] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_RPAREN] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_DOLLAR] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_void] = ACTIONS(2803), - [anon_sym_anyopaque] = ACTIONS(2803), - [anon_sym_bool] = ACTIONS(2803), - [anon_sym_int] = ACTIONS(2803), - [anon_sym_uint] = ACTIONS(2803), - [anon_sym_float] = ACTIONS(2803), - [anon_sym_range] = ACTIONS(2803), - [anon_sym_i8] = ACTIONS(2803), - [anon_sym_i16] = ACTIONS(2803), - [anon_sym_i32] = ACTIONS(2803), - [anon_sym_i64] = ACTIONS(2803), - [anon_sym_u8] = ACTIONS(2803), - [anon_sym_u16] = ACTIONS(2803), - [anon_sym_u32] = ACTIONS(2803), - [anon_sym_u64] = ACTIONS(2803), - [anon_sym_isize] = ACTIONS(2803), - [anon_sym_usize] = ACTIONS(2803), - [anon_sym_f32] = ACTIONS(2803), - [anon_sym_f64] = ACTIONS(2803), - [anon_sym_c_char] = ACTIONS(2803), - [anon_sym_c_schar] = ACTIONS(2803), - [anon_sym_c_uchar] = ACTIONS(2803), - [anon_sym_c_short] = ACTIONS(2803), - [anon_sym_c_ushort] = ACTIONS(2803), - [anon_sym_c_int] = ACTIONS(2803), - [anon_sym_c_uint] = ACTIONS(2803), - [anon_sym_c_long] = ACTIONS(2803), - [anon_sym_c_ulong] = ACTIONS(2803), - [anon_sym_c_longlong] = ACTIONS(2803), - [anon_sym_c_ulonglong] = ACTIONS(2803), - [anon_sym_c_float] = ACTIONS(2803), - [anon_sym_c_double] = ACTIONS(2803), - [anon_sym_c_longdouble] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_yield] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_defer] = ACTIONS(2803), - [anon_sym_errdefer] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_expand] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_match] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2803), - [anon_sym_DOT] = ACTIONS(2801), - [anon_sym_true] = ACTIONS(2803), - [anon_sym_false] = ACTIONS(2803), - [sym_none] = ACTIONS(2803), - [sym_undefined] = ACTIONS(2803), - [sym_sink] = ACTIONS(2803), - [sym_integer] = ACTIONS(2803), - [sym_float] = ACTIONS(2801), - [anon_sym_DQUOTE] = ACTIONS(2801), - [sym_multiline_string] = ACTIONS(2801), - [sym_character] = ACTIONS(2801), + [STATE(1193)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2152), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2801), + [sym__newline] = ACTIONS(447), }, - [STATE(1157)] = { - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2807), - [anon_sym_import] = ACTIONS(2807), - [anon_sym_test] = ACTIONS(2807), - [anon_sym_hide] = ACTIONS(2807), - [anon_sym_func] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_RPAREN] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_DOLLAR] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_void] = ACTIONS(2807), - [anon_sym_anyopaque] = ACTIONS(2807), - [anon_sym_bool] = ACTIONS(2807), - [anon_sym_int] = ACTIONS(2807), - [anon_sym_uint] = ACTIONS(2807), - [anon_sym_float] = ACTIONS(2807), - [anon_sym_range] = ACTIONS(2807), - [anon_sym_i8] = ACTIONS(2807), - [anon_sym_i16] = ACTIONS(2807), - [anon_sym_i32] = ACTIONS(2807), - [anon_sym_i64] = ACTIONS(2807), - [anon_sym_u8] = ACTIONS(2807), - [anon_sym_u16] = ACTIONS(2807), - [anon_sym_u32] = ACTIONS(2807), - [anon_sym_u64] = ACTIONS(2807), - [anon_sym_isize] = ACTIONS(2807), - [anon_sym_usize] = ACTIONS(2807), - [anon_sym_f32] = ACTIONS(2807), - [anon_sym_f64] = ACTIONS(2807), - [anon_sym_c_char] = ACTIONS(2807), - [anon_sym_c_schar] = ACTIONS(2807), - [anon_sym_c_uchar] = ACTIONS(2807), - [anon_sym_c_short] = ACTIONS(2807), - [anon_sym_c_ushort] = ACTIONS(2807), - [anon_sym_c_int] = ACTIONS(2807), - [anon_sym_c_uint] = ACTIONS(2807), - [anon_sym_c_long] = ACTIONS(2807), - [anon_sym_c_ulong] = ACTIONS(2807), - [anon_sym_c_longlong] = ACTIONS(2807), - [anon_sym_c_ulonglong] = ACTIONS(2807), - [anon_sym_c_float] = ACTIONS(2807), - [anon_sym_c_double] = ACTIONS(2807), - [anon_sym_c_longdouble] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_yield] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_defer] = ACTIONS(2807), - [anon_sym_errdefer] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_expand] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(2805), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [sym_none] = ACTIONS(2807), - [sym_undefined] = ACTIONS(2807), - [sym_sink] = ACTIONS(2807), - [sym_integer] = ACTIONS(2807), - [sym_float] = ACTIONS(2805), - [anon_sym_DQUOTE] = ACTIONS(2805), - [sym_multiline_string] = ACTIONS(2805), - [sym_character] = ACTIONS(2805), + [STATE(1194)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2471), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1209), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2799), + }, + [STATE(1195)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2488), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1196)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_block] = STATE(2145), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1035), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2803), + }, + [STATE(1197)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1198)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2475), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1199)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(588), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1200)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2445), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1201)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2313), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1348), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2521), + }, + [STATE(1202)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2132), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1203)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2314), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1349), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2805), }, - [STATE(1158)] = { - [ts_builtin_sym_end] = ACTIONS(2809), - [sym_identifier] = ACTIONS(2811), - [anon_sym_import] = ACTIONS(2811), - [anon_sym_test] = ACTIONS(2811), - [anon_sym_hide] = ACTIONS(2811), - [anon_sym_func] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2809), - [anon_sym_LBRACK] = ACTIONS(2809), - [anon_sym_void] = ACTIONS(2811), - [anon_sym_anyopaque] = ACTIONS(2811), - [anon_sym_bool] = ACTIONS(2811), - [anon_sym_int] = ACTIONS(2811), - [anon_sym_uint] = ACTIONS(2811), - [anon_sym_float] = ACTIONS(2811), - [anon_sym_range] = ACTIONS(2811), - [anon_sym_i8] = ACTIONS(2811), - [anon_sym_i16] = ACTIONS(2811), - [anon_sym_i32] = ACTIONS(2811), - [anon_sym_i64] = ACTIONS(2811), - [anon_sym_u8] = ACTIONS(2811), - [anon_sym_u16] = ACTIONS(2811), - [anon_sym_u32] = ACTIONS(2811), - [anon_sym_u64] = ACTIONS(2811), - [anon_sym_isize] = ACTIONS(2811), - [anon_sym_usize] = ACTIONS(2811), - [anon_sym_f32] = ACTIONS(2811), - [anon_sym_f64] = ACTIONS(2811), - [anon_sym_c_char] = ACTIONS(2811), - [anon_sym_c_schar] = ACTIONS(2811), - [anon_sym_c_uchar] = ACTIONS(2811), - [anon_sym_c_short] = ACTIONS(2811), - [anon_sym_c_ushort] = ACTIONS(2811), - [anon_sym_c_int] = ACTIONS(2811), - [anon_sym_c_uint] = ACTIONS(2811), - [anon_sym_c_long] = ACTIONS(2811), - [anon_sym_c_ulong] = ACTIONS(2811), - [anon_sym_c_longlong] = ACTIONS(2811), - [anon_sym_c_ulonglong] = ACTIONS(2811), - [anon_sym_c_float] = ACTIONS(2811), - [anon_sym_c_double] = ACTIONS(2811), - [anon_sym_c_longdouble] = ACTIONS(2811), - [anon_sym_return] = ACTIONS(2811), - [anon_sym_yield] = ACTIONS(2811), - [anon_sym_break] = ACTIONS(2811), - [anon_sym_continue] = ACTIONS(2811), - [anon_sym_defer] = ACTIONS(2811), - [anon_sym_errdefer] = ACTIONS(2811), - [anon_sym_if] = ACTIONS(2811), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_while] = ACTIONS(2811), - [anon_sym_expand] = ACTIONS(2811), - [anon_sym_for] = ACTIONS(2811), - [anon_sym_match] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [sym_none] = ACTIONS(2811), - [sym_undefined] = ACTIONS(2811), - [sym_sink] = ACTIONS(2811), - [sym_integer] = ACTIONS(2811), - [sym_float] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_multiline_string] = ACTIONS(2809), - [sym_character] = ACTIONS(2809), + [STATE(1204)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2466), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1205)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2385), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1225), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2807), + }, + [STATE(1206)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2315), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1350), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2809), }, - [STATE(1159)] = { - [ts_builtin_sym_end] = ACTIONS(2813), - [sym_identifier] = ACTIONS(2815), - [anon_sym_import] = ACTIONS(2815), - [anon_sym_test] = ACTIONS(2815), - [anon_sym_hide] = ACTIONS(2815), - [anon_sym_func] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2813), - [anon_sym_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACK] = ACTIONS(2813), - [anon_sym_void] = ACTIONS(2815), - [anon_sym_anyopaque] = ACTIONS(2815), - [anon_sym_bool] = ACTIONS(2815), - [anon_sym_int] = ACTIONS(2815), - [anon_sym_uint] = ACTIONS(2815), - [anon_sym_float] = ACTIONS(2815), - [anon_sym_range] = ACTIONS(2815), - [anon_sym_i8] = ACTIONS(2815), - [anon_sym_i16] = ACTIONS(2815), - [anon_sym_i32] = ACTIONS(2815), - [anon_sym_i64] = ACTIONS(2815), - [anon_sym_u8] = ACTIONS(2815), - [anon_sym_u16] = ACTIONS(2815), - [anon_sym_u32] = ACTIONS(2815), - [anon_sym_u64] = ACTIONS(2815), - [anon_sym_isize] = ACTIONS(2815), - [anon_sym_usize] = ACTIONS(2815), - [anon_sym_f32] = ACTIONS(2815), - [anon_sym_f64] = ACTIONS(2815), - [anon_sym_c_char] = ACTIONS(2815), - [anon_sym_c_schar] = ACTIONS(2815), - [anon_sym_c_uchar] = ACTIONS(2815), - [anon_sym_c_short] = ACTIONS(2815), - [anon_sym_c_ushort] = ACTIONS(2815), - [anon_sym_c_int] = ACTIONS(2815), - [anon_sym_c_uint] = ACTIONS(2815), - [anon_sym_c_long] = ACTIONS(2815), - [anon_sym_c_ulong] = ACTIONS(2815), - [anon_sym_c_longlong] = ACTIONS(2815), - [anon_sym_c_ulonglong] = ACTIONS(2815), - [anon_sym_c_float] = ACTIONS(2815), - [anon_sym_c_double] = ACTIONS(2815), - [anon_sym_c_longdouble] = ACTIONS(2815), - [anon_sym_return] = ACTIONS(2815), - [anon_sym_yield] = ACTIONS(2815), - [anon_sym_break] = ACTIONS(2815), - [anon_sym_continue] = ACTIONS(2815), - [anon_sym_defer] = ACTIONS(2815), - [anon_sym_errdefer] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_while] = ACTIONS(2815), - [anon_sym_expand] = ACTIONS(2815), - [anon_sym_for] = ACTIONS(2815), - [anon_sym_match] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [sym_none] = ACTIONS(2815), - [sym_undefined] = ACTIONS(2815), - [sym_sink] = ACTIONS(2815), - [sym_integer] = ACTIONS(2815), - [sym_float] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_multiline_string] = ACTIONS(2813), - [sym_character] = ACTIONS(2813), + [STATE(1207)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2316), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1351), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2811), + }, + [STATE(1208)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2317), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1352), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2813), }, - [STATE(1160)] = { - [ts_builtin_sym_end] = ACTIONS(2817), - [sym_identifier] = ACTIONS(2819), - [anon_sym_import] = ACTIONS(2819), - [anon_sym_test] = ACTIONS(2819), - [anon_sym_hide] = ACTIONS(2819), - [anon_sym_func] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2817), - [anon_sym_DOLLAR] = ACTIONS(2817), - [anon_sym_LBRACK] = ACTIONS(2817), - [anon_sym_void] = ACTIONS(2819), - [anon_sym_anyopaque] = ACTIONS(2819), - [anon_sym_bool] = ACTIONS(2819), - [anon_sym_int] = ACTIONS(2819), - [anon_sym_uint] = ACTIONS(2819), - [anon_sym_float] = ACTIONS(2819), - [anon_sym_range] = ACTIONS(2819), - [anon_sym_i8] = ACTIONS(2819), - [anon_sym_i16] = ACTIONS(2819), - [anon_sym_i32] = ACTIONS(2819), - [anon_sym_i64] = ACTIONS(2819), - [anon_sym_u8] = ACTIONS(2819), - [anon_sym_u16] = ACTIONS(2819), - [anon_sym_u32] = ACTIONS(2819), - [anon_sym_u64] = ACTIONS(2819), - [anon_sym_isize] = ACTIONS(2819), - [anon_sym_usize] = ACTIONS(2819), - [anon_sym_f32] = ACTIONS(2819), - [anon_sym_f64] = ACTIONS(2819), - [anon_sym_c_char] = ACTIONS(2819), - [anon_sym_c_schar] = ACTIONS(2819), - [anon_sym_c_uchar] = ACTIONS(2819), - [anon_sym_c_short] = ACTIONS(2819), - [anon_sym_c_ushort] = ACTIONS(2819), - [anon_sym_c_int] = ACTIONS(2819), - [anon_sym_c_uint] = ACTIONS(2819), - [anon_sym_c_long] = ACTIONS(2819), - [anon_sym_c_ulong] = ACTIONS(2819), - [anon_sym_c_longlong] = ACTIONS(2819), - [anon_sym_c_ulonglong] = ACTIONS(2819), - [anon_sym_c_float] = ACTIONS(2819), - [anon_sym_c_double] = ACTIONS(2819), - [anon_sym_c_longdouble] = ACTIONS(2819), - [anon_sym_return] = ACTIONS(2819), - [anon_sym_yield] = ACTIONS(2819), - [anon_sym_break] = ACTIONS(2819), - [anon_sym_continue] = ACTIONS(2819), - [anon_sym_defer] = ACTIONS(2819), - [anon_sym_errdefer] = ACTIONS(2819), - [anon_sym_if] = ACTIONS(2819), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_while] = ACTIONS(2819), - [anon_sym_expand] = ACTIONS(2819), - [anon_sym_for] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [sym_none] = ACTIONS(2819), - [sym_undefined] = ACTIONS(2819), - [sym_sink] = ACTIONS(2819), - [sym_integer] = ACTIONS(2819), - [sym_float] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_multiline_string] = ACTIONS(2817), - [sym_character] = ACTIONS(2817), + [STATE(1209)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2468), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1210)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2463), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1211)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2291), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1286), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2815), + }, + [STATE(1212)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2292), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1287), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1877), + }, + [STATE(1213)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2091), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1288), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2817), }, - [STATE(1161)] = { - [ts_builtin_sym_end] = ACTIONS(2821), - [sym_identifier] = ACTIONS(2823), - [anon_sym_import] = ACTIONS(2823), - [anon_sym_test] = ACTIONS(2823), - [anon_sym_hide] = ACTIONS(2823), - [anon_sym_func] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [anon_sym_LBRACK] = ACTIONS(2821), - [anon_sym_void] = ACTIONS(2823), - [anon_sym_anyopaque] = ACTIONS(2823), - [anon_sym_bool] = ACTIONS(2823), - [anon_sym_int] = ACTIONS(2823), - [anon_sym_uint] = ACTIONS(2823), - [anon_sym_float] = ACTIONS(2823), - [anon_sym_range] = ACTIONS(2823), - [anon_sym_i8] = ACTIONS(2823), - [anon_sym_i16] = ACTIONS(2823), - [anon_sym_i32] = ACTIONS(2823), - [anon_sym_i64] = ACTIONS(2823), - [anon_sym_u8] = ACTIONS(2823), - [anon_sym_u16] = ACTIONS(2823), - [anon_sym_u32] = ACTIONS(2823), - [anon_sym_u64] = ACTIONS(2823), - [anon_sym_isize] = ACTIONS(2823), - [anon_sym_usize] = ACTIONS(2823), - [anon_sym_f32] = ACTIONS(2823), - [anon_sym_f64] = ACTIONS(2823), - [anon_sym_c_char] = ACTIONS(2823), - [anon_sym_c_schar] = ACTIONS(2823), - [anon_sym_c_uchar] = ACTIONS(2823), - [anon_sym_c_short] = ACTIONS(2823), - [anon_sym_c_ushort] = ACTIONS(2823), - [anon_sym_c_int] = ACTIONS(2823), - [anon_sym_c_uint] = ACTIONS(2823), - [anon_sym_c_long] = ACTIONS(2823), - [anon_sym_c_ulong] = ACTIONS(2823), - [anon_sym_c_longlong] = ACTIONS(2823), - [anon_sym_c_ulonglong] = ACTIONS(2823), - [anon_sym_c_float] = ACTIONS(2823), - [anon_sym_c_double] = ACTIONS(2823), - [anon_sym_c_longdouble] = ACTIONS(2823), - [anon_sym_return] = ACTIONS(2823), - [anon_sym_yield] = ACTIONS(2823), - [anon_sym_break] = ACTIONS(2823), - [anon_sym_continue] = ACTIONS(2823), - [anon_sym_defer] = ACTIONS(2823), - [anon_sym_errdefer] = ACTIONS(2823), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_while] = ACTIONS(2823), - [anon_sym_expand] = ACTIONS(2823), - [anon_sym_for] = ACTIONS(2823), - [anon_sym_match] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [sym_none] = ACTIONS(2823), - [sym_undefined] = ACTIONS(2823), - [sym_sink] = ACTIONS(2823), - [sym_integer] = ACTIONS(2823), - [sym_float] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_multiline_string] = ACTIONS(2821), - [sym_character] = ACTIONS(2821), + [STATE(1214)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2472), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1215)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2293), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2819), + }, + [STATE(1216)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2294), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1290), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2461), + }, + [STATE(1217)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2473), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1218)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1223), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2821), }, - [STATE(1162)] = { - [ts_builtin_sym_end] = ACTIONS(2825), - [sym_identifier] = ACTIONS(2827), - [anon_sym_import] = ACTIONS(2827), - [anon_sym_test] = ACTIONS(2827), - [anon_sym_hide] = ACTIONS(2827), - [anon_sym_func] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_RPAREN] = ACTIONS(2825), - [anon_sym_LBRACE] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2825), - [anon_sym_DOLLAR] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2825), - [anon_sym_void] = ACTIONS(2827), - [anon_sym_anyopaque] = ACTIONS(2827), - [anon_sym_bool] = ACTIONS(2827), - [anon_sym_int] = ACTIONS(2827), - [anon_sym_uint] = ACTIONS(2827), - [anon_sym_float] = ACTIONS(2827), - [anon_sym_range] = ACTIONS(2827), - [anon_sym_i8] = ACTIONS(2827), - [anon_sym_i16] = ACTIONS(2827), - [anon_sym_i32] = ACTIONS(2827), - [anon_sym_i64] = ACTIONS(2827), - [anon_sym_u8] = ACTIONS(2827), - [anon_sym_u16] = ACTIONS(2827), - [anon_sym_u32] = ACTIONS(2827), - [anon_sym_u64] = ACTIONS(2827), - [anon_sym_isize] = ACTIONS(2827), - [anon_sym_usize] = ACTIONS(2827), - [anon_sym_f32] = ACTIONS(2827), - [anon_sym_f64] = ACTIONS(2827), - [anon_sym_c_char] = ACTIONS(2827), - [anon_sym_c_schar] = ACTIONS(2827), - [anon_sym_c_uchar] = ACTIONS(2827), - [anon_sym_c_short] = ACTIONS(2827), - [anon_sym_c_ushort] = ACTIONS(2827), - [anon_sym_c_int] = ACTIONS(2827), - [anon_sym_c_uint] = ACTIONS(2827), - [anon_sym_c_long] = ACTIONS(2827), - [anon_sym_c_ulong] = ACTIONS(2827), - [anon_sym_c_longlong] = ACTIONS(2827), - [anon_sym_c_ulonglong] = ACTIONS(2827), - [anon_sym_c_float] = ACTIONS(2827), - [anon_sym_c_double] = ACTIONS(2827), - [anon_sym_c_longdouble] = ACTIONS(2827), - [anon_sym_return] = ACTIONS(2827), - [anon_sym_yield] = ACTIONS(2827), - [anon_sym_break] = ACTIONS(2827), - [anon_sym_continue] = ACTIONS(2827), - [anon_sym_defer] = ACTIONS(2827), - [anon_sym_errdefer] = ACTIONS(2827), - [anon_sym_if] = ACTIONS(2827), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_while] = ACTIONS(2827), - [anon_sym_expand] = ACTIONS(2827), - [anon_sym_for] = ACTIONS(2827), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [sym_none] = ACTIONS(2827), - [sym_undefined] = ACTIONS(2827), - [sym_sink] = ACTIONS(2827), - [sym_integer] = ACTIONS(2827), - [sym_float] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_multiline_string] = ACTIONS(2825), - [sym_character] = ACTIONS(2825), + [STATE(1219)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2295), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1292), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2823), + }, + [STATE(1220)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2296), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1293), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2825), }, - [STATE(1163)] = { - [ts_builtin_sym_end] = ACTIONS(2829), - [sym_identifier] = ACTIONS(2831), - [anon_sym_import] = ACTIONS(2831), - [anon_sym_test] = ACTIONS(2831), - [anon_sym_hide] = ACTIONS(2831), - [anon_sym_func] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_RPAREN] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_DOLLAR] = ACTIONS(2829), - [anon_sym_LBRACK] = ACTIONS(2829), - [anon_sym_void] = ACTIONS(2831), - [anon_sym_anyopaque] = ACTIONS(2831), - [anon_sym_bool] = ACTIONS(2831), - [anon_sym_int] = ACTIONS(2831), - [anon_sym_uint] = ACTIONS(2831), - [anon_sym_float] = ACTIONS(2831), - [anon_sym_range] = ACTIONS(2831), - [anon_sym_i8] = ACTIONS(2831), - [anon_sym_i16] = ACTIONS(2831), - [anon_sym_i32] = ACTIONS(2831), - [anon_sym_i64] = ACTIONS(2831), - [anon_sym_u8] = ACTIONS(2831), - [anon_sym_u16] = ACTIONS(2831), - [anon_sym_u32] = ACTIONS(2831), - [anon_sym_u64] = ACTIONS(2831), - [anon_sym_isize] = ACTIONS(2831), - [anon_sym_usize] = ACTIONS(2831), - [anon_sym_f32] = ACTIONS(2831), - [anon_sym_f64] = ACTIONS(2831), - [anon_sym_c_char] = ACTIONS(2831), - [anon_sym_c_schar] = ACTIONS(2831), - [anon_sym_c_uchar] = ACTIONS(2831), - [anon_sym_c_short] = ACTIONS(2831), - [anon_sym_c_ushort] = ACTIONS(2831), - [anon_sym_c_int] = ACTIONS(2831), - [anon_sym_c_uint] = ACTIONS(2831), - [anon_sym_c_long] = ACTIONS(2831), - [anon_sym_c_ulong] = ACTIONS(2831), - [anon_sym_c_longlong] = ACTIONS(2831), - [anon_sym_c_ulonglong] = ACTIONS(2831), - [anon_sym_c_float] = ACTIONS(2831), - [anon_sym_c_double] = ACTIONS(2831), - [anon_sym_c_longdouble] = ACTIONS(2831), - [anon_sym_return] = ACTIONS(2831), - [anon_sym_yield] = ACTIONS(2831), - [anon_sym_break] = ACTIONS(2831), - [anon_sym_continue] = ACTIONS(2831), - [anon_sym_defer] = ACTIONS(2831), - [anon_sym_errdefer] = ACTIONS(2831), - [anon_sym_if] = ACTIONS(2831), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_while] = ACTIONS(2831), - [anon_sym_expand] = ACTIONS(2831), - [anon_sym_for] = ACTIONS(2831), - [anon_sym_match] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [sym_none] = ACTIONS(2831), - [sym_undefined] = ACTIONS(2831), - [sym_sink] = ACTIONS(2831), - [sym_integer] = ACTIONS(2831), - [sym_float] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_multiline_string] = ACTIONS(2829), - [sym_character] = ACTIONS(2829), + [STATE(1221)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2297), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1295), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2827), + }, + [STATE(1222)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2298), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1296), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2829), }, - [STATE(1164)] = { - [ts_builtin_sym_end] = ACTIONS(2833), - [sym_identifier] = ACTIONS(2835), - [anon_sym_import] = ACTIONS(2835), - [anon_sym_test] = ACTIONS(2835), - [anon_sym_hide] = ACTIONS(2835), - [anon_sym_func] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2833), - [anon_sym_DOLLAR] = ACTIONS(2833), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_void] = ACTIONS(2835), - [anon_sym_anyopaque] = ACTIONS(2835), - [anon_sym_bool] = ACTIONS(2835), - [anon_sym_int] = ACTIONS(2835), - [anon_sym_uint] = ACTIONS(2835), - [anon_sym_float] = ACTIONS(2835), - [anon_sym_range] = ACTIONS(2835), - [anon_sym_i8] = ACTIONS(2835), - [anon_sym_i16] = ACTIONS(2835), - [anon_sym_i32] = ACTIONS(2835), - [anon_sym_i64] = ACTIONS(2835), - [anon_sym_u8] = ACTIONS(2835), - [anon_sym_u16] = ACTIONS(2835), - [anon_sym_u32] = ACTIONS(2835), - [anon_sym_u64] = ACTIONS(2835), - [anon_sym_isize] = ACTIONS(2835), - [anon_sym_usize] = ACTIONS(2835), - [anon_sym_f32] = ACTIONS(2835), - [anon_sym_f64] = ACTIONS(2835), - [anon_sym_c_char] = ACTIONS(2835), - [anon_sym_c_schar] = ACTIONS(2835), - [anon_sym_c_uchar] = ACTIONS(2835), - [anon_sym_c_short] = ACTIONS(2835), - [anon_sym_c_ushort] = ACTIONS(2835), - [anon_sym_c_int] = ACTIONS(2835), - [anon_sym_c_uint] = ACTIONS(2835), - [anon_sym_c_long] = ACTIONS(2835), - [anon_sym_c_ulong] = ACTIONS(2835), - [anon_sym_c_longlong] = ACTIONS(2835), - [anon_sym_c_ulonglong] = ACTIONS(2835), - [anon_sym_c_float] = ACTIONS(2835), - [anon_sym_c_double] = ACTIONS(2835), - [anon_sym_c_longdouble] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2835), - [anon_sym_yield] = ACTIONS(2835), - [anon_sym_break] = ACTIONS(2835), - [anon_sym_continue] = ACTIONS(2835), - [anon_sym_defer] = ACTIONS(2835), - [anon_sym_errdefer] = ACTIONS(2835), - [anon_sym_if] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_while] = ACTIONS(2835), - [anon_sym_expand] = ACTIONS(2835), - [anon_sym_for] = ACTIONS(2835), - [anon_sym_match] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [sym_none] = ACTIONS(2835), - [sym_undefined] = ACTIONS(2835), - [sym_sink] = ACTIONS(2835), - [sym_integer] = ACTIONS(2835), - [sym_float] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_multiline_string] = ACTIONS(2833), - [sym_character] = ACTIONS(2833), + [STATE(1223)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1224)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2481), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1225)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1226)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2349), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1359), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2831), + }, + [STATE(1227)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(57), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1299), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2833), }, - [STATE(1165)] = { - [ts_builtin_sym_end] = ACTIONS(2837), - [sym_identifier] = ACTIONS(2839), - [anon_sym_import] = ACTIONS(2839), - [anon_sym_test] = ACTIONS(2839), - [anon_sym_hide] = ACTIONS(2839), - [anon_sym_func] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2837), - [anon_sym_DOLLAR] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2837), - [anon_sym_void] = ACTIONS(2839), - [anon_sym_anyopaque] = ACTIONS(2839), - [anon_sym_bool] = ACTIONS(2839), - [anon_sym_int] = ACTIONS(2839), - [anon_sym_uint] = ACTIONS(2839), - [anon_sym_float] = ACTIONS(2839), - [anon_sym_range] = ACTIONS(2839), - [anon_sym_i8] = ACTIONS(2839), - [anon_sym_i16] = ACTIONS(2839), - [anon_sym_i32] = ACTIONS(2839), - [anon_sym_i64] = ACTIONS(2839), - [anon_sym_u8] = ACTIONS(2839), - [anon_sym_u16] = ACTIONS(2839), - [anon_sym_u32] = ACTIONS(2839), - [anon_sym_u64] = ACTIONS(2839), - [anon_sym_isize] = ACTIONS(2839), - [anon_sym_usize] = ACTIONS(2839), - [anon_sym_f32] = ACTIONS(2839), - [anon_sym_f64] = ACTIONS(2839), - [anon_sym_c_char] = ACTIONS(2839), - [anon_sym_c_schar] = ACTIONS(2839), - [anon_sym_c_uchar] = ACTIONS(2839), - [anon_sym_c_short] = ACTIONS(2839), - [anon_sym_c_ushort] = ACTIONS(2839), - [anon_sym_c_int] = ACTIONS(2839), - [anon_sym_c_uint] = ACTIONS(2839), - [anon_sym_c_long] = ACTIONS(2839), - [anon_sym_c_ulong] = ACTIONS(2839), - [anon_sym_c_longlong] = ACTIONS(2839), - [anon_sym_c_ulonglong] = ACTIONS(2839), - [anon_sym_c_float] = ACTIONS(2839), - [anon_sym_c_double] = ACTIONS(2839), - [anon_sym_c_longdouble] = ACTIONS(2839), - [anon_sym_return] = ACTIONS(2839), - [anon_sym_yield] = ACTIONS(2839), - [anon_sym_break] = ACTIONS(2839), - [anon_sym_continue] = ACTIONS(2839), - [anon_sym_defer] = ACTIONS(2839), - [anon_sym_errdefer] = ACTIONS(2839), - [anon_sym_if] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2839), - [anon_sym_while] = ACTIONS(2839), - [anon_sym_expand] = ACTIONS(2839), - [anon_sym_for] = ACTIONS(2839), - [anon_sym_match] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2839), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2839), - [anon_sym_false] = ACTIONS(2839), - [sym_none] = ACTIONS(2839), - [sym_undefined] = ACTIONS(2839), - [sym_sink] = ACTIONS(2839), - [sym_integer] = ACTIONS(2839), - [sym_float] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_multiline_string] = ACTIONS(2837), - [sym_character] = ACTIONS(2837), + [STATE(1228)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(58), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1301), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2835), + }, + [STATE(1229)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1230), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2837), }, - [STATE(1166)] = { - [ts_builtin_sym_end] = ACTIONS(2841), - [sym_identifier] = ACTIONS(2843), - [anon_sym_import] = ACTIONS(2843), - [anon_sym_test] = ACTIONS(2843), - [anon_sym_hide] = ACTIONS(2843), - [anon_sym_func] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_RBRACE] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_void] = ACTIONS(2843), - [anon_sym_anyopaque] = ACTIONS(2843), - [anon_sym_bool] = ACTIONS(2843), - [anon_sym_int] = ACTIONS(2843), - [anon_sym_uint] = ACTIONS(2843), - [anon_sym_float] = ACTIONS(2843), - [anon_sym_range] = ACTIONS(2843), - [anon_sym_i8] = ACTIONS(2843), - [anon_sym_i16] = ACTIONS(2843), - [anon_sym_i32] = ACTIONS(2843), - [anon_sym_i64] = ACTIONS(2843), - [anon_sym_u8] = ACTIONS(2843), - [anon_sym_u16] = ACTIONS(2843), - [anon_sym_u32] = ACTIONS(2843), - [anon_sym_u64] = ACTIONS(2843), - [anon_sym_isize] = ACTIONS(2843), - [anon_sym_usize] = ACTIONS(2843), - [anon_sym_f32] = ACTIONS(2843), - [anon_sym_f64] = ACTIONS(2843), - [anon_sym_c_char] = ACTIONS(2843), - [anon_sym_c_schar] = ACTIONS(2843), - [anon_sym_c_uchar] = ACTIONS(2843), - [anon_sym_c_short] = ACTIONS(2843), - [anon_sym_c_ushort] = ACTIONS(2843), - [anon_sym_c_int] = ACTIONS(2843), - [anon_sym_c_uint] = ACTIONS(2843), - [anon_sym_c_long] = ACTIONS(2843), - [anon_sym_c_ulong] = ACTIONS(2843), - [anon_sym_c_longlong] = ACTIONS(2843), - [anon_sym_c_ulonglong] = ACTIONS(2843), - [anon_sym_c_float] = ACTIONS(2843), - [anon_sym_c_double] = ACTIONS(2843), - [anon_sym_c_longdouble] = ACTIONS(2843), - [anon_sym_return] = ACTIONS(2843), - [anon_sym_yield] = ACTIONS(2843), - [anon_sym_break] = ACTIONS(2843), - [anon_sym_continue] = ACTIONS(2843), - [anon_sym_defer] = ACTIONS(2843), - [anon_sym_errdefer] = ACTIONS(2843), - [anon_sym_if] = ACTIONS(2843), - [anon_sym_else] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2843), - [anon_sym_expand] = ACTIONS(2843), - [anon_sym_for] = ACTIONS(2843), - [anon_sym_match] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2843), - [anon_sym_DOT] = ACTIONS(2841), - [anon_sym_true] = ACTIONS(2843), - [anon_sym_false] = ACTIONS(2843), - [sym_none] = ACTIONS(2843), - [sym_undefined] = ACTIONS(2843), - [sym_sink] = ACTIONS(2843), - [sym_integer] = ACTIONS(2843), - [sym_float] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(2841), - [sym_multiline_string] = ACTIONS(2841), - [sym_character] = ACTIONS(2841), + [STATE(1230)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1231)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2219), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1241), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2839), + }, + [STATE(1232)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2220), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2841), }, - [STATE(1167)] = { - [ts_builtin_sym_end] = ACTIONS(2845), - [sym_identifier] = ACTIONS(2847), - [anon_sym_import] = ACTIONS(2847), - [anon_sym_test] = ACTIONS(2847), - [anon_sym_hide] = ACTIONS(2847), - [anon_sym_func] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_RBRACE] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_DOLLAR] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_void] = ACTIONS(2847), - [anon_sym_anyopaque] = ACTIONS(2847), - [anon_sym_bool] = ACTIONS(2847), - [anon_sym_int] = ACTIONS(2847), - [anon_sym_uint] = ACTIONS(2847), - [anon_sym_float] = ACTIONS(2847), - [anon_sym_range] = ACTIONS(2847), - [anon_sym_i8] = ACTIONS(2847), - [anon_sym_i16] = ACTIONS(2847), - [anon_sym_i32] = ACTIONS(2847), - [anon_sym_i64] = ACTIONS(2847), - [anon_sym_u8] = ACTIONS(2847), - [anon_sym_u16] = ACTIONS(2847), - [anon_sym_u32] = ACTIONS(2847), - [anon_sym_u64] = ACTIONS(2847), - [anon_sym_isize] = ACTIONS(2847), - [anon_sym_usize] = ACTIONS(2847), - [anon_sym_f32] = ACTIONS(2847), - [anon_sym_f64] = ACTIONS(2847), - [anon_sym_c_char] = ACTIONS(2847), - [anon_sym_c_schar] = ACTIONS(2847), - [anon_sym_c_uchar] = ACTIONS(2847), - [anon_sym_c_short] = ACTIONS(2847), - [anon_sym_c_ushort] = ACTIONS(2847), - [anon_sym_c_int] = ACTIONS(2847), - [anon_sym_c_uint] = ACTIONS(2847), - [anon_sym_c_long] = ACTIONS(2847), - [anon_sym_c_ulong] = ACTIONS(2847), - [anon_sym_c_longlong] = ACTIONS(2847), - [anon_sym_c_ulonglong] = ACTIONS(2847), - [anon_sym_c_float] = ACTIONS(2847), - [anon_sym_c_double] = ACTIONS(2847), - [anon_sym_c_longdouble] = ACTIONS(2847), - [anon_sym_return] = ACTIONS(2847), - [anon_sym_yield] = ACTIONS(2847), - [anon_sym_break] = ACTIONS(2847), - [anon_sym_continue] = ACTIONS(2847), - [anon_sym_defer] = ACTIONS(2847), - [anon_sym_errdefer] = ACTIONS(2847), - [anon_sym_if] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2847), - [anon_sym_while] = ACTIONS(2847), - [anon_sym_expand] = ACTIONS(2847), - [anon_sym_for] = ACTIONS(2847), - [anon_sym_match] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2847), - [anon_sym_DOT] = ACTIONS(2845), - [anon_sym_true] = ACTIONS(2847), - [anon_sym_false] = ACTIONS(2847), - [sym_none] = ACTIONS(2847), - [sym_undefined] = ACTIONS(2847), - [sym_sink] = ACTIONS(2847), - [sym_integer] = ACTIONS(2847), - [sym_float] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(2845), - [sym_multiline_string] = ACTIONS(2845), - [sym_character] = ACTIONS(2845), + [STATE(1233)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(59), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1243), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2843), + }, + [STATE(1234)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2221), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1244), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2845), }, - [STATE(1168)] = { - [ts_builtin_sym_end] = ACTIONS(2849), - [sym_identifier] = ACTIONS(2851), - [anon_sym_import] = ACTIONS(2851), - [anon_sym_test] = ACTIONS(2851), - [anon_sym_hide] = ACTIONS(2851), - [anon_sym_func] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2849), - [anon_sym_RBRACE] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_DOLLAR] = ACTIONS(2849), - [anon_sym_LBRACK] = ACTIONS(2849), - [anon_sym_void] = ACTIONS(2851), - [anon_sym_anyopaque] = ACTIONS(2851), - [anon_sym_bool] = ACTIONS(2851), - [anon_sym_int] = ACTIONS(2851), - [anon_sym_uint] = ACTIONS(2851), - [anon_sym_float] = ACTIONS(2851), - [anon_sym_range] = ACTIONS(2851), - [anon_sym_i8] = ACTIONS(2851), - [anon_sym_i16] = ACTIONS(2851), - [anon_sym_i32] = ACTIONS(2851), - [anon_sym_i64] = ACTIONS(2851), - [anon_sym_u8] = ACTIONS(2851), - [anon_sym_u16] = ACTIONS(2851), - [anon_sym_u32] = ACTIONS(2851), - [anon_sym_u64] = ACTIONS(2851), - [anon_sym_isize] = ACTIONS(2851), - [anon_sym_usize] = ACTIONS(2851), - [anon_sym_f32] = ACTIONS(2851), - [anon_sym_f64] = ACTIONS(2851), - [anon_sym_c_char] = ACTIONS(2851), - [anon_sym_c_schar] = ACTIONS(2851), - [anon_sym_c_uchar] = ACTIONS(2851), - [anon_sym_c_short] = ACTIONS(2851), - [anon_sym_c_ushort] = ACTIONS(2851), - [anon_sym_c_int] = ACTIONS(2851), - [anon_sym_c_uint] = ACTIONS(2851), - [anon_sym_c_long] = ACTIONS(2851), - [anon_sym_c_ulong] = ACTIONS(2851), - [anon_sym_c_longlong] = ACTIONS(2851), - [anon_sym_c_ulonglong] = ACTIONS(2851), - [anon_sym_c_float] = ACTIONS(2851), - [anon_sym_c_double] = ACTIONS(2851), - [anon_sym_c_longdouble] = ACTIONS(2851), - [anon_sym_return] = ACTIONS(2851), - [anon_sym_yield] = ACTIONS(2851), - [anon_sym_break] = ACTIONS(2851), - [anon_sym_continue] = ACTIONS(2851), - [anon_sym_defer] = ACTIONS(2851), - [anon_sym_errdefer] = ACTIONS(2851), - [anon_sym_if] = ACTIONS(2851), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_while] = ACTIONS(2851), - [anon_sym_expand] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2851), - [anon_sym_match] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [sym_none] = ACTIONS(2851), - [sym_undefined] = ACTIONS(2851), - [sym_sink] = ACTIONS(2851), - [sym_integer] = ACTIONS(2851), - [sym_float] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2849), - [sym_multiline_string] = ACTIONS(2849), - [sym_character] = ACTIONS(2849), + [STATE(1235)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2222), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2591), + }, + [STATE(1236)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2223), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2847), + }, + [STATE(1237)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2224), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1247), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2849), }, - [STATE(1169)] = { - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_import] = ACTIONS(2855), - [anon_sym_test] = ACTIONS(2855), - [anon_sym_hide] = ACTIONS(2855), - [anon_sym_func] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2853), - [anon_sym_DOLLAR] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_void] = ACTIONS(2855), - [anon_sym_anyopaque] = ACTIONS(2855), - [anon_sym_bool] = ACTIONS(2855), - [anon_sym_int] = ACTIONS(2855), - [anon_sym_uint] = ACTIONS(2855), - [anon_sym_float] = ACTIONS(2855), - [anon_sym_range] = ACTIONS(2855), - [anon_sym_i8] = ACTIONS(2855), - [anon_sym_i16] = ACTIONS(2855), - [anon_sym_i32] = ACTIONS(2855), - [anon_sym_i64] = ACTIONS(2855), - [anon_sym_u8] = ACTIONS(2855), - [anon_sym_u16] = ACTIONS(2855), - [anon_sym_u32] = ACTIONS(2855), - [anon_sym_u64] = ACTIONS(2855), - [anon_sym_isize] = ACTIONS(2855), - [anon_sym_usize] = ACTIONS(2855), - [anon_sym_f32] = ACTIONS(2855), - [anon_sym_f64] = ACTIONS(2855), - [anon_sym_c_char] = ACTIONS(2855), - [anon_sym_c_schar] = ACTIONS(2855), - [anon_sym_c_uchar] = ACTIONS(2855), - [anon_sym_c_short] = ACTIONS(2855), - [anon_sym_c_ushort] = ACTIONS(2855), - [anon_sym_c_int] = ACTIONS(2855), - [anon_sym_c_uint] = ACTIONS(2855), - [anon_sym_c_long] = ACTIONS(2855), - [anon_sym_c_ulong] = ACTIONS(2855), - [anon_sym_c_longlong] = ACTIONS(2855), - [anon_sym_c_ulonglong] = ACTIONS(2855), - [anon_sym_c_float] = ACTIONS(2855), - [anon_sym_c_double] = ACTIONS(2855), - [anon_sym_c_longdouble] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_yield] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_errdefer] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2855), - [anon_sym_expand] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_undefined] = ACTIONS(2855), - [sym_sink] = ACTIONS(2855), - [sym_integer] = ACTIONS(2855), - [sym_float] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_multiline_string] = ACTIONS(2853), - [sym_character] = ACTIONS(2853), + [STATE(1238)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2225), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2851), + }, + [STATE(1239)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2226), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2853), }, - [STATE(1170)] = { - [ts_builtin_sym_end] = ACTIONS(2857), - [sym_identifier] = ACTIONS(2859), - [anon_sym_import] = ACTIONS(2859), - [anon_sym_test] = ACTIONS(2859), - [anon_sym_hide] = ACTIONS(2859), - [anon_sym_func] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2857), - [anon_sym_DOLLAR] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_void] = ACTIONS(2859), - [anon_sym_anyopaque] = ACTIONS(2859), - [anon_sym_bool] = ACTIONS(2859), - [anon_sym_int] = ACTIONS(2859), - [anon_sym_uint] = ACTIONS(2859), - [anon_sym_float] = ACTIONS(2859), - [anon_sym_range] = ACTIONS(2859), - [anon_sym_i8] = ACTIONS(2859), - [anon_sym_i16] = ACTIONS(2859), - [anon_sym_i32] = ACTIONS(2859), - [anon_sym_i64] = ACTIONS(2859), - [anon_sym_u8] = ACTIONS(2859), - [anon_sym_u16] = ACTIONS(2859), - [anon_sym_u32] = ACTIONS(2859), - [anon_sym_u64] = ACTIONS(2859), - [anon_sym_isize] = ACTIONS(2859), - [anon_sym_usize] = ACTIONS(2859), - [anon_sym_f32] = ACTIONS(2859), - [anon_sym_f64] = ACTIONS(2859), - [anon_sym_c_char] = ACTIONS(2859), - [anon_sym_c_schar] = ACTIONS(2859), - [anon_sym_c_uchar] = ACTIONS(2859), - [anon_sym_c_short] = ACTIONS(2859), - [anon_sym_c_ushort] = ACTIONS(2859), - [anon_sym_c_int] = ACTIONS(2859), - [anon_sym_c_uint] = ACTIONS(2859), - [anon_sym_c_long] = ACTIONS(2859), - [anon_sym_c_ulong] = ACTIONS(2859), - [anon_sym_c_longlong] = ACTIONS(2859), - [anon_sym_c_ulonglong] = ACTIONS(2859), - [anon_sym_c_float] = ACTIONS(2859), - [anon_sym_c_double] = ACTIONS(2859), - [anon_sym_c_longdouble] = ACTIONS(2859), - [anon_sym_return] = ACTIONS(2859), - [anon_sym_yield] = ACTIONS(2859), - [anon_sym_break] = ACTIONS(2859), - [anon_sym_continue] = ACTIONS(2859), - [anon_sym_defer] = ACTIONS(2859), - [anon_sym_errdefer] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2859), - [anon_sym_else] = ACTIONS(2859), - [anon_sym_while] = ACTIONS(2859), - [anon_sym_expand] = ACTIONS(2859), - [anon_sym_for] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2859), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2859), - [anon_sym_false] = ACTIONS(2859), - [sym_none] = ACTIONS(2859), - [sym_undefined] = ACTIONS(2859), - [sym_sink] = ACTIONS(2859), - [sym_integer] = ACTIONS(2859), - [sym_float] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_multiline_string] = ACTIONS(2857), - [sym_character] = ACTIONS(2857), + [STATE(1240)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(59), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2855), + }, + [STATE(1241)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2227), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1242)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2228), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1243)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(82), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1244)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2229), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1245)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2230), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1246)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2231), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1247)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2232), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1248)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2233), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1249)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2218), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2585), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(91), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(91), + [anon_sym_DOLLAR] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_try] = ACTIONS(21), + [anon_sym_DOT] = ACTIONS(443), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1250)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(60), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2857), }, - [STATE(1171)] = { - [ts_builtin_sym_end] = ACTIONS(2861), - [sym_identifier] = ACTIONS(2863), - [anon_sym_import] = ACTIONS(2863), - [anon_sym_test] = ACTIONS(2863), - [anon_sym_hide] = ACTIONS(2863), - [anon_sym_func] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_RPAREN] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_DOLLAR] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_void] = ACTIONS(2863), - [anon_sym_anyopaque] = ACTIONS(2863), - [anon_sym_bool] = ACTIONS(2863), - [anon_sym_int] = ACTIONS(2863), - [anon_sym_uint] = ACTIONS(2863), - [anon_sym_float] = ACTIONS(2863), - [anon_sym_range] = ACTIONS(2863), - [anon_sym_i8] = ACTIONS(2863), - [anon_sym_i16] = ACTIONS(2863), - [anon_sym_i32] = ACTIONS(2863), - [anon_sym_i64] = ACTIONS(2863), - [anon_sym_u8] = ACTIONS(2863), - [anon_sym_u16] = ACTIONS(2863), - [anon_sym_u32] = ACTIONS(2863), - [anon_sym_u64] = ACTIONS(2863), - [anon_sym_isize] = ACTIONS(2863), - [anon_sym_usize] = ACTIONS(2863), - [anon_sym_f32] = ACTIONS(2863), - [anon_sym_f64] = ACTIONS(2863), - [anon_sym_c_char] = ACTIONS(2863), - [anon_sym_c_schar] = ACTIONS(2863), - [anon_sym_c_uchar] = ACTIONS(2863), - [anon_sym_c_short] = ACTIONS(2863), - [anon_sym_c_ushort] = ACTIONS(2863), - [anon_sym_c_int] = ACTIONS(2863), - [anon_sym_c_uint] = ACTIONS(2863), - [anon_sym_c_long] = ACTIONS(2863), - [anon_sym_c_ulong] = ACTIONS(2863), - [anon_sym_c_longlong] = ACTIONS(2863), - [anon_sym_c_ulonglong] = ACTIONS(2863), - [anon_sym_c_float] = ACTIONS(2863), - [anon_sym_c_double] = ACTIONS(2863), - [anon_sym_c_longdouble] = ACTIONS(2863), - [anon_sym_return] = ACTIONS(2863), - [anon_sym_yield] = ACTIONS(2863), - [anon_sym_break] = ACTIONS(2863), - [anon_sym_continue] = ACTIONS(2863), - [anon_sym_defer] = ACTIONS(2863), - [anon_sym_errdefer] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2863), - [anon_sym_while] = ACTIONS(2863), - [anon_sym_expand] = ACTIONS(2863), - [anon_sym_for] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2863), - [anon_sym_DOT] = ACTIONS(2861), - [anon_sym_true] = ACTIONS(2863), - [anon_sym_false] = ACTIONS(2863), - [sym_none] = ACTIONS(2863), - [sym_undefined] = ACTIONS(2863), - [sym_sink] = ACTIONS(2863), - [sym_integer] = ACTIONS(2863), - [sym_float] = ACTIONS(2861), - [anon_sym_DQUOTE] = ACTIONS(2861), - [sym_multiline_string] = ACTIONS(2861), - [sym_character] = ACTIONS(2861), + [STATE(1251)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(61), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1309), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2597), + }, + [STATE(1252)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2859), + }, + [STATE(1253)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(86), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1312), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2861), }, - [STATE(1172)] = { - [ts_builtin_sym_end] = ACTIONS(2865), - [sym_identifier] = ACTIONS(2867), - [anon_sym_import] = ACTIONS(2867), - [anon_sym_test] = ACTIONS(2867), - [anon_sym_hide] = ACTIONS(2867), - [anon_sym_func] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_RPAREN] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_DOLLAR] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_void] = ACTIONS(2867), - [anon_sym_anyopaque] = ACTIONS(2867), - [anon_sym_bool] = ACTIONS(2867), - [anon_sym_int] = ACTIONS(2867), - [anon_sym_uint] = ACTIONS(2867), - [anon_sym_float] = ACTIONS(2867), - [anon_sym_range] = ACTIONS(2867), - [anon_sym_i8] = ACTIONS(2867), - [anon_sym_i16] = ACTIONS(2867), - [anon_sym_i32] = ACTIONS(2867), - [anon_sym_i64] = ACTIONS(2867), - [anon_sym_u8] = ACTIONS(2867), - [anon_sym_u16] = ACTIONS(2867), - [anon_sym_u32] = ACTIONS(2867), - [anon_sym_u64] = ACTIONS(2867), - [anon_sym_isize] = ACTIONS(2867), - [anon_sym_usize] = ACTIONS(2867), - [anon_sym_f32] = ACTIONS(2867), - [anon_sym_f64] = ACTIONS(2867), - [anon_sym_c_char] = ACTIONS(2867), - [anon_sym_c_schar] = ACTIONS(2867), - [anon_sym_c_uchar] = ACTIONS(2867), - [anon_sym_c_short] = ACTIONS(2867), - [anon_sym_c_ushort] = ACTIONS(2867), - [anon_sym_c_int] = ACTIONS(2867), - [anon_sym_c_uint] = ACTIONS(2867), - [anon_sym_c_long] = ACTIONS(2867), - [anon_sym_c_ulong] = ACTIONS(2867), - [anon_sym_c_longlong] = ACTIONS(2867), - [anon_sym_c_ulonglong] = ACTIONS(2867), - [anon_sym_c_float] = ACTIONS(2867), - [anon_sym_c_double] = ACTIONS(2867), - [anon_sym_c_longdouble] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_yield] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_defer] = ACTIONS(2867), - [anon_sym_errdefer] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_else] = ACTIONS(2867), - [anon_sym_while] = ACTIONS(2867), - [anon_sym_expand] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_true] = ACTIONS(2867), - [anon_sym_false] = ACTIONS(2867), - [sym_none] = ACTIONS(2867), - [sym_undefined] = ACTIONS(2867), - [sym_sink] = ACTIONS(2867), - [sym_integer] = ACTIONS(2867), - [sym_float] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2865), - [sym_multiline_string] = ACTIONS(2865), - [sym_character] = ACTIONS(2865), + [STATE(1254)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(10), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1259), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2863), + }, + [STATE(1255)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(64), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2865), }, - [STATE(1173)] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2871), - [anon_sym_import] = ACTIONS(2871), - [anon_sym_test] = ACTIONS(2871), - [anon_sym_hide] = ACTIONS(2871), - [anon_sym_func] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_RPAREN] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_DOLLAR] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_void] = ACTIONS(2871), - [anon_sym_anyopaque] = ACTIONS(2871), - [anon_sym_bool] = ACTIONS(2871), - [anon_sym_int] = ACTIONS(2871), - [anon_sym_uint] = ACTIONS(2871), - [anon_sym_float] = ACTIONS(2871), - [anon_sym_range] = ACTIONS(2871), - [anon_sym_i8] = ACTIONS(2871), - [anon_sym_i16] = ACTIONS(2871), - [anon_sym_i32] = ACTIONS(2871), - [anon_sym_i64] = ACTIONS(2871), - [anon_sym_u8] = ACTIONS(2871), - [anon_sym_u16] = ACTIONS(2871), - [anon_sym_u32] = ACTIONS(2871), - [anon_sym_u64] = ACTIONS(2871), - [anon_sym_isize] = ACTIONS(2871), - [anon_sym_usize] = ACTIONS(2871), - [anon_sym_f32] = ACTIONS(2871), - [anon_sym_f64] = ACTIONS(2871), - [anon_sym_c_char] = ACTIONS(2871), - [anon_sym_c_schar] = ACTIONS(2871), - [anon_sym_c_uchar] = ACTIONS(2871), - [anon_sym_c_short] = ACTIONS(2871), - [anon_sym_c_ushort] = ACTIONS(2871), - [anon_sym_c_int] = ACTIONS(2871), - [anon_sym_c_uint] = ACTIONS(2871), - [anon_sym_c_long] = ACTIONS(2871), - [anon_sym_c_ulong] = ACTIONS(2871), - [anon_sym_c_longlong] = ACTIONS(2871), - [anon_sym_c_ulonglong] = ACTIONS(2871), - [anon_sym_c_float] = ACTIONS(2871), - [anon_sym_c_double] = ACTIONS(2871), - [anon_sym_c_longdouble] = ACTIONS(2871), - [anon_sym_return] = ACTIONS(2871), - [anon_sym_yield] = ACTIONS(2871), - [anon_sym_break] = ACTIONS(2871), - [anon_sym_continue] = ACTIONS(2871), - [anon_sym_defer] = ACTIONS(2871), - [anon_sym_errdefer] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2871), - [anon_sym_while] = ACTIONS(2871), - [anon_sym_expand] = ACTIONS(2871), - [anon_sym_for] = ACTIONS(2871), - [anon_sym_match] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2871), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_true] = ACTIONS(2871), - [anon_sym_false] = ACTIONS(2871), - [sym_none] = ACTIONS(2871), - [sym_undefined] = ACTIONS(2871), - [sym_sink] = ACTIONS(2871), - [sym_integer] = ACTIONS(2871), - [sym_float] = ACTIONS(2869), - [anon_sym_DQUOTE] = ACTIONS(2869), - [sym_multiline_string] = ACTIONS(2869), - [sym_character] = ACTIONS(2869), + [STATE(1256)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(65), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1325), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2867), + }, + [STATE(1257)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1258)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(66), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2869), }, - [STATE(1174)] = { - [ts_builtin_sym_end] = ACTIONS(2873), - [sym_identifier] = ACTIONS(2875), - [anon_sym_import] = ACTIONS(2875), - [anon_sym_test] = ACTIONS(2875), - [anon_sym_hide] = ACTIONS(2875), - [anon_sym_func] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2873), - [anon_sym_RPAREN] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_RBRACE] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_void] = ACTIONS(2875), - [anon_sym_anyopaque] = ACTIONS(2875), - [anon_sym_bool] = ACTIONS(2875), - [anon_sym_int] = ACTIONS(2875), - [anon_sym_uint] = ACTIONS(2875), - [anon_sym_float] = ACTIONS(2875), - [anon_sym_range] = ACTIONS(2875), - [anon_sym_i8] = ACTIONS(2875), - [anon_sym_i16] = ACTIONS(2875), - [anon_sym_i32] = ACTIONS(2875), - [anon_sym_i64] = ACTIONS(2875), - [anon_sym_u8] = ACTIONS(2875), - [anon_sym_u16] = ACTIONS(2875), - [anon_sym_u32] = ACTIONS(2875), - [anon_sym_u64] = ACTIONS(2875), - [anon_sym_isize] = ACTIONS(2875), - [anon_sym_usize] = ACTIONS(2875), - [anon_sym_f32] = ACTIONS(2875), - [anon_sym_f64] = ACTIONS(2875), - [anon_sym_c_char] = ACTIONS(2875), - [anon_sym_c_schar] = ACTIONS(2875), - [anon_sym_c_uchar] = ACTIONS(2875), - [anon_sym_c_short] = ACTIONS(2875), - [anon_sym_c_ushort] = ACTIONS(2875), - [anon_sym_c_int] = ACTIONS(2875), - [anon_sym_c_uint] = ACTIONS(2875), - [anon_sym_c_long] = ACTIONS(2875), - [anon_sym_c_ulong] = ACTIONS(2875), - [anon_sym_c_longlong] = ACTIONS(2875), - [anon_sym_c_ulonglong] = ACTIONS(2875), - [anon_sym_c_float] = ACTIONS(2875), - [anon_sym_c_double] = ACTIONS(2875), - [anon_sym_c_longdouble] = ACTIONS(2875), - [anon_sym_return] = ACTIONS(2875), - [anon_sym_yield] = ACTIONS(2875), - [anon_sym_break] = ACTIONS(2875), - [anon_sym_continue] = ACTIONS(2875), - [anon_sym_defer] = ACTIONS(2875), - [anon_sym_errdefer] = ACTIONS(2875), - [anon_sym_if] = ACTIONS(2875), - [anon_sym_else] = ACTIONS(2875), - [anon_sym_while] = ACTIONS(2875), - [anon_sym_expand] = ACTIONS(2875), - [anon_sym_for] = ACTIONS(2875), - [anon_sym_match] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2875), - [anon_sym_DOT] = ACTIONS(2873), - [anon_sym_true] = ACTIONS(2875), - [anon_sym_false] = ACTIONS(2875), - [sym_none] = ACTIONS(2875), - [sym_undefined] = ACTIONS(2875), - [sym_sink] = ACTIONS(2875), - [sym_integer] = ACTIONS(2875), - [sym_float] = ACTIONS(2873), - [anon_sym_DQUOTE] = ACTIONS(2873), - [sym_multiline_string] = ACTIONS(2873), - [sym_character] = ACTIONS(2873), + [STATE(1259)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(11), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1260)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2363), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1271), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2871), + }, + [STATE(1261)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2386), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1272), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2873), }, - [STATE(1175)] = { - [ts_builtin_sym_end] = ACTIONS(2877), - [sym_identifier] = ACTIONS(2879), - [anon_sym_import] = ACTIONS(2879), - [anon_sym_test] = ACTIONS(2879), - [anon_sym_hide] = ACTIONS(2879), - [anon_sym_func] = ACTIONS(2879), - [anon_sym_BANG] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2877), - [anon_sym_RPAREN] = ACTIONS(2877), - [anon_sym_LBRACE] = ACTIONS(2877), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2877), - [anon_sym_DOLLAR] = ACTIONS(2877), - [anon_sym_LBRACK] = ACTIONS(2877), - [anon_sym_void] = ACTIONS(2879), - [anon_sym_anyopaque] = ACTIONS(2879), - [anon_sym_bool] = ACTIONS(2879), - [anon_sym_int] = ACTIONS(2879), - [anon_sym_uint] = ACTIONS(2879), - [anon_sym_float] = ACTIONS(2879), - [anon_sym_range] = ACTIONS(2879), - [anon_sym_i8] = ACTIONS(2879), - [anon_sym_i16] = ACTIONS(2879), - [anon_sym_i32] = ACTIONS(2879), - [anon_sym_i64] = ACTIONS(2879), - [anon_sym_u8] = ACTIONS(2879), - [anon_sym_u16] = ACTIONS(2879), - [anon_sym_u32] = ACTIONS(2879), - [anon_sym_u64] = ACTIONS(2879), - [anon_sym_isize] = ACTIONS(2879), - [anon_sym_usize] = ACTIONS(2879), - [anon_sym_f32] = ACTIONS(2879), - [anon_sym_f64] = ACTIONS(2879), - [anon_sym_c_char] = ACTIONS(2879), - [anon_sym_c_schar] = ACTIONS(2879), - [anon_sym_c_uchar] = ACTIONS(2879), - [anon_sym_c_short] = ACTIONS(2879), - [anon_sym_c_ushort] = ACTIONS(2879), - [anon_sym_c_int] = ACTIONS(2879), - [anon_sym_c_uint] = ACTIONS(2879), - [anon_sym_c_long] = ACTIONS(2879), - [anon_sym_c_ulong] = ACTIONS(2879), - [anon_sym_c_longlong] = ACTIONS(2879), - [anon_sym_c_ulonglong] = ACTIONS(2879), - [anon_sym_c_float] = ACTIONS(2879), - [anon_sym_c_double] = ACTIONS(2879), - [anon_sym_c_longdouble] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2879), - [anon_sym_yield] = ACTIONS(2879), - [anon_sym_break] = ACTIONS(2879), - [anon_sym_continue] = ACTIONS(2879), - [anon_sym_defer] = ACTIONS(2879), - [anon_sym_errdefer] = ACTIONS(2879), - [anon_sym_if] = ACTIONS(2879), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_while] = ACTIONS(2879), - [anon_sym_expand] = ACTIONS(2879), - [anon_sym_for] = ACTIONS(2879), - [anon_sym_match] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2879), - [anon_sym_DOT] = ACTIONS(2877), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [sym_none] = ACTIONS(2879), - [sym_undefined] = ACTIONS(2879), - [sym_sink] = ACTIONS(2879), - [sym_integer] = ACTIONS(2879), - [sym_float] = ACTIONS(2877), - [anon_sym_DQUOTE] = ACTIONS(2877), - [sym_multiline_string] = ACTIONS(2877), - [sym_character] = ACTIONS(2877), + [STATE(1262)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(646), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1273), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2875), + }, + [STATE(1263)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2365), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2877), }, - [STATE(1176)] = { - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_import] = ACTIONS(2883), - [anon_sym_test] = ACTIONS(2883), - [anon_sym_hide] = ACTIONS(2883), - [anon_sym_func] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_DASH] = ACTIONS(2881), - [anon_sym_DOLLAR] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_void] = ACTIONS(2883), - [anon_sym_anyopaque] = ACTIONS(2883), - [anon_sym_bool] = ACTIONS(2883), - [anon_sym_int] = ACTIONS(2883), - [anon_sym_uint] = ACTIONS(2883), - [anon_sym_float] = ACTIONS(2883), - [anon_sym_range] = ACTIONS(2883), - [anon_sym_i8] = ACTIONS(2883), - [anon_sym_i16] = ACTIONS(2883), - [anon_sym_i32] = ACTIONS(2883), - [anon_sym_i64] = ACTIONS(2883), - [anon_sym_u8] = ACTIONS(2883), - [anon_sym_u16] = ACTIONS(2883), - [anon_sym_u32] = ACTIONS(2883), - [anon_sym_u64] = ACTIONS(2883), - [anon_sym_isize] = ACTIONS(2883), - [anon_sym_usize] = ACTIONS(2883), - [anon_sym_f32] = ACTIONS(2883), - [anon_sym_f64] = ACTIONS(2883), - [anon_sym_c_char] = ACTIONS(2883), - [anon_sym_c_schar] = ACTIONS(2883), - [anon_sym_c_uchar] = ACTIONS(2883), - [anon_sym_c_short] = ACTIONS(2883), - [anon_sym_c_ushort] = ACTIONS(2883), - [anon_sym_c_int] = ACTIONS(2883), - [anon_sym_c_uint] = ACTIONS(2883), - [anon_sym_c_long] = ACTIONS(2883), - [anon_sym_c_ulong] = ACTIONS(2883), - [anon_sym_c_longlong] = ACTIONS(2883), - [anon_sym_c_ulonglong] = ACTIONS(2883), - [anon_sym_c_float] = ACTIONS(2883), - [anon_sym_c_double] = ACTIONS(2883), - [anon_sym_c_longdouble] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_yield] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_defer] = ACTIONS(2883), - [anon_sym_errdefer] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_while] = ACTIONS(2883), - [anon_sym_expand] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2881), - [anon_sym_try] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_undefined] = ACTIONS(2883), - [sym_sink] = ACTIONS(2883), - [sym_integer] = ACTIONS(2883), - [sym_float] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_multiline_string] = ACTIONS(2881), - [sym_character] = ACTIONS(2881), + [STATE(1264)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2366), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1275), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2611), + }, + [STATE(1265)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2367), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1276), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2879), + }, + [STATE(1266)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2368), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2881), }, - [STATE(1177)] = { - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_test] = ACTIONS(2887), - [anon_sym_hide] = ACTIONS(2887), - [anon_sym_func] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_DASH] = ACTIONS(2885), - [anon_sym_DOLLAR] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_void] = ACTIONS(2887), - [anon_sym_anyopaque] = ACTIONS(2887), - [anon_sym_bool] = ACTIONS(2887), - [anon_sym_int] = ACTIONS(2887), - [anon_sym_uint] = ACTIONS(2887), - [anon_sym_float] = ACTIONS(2887), - [anon_sym_range] = ACTIONS(2887), - [anon_sym_i8] = ACTIONS(2887), - [anon_sym_i16] = ACTIONS(2887), - [anon_sym_i32] = ACTIONS(2887), - [anon_sym_i64] = ACTIONS(2887), - [anon_sym_u8] = ACTIONS(2887), - [anon_sym_u16] = ACTIONS(2887), - [anon_sym_u32] = ACTIONS(2887), - [anon_sym_u64] = ACTIONS(2887), - [anon_sym_isize] = ACTIONS(2887), - [anon_sym_usize] = ACTIONS(2887), - [anon_sym_f32] = ACTIONS(2887), - [anon_sym_f64] = ACTIONS(2887), - [anon_sym_c_char] = ACTIONS(2887), - [anon_sym_c_schar] = ACTIONS(2887), - [anon_sym_c_uchar] = ACTIONS(2887), - [anon_sym_c_short] = ACTIONS(2887), - [anon_sym_c_ushort] = ACTIONS(2887), - [anon_sym_c_int] = ACTIONS(2887), - [anon_sym_c_uint] = ACTIONS(2887), - [anon_sym_c_long] = ACTIONS(2887), - [anon_sym_c_ulong] = ACTIONS(2887), - [anon_sym_c_longlong] = ACTIONS(2887), - [anon_sym_c_ulonglong] = ACTIONS(2887), - [anon_sym_c_float] = ACTIONS(2887), - [anon_sym_c_double] = ACTIONS(2887), - [anon_sym_c_longdouble] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_yield] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_errdefer] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_while] = ACTIONS(2887), - [anon_sym_expand] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_undefined] = ACTIONS(2887), - [sym_sink] = ACTIONS(2887), - [sym_integer] = ACTIONS(2887), - [sym_float] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_multiline_string] = ACTIONS(2885), - [sym_character] = ACTIONS(2885), + [STATE(1267)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2369), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1278), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2883), + }, + [STATE(1268)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2370), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1279), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2885), }, - [STATE(1178)] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_import] = ACTIONS(2891), - [anon_sym_test] = ACTIONS(2891), - [anon_sym_hide] = ACTIONS(2891), - [anon_sym_func] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_DASH] = ACTIONS(2889), - [anon_sym_DOLLAR] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_void] = ACTIONS(2891), - [anon_sym_anyopaque] = ACTIONS(2891), - [anon_sym_bool] = ACTIONS(2891), - [anon_sym_int] = ACTIONS(2891), - [anon_sym_uint] = ACTIONS(2891), - [anon_sym_float] = ACTIONS(2891), - [anon_sym_range] = ACTIONS(2891), - [anon_sym_i8] = ACTIONS(2891), - [anon_sym_i16] = ACTIONS(2891), - [anon_sym_i32] = ACTIONS(2891), - [anon_sym_i64] = ACTIONS(2891), - [anon_sym_u8] = ACTIONS(2891), - [anon_sym_u16] = ACTIONS(2891), - [anon_sym_u32] = ACTIONS(2891), - [anon_sym_u64] = ACTIONS(2891), - [anon_sym_isize] = ACTIONS(2891), - [anon_sym_usize] = ACTIONS(2891), - [anon_sym_f32] = ACTIONS(2891), - [anon_sym_f64] = ACTIONS(2891), - [anon_sym_c_char] = ACTIONS(2891), - [anon_sym_c_schar] = ACTIONS(2891), - [anon_sym_c_uchar] = ACTIONS(2891), - [anon_sym_c_short] = ACTIONS(2891), - [anon_sym_c_ushort] = ACTIONS(2891), - [anon_sym_c_int] = ACTIONS(2891), - [anon_sym_c_uint] = ACTIONS(2891), - [anon_sym_c_long] = ACTIONS(2891), - [anon_sym_c_ulong] = ACTIONS(2891), - [anon_sym_c_longlong] = ACTIONS(2891), - [anon_sym_c_ulonglong] = ACTIONS(2891), - [anon_sym_c_float] = ACTIONS(2891), - [anon_sym_c_double] = ACTIONS(2891), - [anon_sym_c_longdouble] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_yield] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_errdefer] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_while] = ACTIONS(2891), - [anon_sym_expand] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2889), - [anon_sym_try] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_undefined] = ACTIONS(2891), - [sym_sink] = ACTIONS(2891), - [sym_integer] = ACTIONS(2891), - [sym_float] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_multiline_string] = ACTIONS(2889), - [sym_character] = ACTIONS(2889), + [STATE(1269)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(601), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1283), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2887), + }, + [STATE(1270)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(602), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1284), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2889), }, - [STATE(1179)] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_import] = ACTIONS(2895), - [anon_sym_test] = ACTIONS(2895), - [anon_sym_hide] = ACTIONS(2895), - [anon_sym_func] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_RPAREN] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_DOLLAR] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_void] = ACTIONS(2895), - [anon_sym_anyopaque] = ACTIONS(2895), - [anon_sym_bool] = ACTIONS(2895), - [anon_sym_int] = ACTIONS(2895), - [anon_sym_uint] = ACTIONS(2895), - [anon_sym_float] = ACTIONS(2895), - [anon_sym_range] = ACTIONS(2895), - [anon_sym_i8] = ACTIONS(2895), - [anon_sym_i16] = ACTIONS(2895), - [anon_sym_i32] = ACTIONS(2895), - [anon_sym_i64] = ACTIONS(2895), - [anon_sym_u8] = ACTIONS(2895), - [anon_sym_u16] = ACTIONS(2895), - [anon_sym_u32] = ACTIONS(2895), - [anon_sym_u64] = ACTIONS(2895), - [anon_sym_isize] = ACTIONS(2895), - [anon_sym_usize] = ACTIONS(2895), - [anon_sym_f32] = ACTIONS(2895), - [anon_sym_f64] = ACTIONS(2895), - [anon_sym_c_char] = ACTIONS(2895), - [anon_sym_c_schar] = ACTIONS(2895), - [anon_sym_c_uchar] = ACTIONS(2895), - [anon_sym_c_short] = ACTIONS(2895), - [anon_sym_c_ushort] = ACTIONS(2895), - [anon_sym_c_int] = ACTIONS(2895), - [anon_sym_c_uint] = ACTIONS(2895), - [anon_sym_c_long] = ACTIONS(2895), - [anon_sym_c_ulong] = ACTIONS(2895), - [anon_sym_c_longlong] = ACTIONS(2895), - [anon_sym_c_ulonglong] = ACTIONS(2895), - [anon_sym_c_float] = ACTIONS(2895), - [anon_sym_c_double] = ACTIONS(2895), - [anon_sym_c_longdouble] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_yield] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_errdefer] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_else] = ACTIONS(2895), - [anon_sym_while] = ACTIONS(2895), - [anon_sym_expand] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2893), - [anon_sym_try] = ACTIONS(2895), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2895), - [anon_sym_false] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_undefined] = ACTIONS(2895), - [sym_sink] = ACTIONS(2895), - [sym_integer] = ACTIONS(2895), - [sym_float] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_multiline_string] = ACTIONS(2893), - [sym_character] = ACTIONS(2893), + [STATE(1271)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2374), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1272)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2375), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1273)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(645), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1274)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2376), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1275)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2377), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1276)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2378), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1277)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2380), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1278)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2381), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1279)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2382), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1280)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2437), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2891), + }, + [STATE(1281)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1282)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2332), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1283)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(603), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1284)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(605), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1285)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2893), }, - [STATE(1180)] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_import] = ACTIONS(2899), - [anon_sym_test] = ACTIONS(2899), - [anon_sym_hide] = ACTIONS(2899), - [anon_sym_func] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_RPAREN] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_RBRACE] = ACTIONS(2897), - [anon_sym_DASH] = ACTIONS(2897), - [anon_sym_DOLLAR] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_void] = ACTIONS(2899), - [anon_sym_anyopaque] = ACTIONS(2899), - [anon_sym_bool] = ACTIONS(2899), - [anon_sym_int] = ACTIONS(2899), - [anon_sym_uint] = ACTIONS(2899), - [anon_sym_float] = ACTIONS(2899), - [anon_sym_range] = ACTIONS(2899), - [anon_sym_i8] = ACTIONS(2899), - [anon_sym_i16] = ACTIONS(2899), - [anon_sym_i32] = ACTIONS(2899), - [anon_sym_i64] = ACTIONS(2899), - [anon_sym_u8] = ACTIONS(2899), - [anon_sym_u16] = ACTIONS(2899), - [anon_sym_u32] = ACTIONS(2899), - [anon_sym_u64] = ACTIONS(2899), - [anon_sym_isize] = ACTIONS(2899), - [anon_sym_usize] = ACTIONS(2899), - [anon_sym_f32] = ACTIONS(2899), - [anon_sym_f64] = ACTIONS(2899), - [anon_sym_c_char] = ACTIONS(2899), - [anon_sym_c_schar] = ACTIONS(2899), - [anon_sym_c_uchar] = ACTIONS(2899), - [anon_sym_c_short] = ACTIONS(2899), - [anon_sym_c_ushort] = ACTIONS(2899), - [anon_sym_c_int] = ACTIONS(2899), - [anon_sym_c_uint] = ACTIONS(2899), - [anon_sym_c_long] = ACTIONS(2899), - [anon_sym_c_ulong] = ACTIONS(2899), - [anon_sym_c_longlong] = ACTIONS(2899), - [anon_sym_c_ulonglong] = ACTIONS(2899), - [anon_sym_c_float] = ACTIONS(2899), - [anon_sym_c_double] = ACTIONS(2899), - [anon_sym_c_longdouble] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_yield] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_errdefer] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_while] = ACTIONS(2899), - [anon_sym_expand] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_try] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2897), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_undefined] = ACTIONS(2899), - [sym_sink] = ACTIONS(2899), - [sym_integer] = ACTIONS(2899), - [sym_float] = ACTIONS(2897), - [anon_sym_DQUOTE] = ACTIONS(2897), - [sym_multiline_string] = ACTIONS(2897), - [sym_character] = ACTIONS(2897), + [STATE(1286)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2305), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1287)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2303), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1288)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2132), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1289)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2299), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1290)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2300), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1291)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(644), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1297), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2895), + }, + [STATE(1292)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2301), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1293)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2302), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1294)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(3), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1300), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2897), }, - [STATE(1181)] = { - [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(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_void] = 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_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_AMP] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [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), + [STATE(1295)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2306), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1296)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2304), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1297)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1298)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2422), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1380), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2899), + }, + [STATE(1299)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(70), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1300)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(4), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1301)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(77), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1302)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(862), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1356), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2901), }, - [STATE(1182)] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_import] = ACTIONS(2907), - [anon_sym_test] = ACTIONS(2907), - [anon_sym_hide] = ACTIONS(2907), - [anon_sym_func] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_void] = ACTIONS(2907), - [anon_sym_anyopaque] = ACTIONS(2907), - [anon_sym_bool] = ACTIONS(2907), - [anon_sym_int] = ACTIONS(2907), - [anon_sym_uint] = ACTIONS(2907), - [anon_sym_float] = ACTIONS(2907), - [anon_sym_range] = ACTIONS(2907), - [anon_sym_i8] = ACTIONS(2907), - [anon_sym_i16] = ACTIONS(2907), - [anon_sym_i32] = ACTIONS(2907), - [anon_sym_i64] = ACTIONS(2907), - [anon_sym_u8] = ACTIONS(2907), - [anon_sym_u16] = ACTIONS(2907), - [anon_sym_u32] = ACTIONS(2907), - [anon_sym_u64] = ACTIONS(2907), - [anon_sym_isize] = ACTIONS(2907), - [anon_sym_usize] = ACTIONS(2907), - [anon_sym_f32] = ACTIONS(2907), - [anon_sym_f64] = ACTIONS(2907), - [anon_sym_c_char] = ACTIONS(2907), - [anon_sym_c_schar] = ACTIONS(2907), - [anon_sym_c_uchar] = ACTIONS(2907), - [anon_sym_c_short] = ACTIONS(2907), - [anon_sym_c_ushort] = ACTIONS(2907), - [anon_sym_c_int] = ACTIONS(2907), - [anon_sym_c_uint] = ACTIONS(2907), - [anon_sym_c_long] = ACTIONS(2907), - [anon_sym_c_ulong] = ACTIONS(2907), - [anon_sym_c_longlong] = ACTIONS(2907), - [anon_sym_c_ulonglong] = ACTIONS(2907), - [anon_sym_c_float] = ACTIONS(2907), - [anon_sym_c_double] = ACTIONS(2907), - [anon_sym_c_longdouble] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_yield] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_errdefer] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_while] = ACTIONS(2907), - [anon_sym_expand] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_try] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_undefined] = ACTIONS(2907), - [sym_sink] = ACTIONS(2907), - [sym_integer] = ACTIONS(2907), - [sym_float] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_multiline_string] = ACTIONS(2905), - [sym_character] = ACTIONS(2905), + [STATE(1303)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(863), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1360), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2903), + }, + [STATE(1304)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(82), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1305)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(571), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1407), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2905), }, - [STATE(1183)] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_import] = ACTIONS(2911), - [anon_sym_test] = ACTIONS(2911), - [anon_sym_hide] = ACTIONS(2911), - [anon_sym_func] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_DOLLAR] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_void] = ACTIONS(2911), - [anon_sym_anyopaque] = ACTIONS(2911), - [anon_sym_bool] = ACTIONS(2911), - [anon_sym_int] = ACTIONS(2911), - [anon_sym_uint] = ACTIONS(2911), - [anon_sym_float] = ACTIONS(2911), - [anon_sym_range] = ACTIONS(2911), - [anon_sym_i8] = ACTIONS(2911), - [anon_sym_i16] = ACTIONS(2911), - [anon_sym_i32] = ACTIONS(2911), - [anon_sym_i64] = ACTIONS(2911), - [anon_sym_u8] = ACTIONS(2911), - [anon_sym_u16] = ACTIONS(2911), - [anon_sym_u32] = ACTIONS(2911), - [anon_sym_u64] = ACTIONS(2911), - [anon_sym_isize] = ACTIONS(2911), - [anon_sym_usize] = ACTIONS(2911), - [anon_sym_f32] = ACTIONS(2911), - [anon_sym_f64] = ACTIONS(2911), - [anon_sym_c_char] = ACTIONS(2911), - [anon_sym_c_schar] = ACTIONS(2911), - [anon_sym_c_uchar] = ACTIONS(2911), - [anon_sym_c_short] = ACTIONS(2911), - [anon_sym_c_ushort] = ACTIONS(2911), - [anon_sym_c_int] = ACTIONS(2911), - [anon_sym_c_uint] = ACTIONS(2911), - [anon_sym_c_long] = ACTIONS(2911), - [anon_sym_c_ulong] = ACTIONS(2911), - [anon_sym_c_longlong] = ACTIONS(2911), - [anon_sym_c_ulonglong] = ACTIONS(2911), - [anon_sym_c_float] = ACTIONS(2911), - [anon_sym_c_double] = ACTIONS(2911), - [anon_sym_c_longdouble] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_yield] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_errdefer] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_expand] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_undefined] = ACTIONS(2911), - [sym_sink] = ACTIONS(2911), - [sym_integer] = ACTIONS(2911), - [sym_float] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_multiline_string] = ACTIONS(2909), - [sym_character] = ACTIONS(2909), + [STATE(1306)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(83), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2909), + [sym__newline] = ACTIONS(447), }, - [STATE(1184)] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_import] = ACTIONS(2915), - [anon_sym_test] = ACTIONS(2915), - [anon_sym_hide] = ACTIONS(2915), - [anon_sym_func] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_DOLLAR] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_void] = ACTIONS(2915), - [anon_sym_anyopaque] = ACTIONS(2915), - [anon_sym_bool] = ACTIONS(2915), - [anon_sym_int] = ACTIONS(2915), - [anon_sym_uint] = ACTIONS(2915), - [anon_sym_float] = ACTIONS(2915), - [anon_sym_range] = ACTIONS(2915), - [anon_sym_i8] = ACTIONS(2915), - [anon_sym_i16] = ACTIONS(2915), - [anon_sym_i32] = ACTIONS(2915), - [anon_sym_i64] = ACTIONS(2915), - [anon_sym_u8] = ACTIONS(2915), - [anon_sym_u16] = ACTIONS(2915), - [anon_sym_u32] = ACTIONS(2915), - [anon_sym_u64] = ACTIONS(2915), - [anon_sym_isize] = ACTIONS(2915), - [anon_sym_usize] = ACTIONS(2915), - [anon_sym_f32] = ACTIONS(2915), - [anon_sym_f64] = ACTIONS(2915), - [anon_sym_c_char] = ACTIONS(2915), - [anon_sym_c_schar] = ACTIONS(2915), - [anon_sym_c_uchar] = ACTIONS(2915), - [anon_sym_c_short] = ACTIONS(2915), - [anon_sym_c_ushort] = ACTIONS(2915), - [anon_sym_c_int] = ACTIONS(2915), - [anon_sym_c_uint] = ACTIONS(2915), - [anon_sym_c_long] = ACTIONS(2915), - [anon_sym_c_ulong] = ACTIONS(2915), - [anon_sym_c_longlong] = ACTIONS(2915), - [anon_sym_c_ulonglong] = ACTIONS(2915), - [anon_sym_c_float] = ACTIONS(2915), - [anon_sym_c_double] = ACTIONS(2915), - [anon_sym_c_longdouble] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_yield] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_errdefer] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_while] = ACTIONS(2915), - [anon_sym_expand] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_try] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_undefined] = ACTIONS(2915), - [sym_sink] = ACTIONS(2915), - [sym_integer] = ACTIONS(2915), - [sym_float] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_multiline_string] = ACTIONS(2913), - [sym_character] = ACTIONS(2913), + [STATE(1307)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(863), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1360), + [sym_identifier] = ACTIONS(2907), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(2909), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2903), + }, + [STATE(1308)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(5), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1313), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2911), + }, + [STATE(1309)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(39), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1310)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(646), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1366), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2913), }, - [STATE(1185)] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_import] = ACTIONS(2919), - [anon_sym_test] = ACTIONS(2919), - [anon_sym_hide] = ACTIONS(2919), - [anon_sym_func] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_DOLLAR] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_void] = ACTIONS(2919), - [anon_sym_anyopaque] = ACTIONS(2919), - [anon_sym_bool] = ACTIONS(2919), - [anon_sym_int] = ACTIONS(2919), - [anon_sym_uint] = ACTIONS(2919), - [anon_sym_float] = ACTIONS(2919), - [anon_sym_range] = ACTIONS(2919), - [anon_sym_i8] = ACTIONS(2919), - [anon_sym_i16] = ACTIONS(2919), - [anon_sym_i32] = ACTIONS(2919), - [anon_sym_i64] = ACTIONS(2919), - [anon_sym_u8] = ACTIONS(2919), - [anon_sym_u16] = ACTIONS(2919), - [anon_sym_u32] = ACTIONS(2919), - [anon_sym_u64] = ACTIONS(2919), - [anon_sym_isize] = ACTIONS(2919), - [anon_sym_usize] = ACTIONS(2919), - [anon_sym_f32] = ACTIONS(2919), - [anon_sym_f64] = ACTIONS(2919), - [anon_sym_c_char] = ACTIONS(2919), - [anon_sym_c_schar] = ACTIONS(2919), - [anon_sym_c_uchar] = ACTIONS(2919), - [anon_sym_c_short] = ACTIONS(2919), - [anon_sym_c_ushort] = ACTIONS(2919), - [anon_sym_c_int] = ACTIONS(2919), - [anon_sym_c_uint] = ACTIONS(2919), - [anon_sym_c_long] = ACTIONS(2919), - [anon_sym_c_ulong] = ACTIONS(2919), - [anon_sym_c_longlong] = ACTIONS(2919), - [anon_sym_c_ulonglong] = ACTIONS(2919), - [anon_sym_c_float] = ACTIONS(2919), - [anon_sym_c_double] = ACTIONS(2919), - [anon_sym_c_longdouble] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_errdefer] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_while] = ACTIONS(2919), - [anon_sym_expand] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_try] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_undefined] = ACTIONS(2919), - [sym_sink] = ACTIONS(2919), - [sym_integer] = ACTIONS(2919), - [sym_float] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_multiline_string] = ACTIONS(2917), - [sym_character] = ACTIONS(2917), + [STATE(1311)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(643), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1312)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(40), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1313)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1314)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(759), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1384), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2915), + }, + [STATE(1315)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(594), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1319), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2917), }, - [STATE(1186)] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2923), - [anon_sym_test] = ACTIONS(2923), - [anon_sym_hide] = ACTIONS(2923), - [anon_sym_func] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_DOLLAR] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_void] = ACTIONS(2923), - [anon_sym_anyopaque] = ACTIONS(2923), - [anon_sym_bool] = ACTIONS(2923), - [anon_sym_int] = ACTIONS(2923), - [anon_sym_uint] = ACTIONS(2923), - [anon_sym_float] = ACTIONS(2923), - [anon_sym_range] = ACTIONS(2923), - [anon_sym_i8] = ACTIONS(2923), - [anon_sym_i16] = ACTIONS(2923), - [anon_sym_i32] = ACTIONS(2923), - [anon_sym_i64] = ACTIONS(2923), - [anon_sym_u8] = ACTIONS(2923), - [anon_sym_u16] = ACTIONS(2923), - [anon_sym_u32] = ACTIONS(2923), - [anon_sym_u64] = ACTIONS(2923), - [anon_sym_isize] = ACTIONS(2923), - [anon_sym_usize] = ACTIONS(2923), - [anon_sym_f32] = ACTIONS(2923), - [anon_sym_f64] = ACTIONS(2923), - [anon_sym_c_char] = ACTIONS(2923), - [anon_sym_c_schar] = ACTIONS(2923), - [anon_sym_c_uchar] = ACTIONS(2923), - [anon_sym_c_short] = ACTIONS(2923), - [anon_sym_c_ushort] = ACTIONS(2923), - [anon_sym_c_int] = ACTIONS(2923), - [anon_sym_c_uint] = ACTIONS(2923), - [anon_sym_c_long] = ACTIONS(2923), - [anon_sym_c_ulong] = ACTIONS(2923), - [anon_sym_c_longlong] = ACTIONS(2923), - [anon_sym_c_ulonglong] = ACTIONS(2923), - [anon_sym_c_float] = ACTIONS(2923), - [anon_sym_c_double] = ACTIONS(2923), - [anon_sym_c_longdouble] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_yield] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_defer] = ACTIONS(2923), - [anon_sym_errdefer] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_while] = ACTIONS(2923), - [anon_sym_expand] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_undefined] = ACTIONS(2923), - [sym_sink] = ACTIONS(2923), - [sym_integer] = ACTIONS(2923), - [sym_float] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_multiline_string] = ACTIONS(2921), - [sym_character] = ACTIONS(2921), + [STATE(1316)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(595), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1320), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2919), + }, + [STATE(1317)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(568), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2921), }, - [STATE(1187)] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_import] = ACTIONS(2927), - [anon_sym_test] = ACTIONS(2927), - [anon_sym_hide] = ACTIONS(2927), - [anon_sym_func] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2925), - [anon_sym_DOLLAR] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_void] = ACTIONS(2927), - [anon_sym_anyopaque] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_int] = ACTIONS(2927), - [anon_sym_uint] = ACTIONS(2927), - [anon_sym_float] = ACTIONS(2927), - [anon_sym_range] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_c_char] = ACTIONS(2927), - [anon_sym_c_schar] = ACTIONS(2927), - [anon_sym_c_uchar] = ACTIONS(2927), - [anon_sym_c_short] = ACTIONS(2927), - [anon_sym_c_ushort] = ACTIONS(2927), - [anon_sym_c_int] = ACTIONS(2927), - [anon_sym_c_uint] = ACTIONS(2927), - [anon_sym_c_long] = ACTIONS(2927), - [anon_sym_c_ulong] = ACTIONS(2927), - [anon_sym_c_longlong] = ACTIONS(2927), - [anon_sym_c_ulonglong] = ACTIONS(2927), - [anon_sym_c_float] = ACTIONS(2927), - [anon_sym_c_double] = ACTIONS(2927), - [anon_sym_c_longdouble] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_yield] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_errdefer] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_while] = ACTIONS(2927), - [anon_sym_expand] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_undefined] = ACTIONS(2927), - [sym_sink] = ACTIONS(2927), - [sym_integer] = ACTIONS(2927), - [sym_float] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_multiline_string] = ACTIONS(2925), - [sym_character] = ACTIONS(2925), + [STATE(1318)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(760), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1403), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2493), + }, + [STATE(1319)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(599), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1320)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(600), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1321)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2443), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1322)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(41), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1323)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(761), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1404), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2923), + }, + [STATE(1324)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(762), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2925), }, - [STATE(1188)] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_import] = ACTIONS(2931), - [anon_sym_test] = ACTIONS(2931), - [anon_sym_hide] = ACTIONS(2931), - [anon_sym_func] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2929), - [anon_sym_DOLLAR] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_void] = ACTIONS(2931), - [anon_sym_anyopaque] = ACTIONS(2931), - [anon_sym_bool] = ACTIONS(2931), - [anon_sym_int] = ACTIONS(2931), - [anon_sym_uint] = ACTIONS(2931), - [anon_sym_float] = ACTIONS(2931), - [anon_sym_range] = ACTIONS(2931), - [anon_sym_i8] = ACTIONS(2931), - [anon_sym_i16] = ACTIONS(2931), - [anon_sym_i32] = ACTIONS(2931), - [anon_sym_i64] = ACTIONS(2931), - [anon_sym_u8] = ACTIONS(2931), - [anon_sym_u16] = ACTIONS(2931), - [anon_sym_u32] = ACTIONS(2931), - [anon_sym_u64] = ACTIONS(2931), - [anon_sym_isize] = ACTIONS(2931), - [anon_sym_usize] = ACTIONS(2931), - [anon_sym_f32] = ACTIONS(2931), - [anon_sym_f64] = ACTIONS(2931), - [anon_sym_c_char] = ACTIONS(2931), - [anon_sym_c_schar] = ACTIONS(2931), - [anon_sym_c_uchar] = ACTIONS(2931), - [anon_sym_c_short] = ACTIONS(2931), - [anon_sym_c_ushort] = ACTIONS(2931), - [anon_sym_c_int] = ACTIONS(2931), - [anon_sym_c_uint] = ACTIONS(2931), - [anon_sym_c_long] = ACTIONS(2931), - [anon_sym_c_ulong] = ACTIONS(2931), - [anon_sym_c_longlong] = ACTIONS(2931), - [anon_sym_c_ulonglong] = ACTIONS(2931), - [anon_sym_c_float] = ACTIONS(2931), - [anon_sym_c_double] = ACTIONS(2931), - [anon_sym_c_longdouble] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_yield] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_errdefer] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_while] = ACTIONS(2931), - [anon_sym_expand] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_undefined] = ACTIONS(2931), - [sym_sink] = ACTIONS(2931), - [sym_integer] = ACTIONS(2931), - [sym_float] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_multiline_string] = ACTIONS(2929), - [sym_character] = ACTIONS(2929), + [STATE(1325)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(42), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1326)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(763), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2927), + }, + [STATE(1327)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(764), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1413), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2929), }, - [STATE(1189)] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_import] = ACTIONS(2935), - [anon_sym_test] = ACTIONS(2935), - [anon_sym_hide] = ACTIONS(2935), - [anon_sym_func] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_RPAREN] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2933), - [anon_sym_DOLLAR] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_void] = ACTIONS(2935), - [anon_sym_anyopaque] = ACTIONS(2935), - [anon_sym_bool] = ACTIONS(2935), - [anon_sym_int] = ACTIONS(2935), - [anon_sym_uint] = ACTIONS(2935), - [anon_sym_float] = ACTIONS(2935), - [anon_sym_range] = ACTIONS(2935), - [anon_sym_i8] = ACTIONS(2935), - [anon_sym_i16] = ACTIONS(2935), - [anon_sym_i32] = ACTIONS(2935), - [anon_sym_i64] = ACTIONS(2935), - [anon_sym_u8] = ACTIONS(2935), - [anon_sym_u16] = ACTIONS(2935), - [anon_sym_u32] = ACTIONS(2935), - [anon_sym_u64] = ACTIONS(2935), - [anon_sym_isize] = ACTIONS(2935), - [anon_sym_usize] = ACTIONS(2935), - [anon_sym_f32] = ACTIONS(2935), - [anon_sym_f64] = ACTIONS(2935), - [anon_sym_c_char] = ACTIONS(2935), - [anon_sym_c_schar] = ACTIONS(2935), - [anon_sym_c_uchar] = ACTIONS(2935), - [anon_sym_c_short] = ACTIONS(2935), - [anon_sym_c_ushort] = ACTIONS(2935), - [anon_sym_c_int] = ACTIONS(2935), - [anon_sym_c_uint] = ACTIONS(2935), - [anon_sym_c_long] = ACTIONS(2935), - [anon_sym_c_ulong] = ACTIONS(2935), - [anon_sym_c_longlong] = ACTIONS(2935), - [anon_sym_c_ulonglong] = ACTIONS(2935), - [anon_sym_c_float] = ACTIONS(2935), - [anon_sym_c_double] = ACTIONS(2935), - [anon_sym_c_longdouble] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_yield] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_errdefer] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_while] = ACTIONS(2935), - [anon_sym_expand] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_undefined] = ACTIONS(2935), - [sym_sink] = ACTIONS(2935), - [sym_integer] = ACTIONS(2935), - [sym_float] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_multiline_string] = ACTIONS(2933), - [sym_character] = ACTIONS(2933), + [STATE(1328)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2311), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1347), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2931), + }, + [STATE(1329)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(16), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1330), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2933), }, - [STATE(1190)] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_import] = ACTIONS(2939), - [anon_sym_test] = ACTIONS(2939), - [anon_sym_hide] = ACTIONS(2939), - [anon_sym_func] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_DASH] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_void] = ACTIONS(2939), - [anon_sym_anyopaque] = ACTIONS(2939), - [anon_sym_bool] = ACTIONS(2939), - [anon_sym_int] = ACTIONS(2939), - [anon_sym_uint] = ACTIONS(2939), - [anon_sym_float] = ACTIONS(2939), - [anon_sym_range] = ACTIONS(2939), - [anon_sym_i8] = ACTIONS(2939), - [anon_sym_i16] = ACTIONS(2939), - [anon_sym_i32] = ACTIONS(2939), - [anon_sym_i64] = ACTIONS(2939), - [anon_sym_u8] = ACTIONS(2939), - [anon_sym_u16] = ACTIONS(2939), - [anon_sym_u32] = ACTIONS(2939), - [anon_sym_u64] = ACTIONS(2939), - [anon_sym_isize] = ACTIONS(2939), - [anon_sym_usize] = ACTIONS(2939), - [anon_sym_f32] = ACTIONS(2939), - [anon_sym_f64] = ACTIONS(2939), - [anon_sym_c_char] = ACTIONS(2939), - [anon_sym_c_schar] = ACTIONS(2939), - [anon_sym_c_uchar] = ACTIONS(2939), - [anon_sym_c_short] = ACTIONS(2939), - [anon_sym_c_ushort] = ACTIONS(2939), - [anon_sym_c_int] = ACTIONS(2939), - [anon_sym_c_uint] = ACTIONS(2939), - [anon_sym_c_long] = ACTIONS(2939), - [anon_sym_c_ulong] = ACTIONS(2939), - [anon_sym_c_longlong] = ACTIONS(2939), - [anon_sym_c_ulonglong] = ACTIONS(2939), - [anon_sym_c_float] = ACTIONS(2939), - [anon_sym_c_double] = ACTIONS(2939), - [anon_sym_c_longdouble] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_yield] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_errdefer] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_while] = ACTIONS(2939), - [anon_sym_expand] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_undefined] = ACTIONS(2939), - [sym_sink] = ACTIONS(2939), - [sym_integer] = ACTIONS(2939), - [sym_float] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_multiline_string] = ACTIONS(2937), - [sym_character] = ACTIONS(2937), + [STATE(1330)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(17), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1331)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(576), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1333), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2935), + }, + [STATE(1332)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(578), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1334), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2937), }, - [STATE(1191)] = { - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_import] = ACTIONS(2943), - [anon_sym_test] = ACTIONS(2943), - [anon_sym_hide] = ACTIONS(2943), - [anon_sym_func] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_DOLLAR] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_void] = ACTIONS(2943), - [anon_sym_anyopaque] = ACTIONS(2943), - [anon_sym_bool] = ACTIONS(2943), - [anon_sym_int] = ACTIONS(2943), - [anon_sym_uint] = ACTIONS(2943), - [anon_sym_float] = ACTIONS(2943), - [anon_sym_range] = ACTIONS(2943), - [anon_sym_i8] = ACTIONS(2943), - [anon_sym_i16] = ACTIONS(2943), - [anon_sym_i32] = ACTIONS(2943), - [anon_sym_i64] = ACTIONS(2943), - [anon_sym_u8] = ACTIONS(2943), - [anon_sym_u16] = ACTIONS(2943), - [anon_sym_u32] = ACTIONS(2943), - [anon_sym_u64] = ACTIONS(2943), - [anon_sym_isize] = ACTIONS(2943), - [anon_sym_usize] = ACTIONS(2943), - [anon_sym_f32] = ACTIONS(2943), - [anon_sym_f64] = ACTIONS(2943), - [anon_sym_c_char] = ACTIONS(2943), - [anon_sym_c_schar] = ACTIONS(2943), - [anon_sym_c_uchar] = ACTIONS(2943), - [anon_sym_c_short] = ACTIONS(2943), - [anon_sym_c_ushort] = ACTIONS(2943), - [anon_sym_c_int] = ACTIONS(2943), - [anon_sym_c_uint] = ACTIONS(2943), - [anon_sym_c_long] = ACTIONS(2943), - [anon_sym_c_ulong] = ACTIONS(2943), - [anon_sym_c_longlong] = ACTIONS(2943), - [anon_sym_c_ulonglong] = ACTIONS(2943), - [anon_sym_c_float] = ACTIONS(2943), - [anon_sym_c_double] = ACTIONS(2943), - [anon_sym_c_longdouble] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_yield] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_errdefer] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_else] = ACTIONS(2943), - [anon_sym_while] = ACTIONS(2943), - [anon_sym_expand] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_undefined] = ACTIONS(2943), - [sym_sink] = ACTIONS(2943), - [sym_integer] = ACTIONS(2943), - [sym_float] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_multiline_string] = ACTIONS(2941), - [sym_character] = ACTIONS(2941), + [STATE(1333)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(579), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1334)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(580), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1335)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2476), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1336)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(12), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1337), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2939), + }, + [STATE(1337)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(13), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1338)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2429), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1340), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2941), }, - [STATE(1192)] = { - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2947), - [anon_sym_import] = ACTIONS(2947), - [anon_sym_test] = ACTIONS(2947), - [anon_sym_hide] = ACTIONS(2947), - [anon_sym_func] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2945), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_void] = ACTIONS(2947), - [anon_sym_anyopaque] = ACTIONS(2947), - [anon_sym_bool] = ACTIONS(2947), - [anon_sym_int] = ACTIONS(2947), - [anon_sym_uint] = ACTIONS(2947), - [anon_sym_float] = ACTIONS(2947), - [anon_sym_range] = ACTIONS(2947), - [anon_sym_i8] = ACTIONS(2947), - [anon_sym_i16] = ACTIONS(2947), - [anon_sym_i32] = ACTIONS(2947), - [anon_sym_i64] = ACTIONS(2947), - [anon_sym_u8] = ACTIONS(2947), - [anon_sym_u16] = ACTIONS(2947), - [anon_sym_u32] = ACTIONS(2947), - [anon_sym_u64] = ACTIONS(2947), - [anon_sym_isize] = ACTIONS(2947), - [anon_sym_usize] = ACTIONS(2947), - [anon_sym_f32] = ACTIONS(2947), - [anon_sym_f64] = ACTIONS(2947), - [anon_sym_c_char] = ACTIONS(2947), - [anon_sym_c_schar] = ACTIONS(2947), - [anon_sym_c_uchar] = ACTIONS(2947), - [anon_sym_c_short] = ACTIONS(2947), - [anon_sym_c_ushort] = ACTIONS(2947), - [anon_sym_c_int] = ACTIONS(2947), - [anon_sym_c_uint] = ACTIONS(2947), - [anon_sym_c_long] = ACTIONS(2947), - [anon_sym_c_ulong] = ACTIONS(2947), - [anon_sym_c_longlong] = ACTIONS(2947), - [anon_sym_c_ulonglong] = ACTIONS(2947), - [anon_sym_c_float] = ACTIONS(2947), - [anon_sym_c_double] = ACTIONS(2947), - [anon_sym_c_longdouble] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_yield] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_errdefer] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_else] = ACTIONS(2947), - [anon_sym_while] = ACTIONS(2947), - [anon_sym_expand] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_undefined] = ACTIONS(2947), - [sym_sink] = ACTIONS(2947), - [sym_integer] = ACTIONS(2947), - [sym_float] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_multiline_string] = ACTIONS(2945), - [sym_character] = ACTIONS(2945), + [STATE(1339)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(8), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2943), + }, + [STATE(1340)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2453), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1341)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(9), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1342)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(585), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1437), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2945), }, - [STATE(1193)] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2951), - [anon_sym_import] = ACTIONS(2951), - [anon_sym_test] = ACTIONS(2951), - [anon_sym_hide] = ACTIONS(2951), - [anon_sym_func] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DOLLAR] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_void] = ACTIONS(2951), - [anon_sym_anyopaque] = ACTIONS(2951), - [anon_sym_bool] = ACTIONS(2951), - [anon_sym_int] = ACTIONS(2951), - [anon_sym_uint] = ACTIONS(2951), - [anon_sym_float] = ACTIONS(2951), - [anon_sym_range] = ACTIONS(2951), - [anon_sym_i8] = ACTIONS(2951), - [anon_sym_i16] = ACTIONS(2951), - [anon_sym_i32] = ACTIONS(2951), - [anon_sym_i64] = ACTIONS(2951), - [anon_sym_u8] = ACTIONS(2951), - [anon_sym_u16] = ACTIONS(2951), - [anon_sym_u32] = ACTIONS(2951), - [anon_sym_u64] = ACTIONS(2951), - [anon_sym_isize] = ACTIONS(2951), - [anon_sym_usize] = ACTIONS(2951), - [anon_sym_f32] = ACTIONS(2951), - [anon_sym_f64] = ACTIONS(2951), - [anon_sym_c_char] = ACTIONS(2951), - [anon_sym_c_schar] = ACTIONS(2951), - [anon_sym_c_uchar] = ACTIONS(2951), - [anon_sym_c_short] = ACTIONS(2951), - [anon_sym_c_ushort] = ACTIONS(2951), - [anon_sym_c_int] = ACTIONS(2951), - [anon_sym_c_uint] = ACTIONS(2951), - [anon_sym_c_long] = ACTIONS(2951), - [anon_sym_c_ulong] = ACTIONS(2951), - [anon_sym_c_longlong] = ACTIONS(2951), - [anon_sym_c_ulonglong] = ACTIONS(2951), - [anon_sym_c_float] = ACTIONS(2951), - [anon_sym_c_double] = ACTIONS(2951), - [anon_sym_c_longdouble] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_defer] = ACTIONS(2951), - [anon_sym_errdefer] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_while] = ACTIONS(2951), - [anon_sym_expand] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_undefined] = ACTIONS(2951), - [sym_sink] = ACTIONS(2951), - [sym_integer] = ACTIONS(2951), - [sym_float] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_multiline_string] = ACTIONS(2949), - [sym_character] = ACTIONS(2949), + [STATE(1343)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2309), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1344)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2312), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1345)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(584), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1199), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2947), + }, + [STATE(1346)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(645), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1347)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2318), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1348)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2320), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1349)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2321), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1350)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2322), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1351)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2323), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1352)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2324), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1353)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2467), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1335), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2949), }, - [STATE(1194)] = { - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2955), - [anon_sym_import] = ACTIONS(2955), - [anon_sym_test] = ACTIONS(2955), - [anon_sym_hide] = ACTIONS(2955), - [anon_sym_func] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2953), - [anon_sym_DOLLAR] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_void] = ACTIONS(2955), - [anon_sym_anyopaque] = ACTIONS(2955), - [anon_sym_bool] = ACTIONS(2955), - [anon_sym_int] = ACTIONS(2955), - [anon_sym_uint] = ACTIONS(2955), - [anon_sym_float] = ACTIONS(2955), - [anon_sym_range] = ACTIONS(2955), - [anon_sym_i8] = ACTIONS(2955), - [anon_sym_i16] = ACTIONS(2955), - [anon_sym_i32] = ACTIONS(2955), - [anon_sym_i64] = ACTIONS(2955), - [anon_sym_u8] = ACTIONS(2955), - [anon_sym_u16] = ACTIONS(2955), - [anon_sym_u32] = ACTIONS(2955), - [anon_sym_u64] = ACTIONS(2955), - [anon_sym_isize] = ACTIONS(2955), - [anon_sym_usize] = ACTIONS(2955), - [anon_sym_f32] = ACTIONS(2955), - [anon_sym_f64] = ACTIONS(2955), - [anon_sym_c_char] = ACTIONS(2955), - [anon_sym_c_schar] = ACTIONS(2955), - [anon_sym_c_uchar] = ACTIONS(2955), - [anon_sym_c_short] = ACTIONS(2955), - [anon_sym_c_ushort] = ACTIONS(2955), - [anon_sym_c_int] = ACTIONS(2955), - [anon_sym_c_uint] = ACTIONS(2955), - [anon_sym_c_long] = ACTIONS(2955), - [anon_sym_c_ulong] = ACTIONS(2955), - [anon_sym_c_longlong] = ACTIONS(2955), - [anon_sym_c_ulonglong] = ACTIONS(2955), - [anon_sym_c_float] = ACTIONS(2955), - [anon_sym_c_double] = ACTIONS(2955), - [anon_sym_c_longdouble] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_yield] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_defer] = ACTIONS(2955), - [anon_sym_errdefer] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_while] = ACTIONS(2955), - [anon_sym_expand] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [sym_none] = ACTIONS(2955), - [sym_undefined] = ACTIONS(2955), - [sym_sink] = ACTIONS(2955), - [sym_integer] = ACTIONS(2955), - [sym_float] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_multiline_string] = ACTIONS(2953), - [sym_character] = ACTIONS(2953), + [STATE(1354)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2467), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1355)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1357), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2951), + }, + [STATE(1356)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(769), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1357)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1358)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2450), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1359)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2364), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1360)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(770), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1361)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2262), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1371), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2953), }, - [STATE(1195)] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_import] = ACTIONS(2959), - [anon_sym_test] = ACTIONS(2959), - [anon_sym_hide] = ACTIONS(2959), - [anon_sym_func] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_DOLLAR] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_void] = ACTIONS(2959), - [anon_sym_anyopaque] = ACTIONS(2959), - [anon_sym_bool] = ACTIONS(2959), - [anon_sym_int] = ACTIONS(2959), - [anon_sym_uint] = ACTIONS(2959), - [anon_sym_float] = ACTIONS(2959), - [anon_sym_range] = ACTIONS(2959), - [anon_sym_i8] = ACTIONS(2959), - [anon_sym_i16] = ACTIONS(2959), - [anon_sym_i32] = ACTIONS(2959), - [anon_sym_i64] = ACTIONS(2959), - [anon_sym_u8] = ACTIONS(2959), - [anon_sym_u16] = ACTIONS(2959), - [anon_sym_u32] = ACTIONS(2959), - [anon_sym_u64] = ACTIONS(2959), - [anon_sym_isize] = ACTIONS(2959), - [anon_sym_usize] = ACTIONS(2959), - [anon_sym_f32] = ACTIONS(2959), - [anon_sym_f64] = ACTIONS(2959), - [anon_sym_c_char] = ACTIONS(2959), - [anon_sym_c_schar] = ACTIONS(2959), - [anon_sym_c_uchar] = ACTIONS(2959), - [anon_sym_c_short] = ACTIONS(2959), - [anon_sym_c_ushort] = ACTIONS(2959), - [anon_sym_c_int] = ACTIONS(2959), - [anon_sym_c_uint] = ACTIONS(2959), - [anon_sym_c_long] = ACTIONS(2959), - [anon_sym_c_ulong] = ACTIONS(2959), - [anon_sym_c_longlong] = ACTIONS(2959), - [anon_sym_c_ulonglong] = ACTIONS(2959), - [anon_sym_c_float] = ACTIONS(2959), - [anon_sym_c_double] = ACTIONS(2959), - [anon_sym_c_longdouble] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_yield] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_errdefer] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_while] = ACTIONS(2959), - [anon_sym_expand] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_undefined] = ACTIONS(2959), - [sym_sink] = ACTIONS(2959), - [sym_integer] = ACTIONS(2959), - [sym_float] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_multiline_string] = ACTIONS(2957), - [sym_character] = ACTIONS(2957), + [STATE(1362)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2263), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1372), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2955), + }, + [STATE(1363)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2091), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1373), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2957), }, - [STATE(1196)] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_test] = ACTIONS(2963), - [anon_sym_hide] = ACTIONS(2963), - [anon_sym_func] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_DOLLAR] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_void] = ACTIONS(2963), - [anon_sym_anyopaque] = ACTIONS(2963), - [anon_sym_bool] = ACTIONS(2963), - [anon_sym_int] = ACTIONS(2963), - [anon_sym_uint] = ACTIONS(2963), - [anon_sym_float] = ACTIONS(2963), - [anon_sym_range] = ACTIONS(2963), - [anon_sym_i8] = ACTIONS(2963), - [anon_sym_i16] = ACTIONS(2963), - [anon_sym_i32] = ACTIONS(2963), - [anon_sym_i64] = ACTIONS(2963), - [anon_sym_u8] = ACTIONS(2963), - [anon_sym_u16] = ACTIONS(2963), - [anon_sym_u32] = ACTIONS(2963), - [anon_sym_u64] = ACTIONS(2963), - [anon_sym_isize] = ACTIONS(2963), - [anon_sym_usize] = ACTIONS(2963), - [anon_sym_f32] = ACTIONS(2963), - [anon_sym_f64] = ACTIONS(2963), - [anon_sym_c_char] = ACTIONS(2963), - [anon_sym_c_schar] = ACTIONS(2963), - [anon_sym_c_uchar] = ACTIONS(2963), - [anon_sym_c_short] = ACTIONS(2963), - [anon_sym_c_ushort] = ACTIONS(2963), - [anon_sym_c_int] = ACTIONS(2963), - [anon_sym_c_uint] = ACTIONS(2963), - [anon_sym_c_long] = ACTIONS(2963), - [anon_sym_c_ulong] = ACTIONS(2963), - [anon_sym_c_longlong] = ACTIONS(2963), - [anon_sym_c_ulonglong] = ACTIONS(2963), - [anon_sym_c_float] = ACTIONS(2963), - [anon_sym_c_double] = ACTIONS(2963), - [anon_sym_c_longdouble] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_yield] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_defer] = ACTIONS(2963), - [anon_sym_errdefer] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_while] = ACTIONS(2963), - [anon_sym_expand] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2963), - [anon_sym_false] = ACTIONS(2963), - [sym_none] = ACTIONS(2963), - [sym_undefined] = ACTIONS(2963), - [sym_sink] = ACTIONS(2963), - [sym_integer] = ACTIONS(2963), - [sym_float] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_multiline_string] = ACTIONS(2961), - [sym_character] = ACTIONS(2961), + [STATE(1364)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2264), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1374), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2959), + }, + [STATE(1365)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2265), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1375), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2745), + }, + [STATE(1366)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(645), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1367)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2266), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1376), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2961), }, - [STATE(1197)] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_import] = ACTIONS(2967), - [anon_sym_test] = ACTIONS(2967), - [anon_sym_hide] = ACTIONS(2967), - [anon_sym_func] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_DOLLAR] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_void] = ACTIONS(2967), - [anon_sym_anyopaque] = ACTIONS(2967), - [anon_sym_bool] = ACTIONS(2967), - [anon_sym_int] = ACTIONS(2967), - [anon_sym_uint] = ACTIONS(2967), - [anon_sym_float] = ACTIONS(2967), - [anon_sym_range] = ACTIONS(2967), - [anon_sym_i8] = ACTIONS(2967), - [anon_sym_i16] = ACTIONS(2967), - [anon_sym_i32] = ACTIONS(2967), - [anon_sym_i64] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2967), - [anon_sym_u16] = ACTIONS(2967), - [anon_sym_u32] = ACTIONS(2967), - [anon_sym_u64] = ACTIONS(2967), - [anon_sym_isize] = ACTIONS(2967), - [anon_sym_usize] = ACTIONS(2967), - [anon_sym_f32] = ACTIONS(2967), - [anon_sym_f64] = ACTIONS(2967), - [anon_sym_c_char] = ACTIONS(2967), - [anon_sym_c_schar] = ACTIONS(2967), - [anon_sym_c_uchar] = ACTIONS(2967), - [anon_sym_c_short] = ACTIONS(2967), - [anon_sym_c_ushort] = ACTIONS(2967), - [anon_sym_c_int] = ACTIONS(2967), - [anon_sym_c_uint] = ACTIONS(2967), - [anon_sym_c_long] = ACTIONS(2967), - [anon_sym_c_ulong] = ACTIONS(2967), - [anon_sym_c_longlong] = ACTIONS(2967), - [anon_sym_c_ulonglong] = ACTIONS(2967), - [anon_sym_c_float] = ACTIONS(2967), - [anon_sym_c_double] = ACTIONS(2967), - [anon_sym_c_longdouble] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_yield] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_errdefer] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_while] = ACTIONS(2967), - [anon_sym_expand] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_true] = ACTIONS(2967), - [anon_sym_false] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_undefined] = ACTIONS(2967), - [sym_sink] = ACTIONS(2967), - [sym_integer] = ACTIONS(2967), - [sym_float] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym_multiline_string] = ACTIONS(2965), - [sym_character] = ACTIONS(2965), + [STATE(1368)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2267), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1377), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2963), + }, + [STATE(1369)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2268), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1378), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2965), }, - [STATE(1198)] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_import] = ACTIONS(2971), - [anon_sym_test] = ACTIONS(2971), - [anon_sym_hide] = ACTIONS(2971), - [anon_sym_func] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_void] = ACTIONS(2971), - [anon_sym_anyopaque] = ACTIONS(2971), - [anon_sym_bool] = ACTIONS(2971), - [anon_sym_int] = ACTIONS(2971), - [anon_sym_uint] = ACTIONS(2971), - [anon_sym_float] = ACTIONS(2971), - [anon_sym_range] = ACTIONS(2971), - [anon_sym_i8] = ACTIONS(2971), - [anon_sym_i16] = ACTIONS(2971), - [anon_sym_i32] = ACTIONS(2971), - [anon_sym_i64] = ACTIONS(2971), - [anon_sym_u8] = ACTIONS(2971), - [anon_sym_u16] = ACTIONS(2971), - [anon_sym_u32] = ACTIONS(2971), - [anon_sym_u64] = ACTIONS(2971), - [anon_sym_isize] = ACTIONS(2971), - [anon_sym_usize] = ACTIONS(2971), - [anon_sym_f32] = ACTIONS(2971), - [anon_sym_f64] = ACTIONS(2971), - [anon_sym_c_char] = ACTIONS(2971), - [anon_sym_c_schar] = ACTIONS(2971), - [anon_sym_c_uchar] = ACTIONS(2971), - [anon_sym_c_short] = ACTIONS(2971), - [anon_sym_c_ushort] = ACTIONS(2971), - [anon_sym_c_int] = ACTIONS(2971), - [anon_sym_c_uint] = ACTIONS(2971), - [anon_sym_c_long] = ACTIONS(2971), - [anon_sym_c_ulong] = ACTIONS(2971), - [anon_sym_c_longlong] = ACTIONS(2971), - [anon_sym_c_ulonglong] = ACTIONS(2971), - [anon_sym_c_float] = ACTIONS(2971), - [anon_sym_c_double] = ACTIONS(2971), - [anon_sym_c_longdouble] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_yield] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_errdefer] = ACTIONS(2971), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2971), - [anon_sym_while] = ACTIONS(2971), - [anon_sym_expand] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2969), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [sym_none] = ACTIONS(2971), - [sym_undefined] = ACTIONS(2971), - [sym_sink] = ACTIONS(2971), - [sym_integer] = ACTIONS(2971), - [sym_float] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym_multiline_string] = ACTIONS(2969), - [sym_character] = ACTIONS(2969), + [STATE(1370)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2258), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1379), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2967), + }, + [STATE(1371)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2269), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1372)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2270), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1373)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2132), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1374)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2271), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1375)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2272), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1376)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2273), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1377)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2274), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1378)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2275), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1379)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2276), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(209), + [anon_sym_TILDE] = ACTIONS(209), + [anon_sym_try] = ACTIONS(183), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1380)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2427), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1381)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(55), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2969), }, - [STATE(1199)] = { - [ts_builtin_sym_end] = ACTIONS(2973), - [sym_identifier] = ACTIONS(2975), - [anon_sym_import] = ACTIONS(2975), - [anon_sym_test] = ACTIONS(2975), - [anon_sym_hide] = ACTIONS(2975), - [anon_sym_func] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_DOLLAR] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_void] = ACTIONS(2975), - [anon_sym_anyopaque] = ACTIONS(2975), - [anon_sym_bool] = ACTIONS(2975), - [anon_sym_int] = ACTIONS(2975), - [anon_sym_uint] = ACTIONS(2975), - [anon_sym_float] = ACTIONS(2975), - [anon_sym_range] = ACTIONS(2975), - [anon_sym_i8] = ACTIONS(2975), - [anon_sym_i16] = ACTIONS(2975), - [anon_sym_i32] = ACTIONS(2975), - [anon_sym_i64] = ACTIONS(2975), - [anon_sym_u8] = ACTIONS(2975), - [anon_sym_u16] = ACTIONS(2975), - [anon_sym_u32] = ACTIONS(2975), - [anon_sym_u64] = ACTIONS(2975), - [anon_sym_isize] = ACTIONS(2975), - [anon_sym_usize] = ACTIONS(2975), - [anon_sym_f32] = ACTIONS(2975), - [anon_sym_f64] = ACTIONS(2975), - [anon_sym_c_char] = ACTIONS(2975), - [anon_sym_c_schar] = ACTIONS(2975), - [anon_sym_c_uchar] = ACTIONS(2975), - [anon_sym_c_short] = ACTIONS(2975), - [anon_sym_c_ushort] = ACTIONS(2975), - [anon_sym_c_int] = ACTIONS(2975), - [anon_sym_c_uint] = ACTIONS(2975), - [anon_sym_c_long] = ACTIONS(2975), - [anon_sym_c_ulong] = ACTIONS(2975), - [anon_sym_c_longlong] = ACTIONS(2975), - [anon_sym_c_ulonglong] = ACTIONS(2975), - [anon_sym_c_float] = ACTIONS(2975), - [anon_sym_c_double] = ACTIONS(2975), - [anon_sym_c_longdouble] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2975), - [anon_sym_yield] = ACTIONS(2975), - [anon_sym_break] = ACTIONS(2975), - [anon_sym_continue] = ACTIONS(2975), - [anon_sym_defer] = ACTIONS(2975), - [anon_sym_errdefer] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_while] = ACTIONS(2975), - [anon_sym_expand] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2975), - [anon_sym_match] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2975), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2975), - [anon_sym_false] = ACTIONS(2975), - [sym_none] = ACTIONS(2975), - [sym_undefined] = ACTIONS(2975), - [sym_sink] = ACTIONS(2975), - [sym_integer] = ACTIONS(2975), - [sym_float] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [sym_multiline_string] = ACTIONS(2973), - [sym_character] = ACTIONS(2973), + [STATE(1382)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2308), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2971), + }, + [STATE(1383)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(45), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1384)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(771), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1385)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2251), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1394), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2973), }, - [STATE(1200)] = { - [ts_builtin_sym_end] = ACTIONS(2977), - [sym_identifier] = ACTIONS(2979), - [anon_sym_import] = ACTIONS(2979), - [anon_sym_test] = ACTIONS(2979), - [anon_sym_hide] = ACTIONS(2979), - [anon_sym_func] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2977), - [anon_sym_void] = ACTIONS(2979), - [anon_sym_anyopaque] = ACTIONS(2979), - [anon_sym_bool] = ACTIONS(2979), - [anon_sym_int] = ACTIONS(2979), - [anon_sym_uint] = ACTIONS(2979), - [anon_sym_float] = ACTIONS(2979), - [anon_sym_range] = ACTIONS(2979), - [anon_sym_i8] = ACTIONS(2979), - [anon_sym_i16] = ACTIONS(2979), - [anon_sym_i32] = ACTIONS(2979), - [anon_sym_i64] = ACTIONS(2979), - [anon_sym_u8] = ACTIONS(2979), - [anon_sym_u16] = ACTIONS(2979), - [anon_sym_u32] = ACTIONS(2979), - [anon_sym_u64] = ACTIONS(2979), - [anon_sym_isize] = ACTIONS(2979), - [anon_sym_usize] = ACTIONS(2979), - [anon_sym_f32] = ACTIONS(2979), - [anon_sym_f64] = ACTIONS(2979), - [anon_sym_c_char] = ACTIONS(2979), - [anon_sym_c_schar] = ACTIONS(2979), - [anon_sym_c_uchar] = ACTIONS(2979), - [anon_sym_c_short] = ACTIONS(2979), - [anon_sym_c_ushort] = ACTIONS(2979), - [anon_sym_c_int] = ACTIONS(2979), - [anon_sym_c_uint] = ACTIONS(2979), - [anon_sym_c_long] = ACTIONS(2979), - [anon_sym_c_ulong] = ACTIONS(2979), - [anon_sym_c_longlong] = ACTIONS(2979), - [anon_sym_c_ulonglong] = ACTIONS(2979), - [anon_sym_c_float] = ACTIONS(2979), - [anon_sym_c_double] = ACTIONS(2979), - [anon_sym_c_longdouble] = ACTIONS(2979), - [anon_sym_return] = ACTIONS(2979), - [anon_sym_yield] = ACTIONS(2979), - [anon_sym_break] = ACTIONS(2979), - [anon_sym_continue] = ACTIONS(2979), - [anon_sym_defer] = ACTIONS(2979), - [anon_sym_errdefer] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_while] = ACTIONS(2979), - [anon_sym_expand] = ACTIONS(2979), - [anon_sym_for] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2979), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [sym_none] = ACTIONS(2979), - [sym_undefined] = ACTIONS(2979), - [sym_sink] = ACTIONS(2979), - [sym_integer] = ACTIONS(2979), - [sym_float] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_multiline_string] = ACTIONS(2977), - [sym_character] = ACTIONS(2977), + [STATE(1386)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2250), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1395), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2975), + }, + [STATE(1387)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(59), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1396), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2977), }, - [STATE(1201)] = { - [ts_builtin_sym_end] = ACTIONS(2981), - [sym_identifier] = ACTIONS(2983), - [anon_sym_import] = ACTIONS(2983), - [anon_sym_test] = ACTIONS(2983), - [anon_sym_hide] = ACTIONS(2983), - [anon_sym_func] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2981), - [anon_sym_void] = ACTIONS(2983), - [anon_sym_anyopaque] = ACTIONS(2983), - [anon_sym_bool] = ACTIONS(2983), - [anon_sym_int] = ACTIONS(2983), - [anon_sym_uint] = ACTIONS(2983), - [anon_sym_float] = ACTIONS(2983), - [anon_sym_range] = ACTIONS(2983), - [anon_sym_i8] = ACTIONS(2983), - [anon_sym_i16] = ACTIONS(2983), - [anon_sym_i32] = ACTIONS(2983), - [anon_sym_i64] = ACTIONS(2983), - [anon_sym_u8] = ACTIONS(2983), - [anon_sym_u16] = ACTIONS(2983), - [anon_sym_u32] = ACTIONS(2983), - [anon_sym_u64] = ACTIONS(2983), - [anon_sym_isize] = ACTIONS(2983), - [anon_sym_usize] = ACTIONS(2983), - [anon_sym_f32] = ACTIONS(2983), - [anon_sym_f64] = ACTIONS(2983), - [anon_sym_c_char] = ACTIONS(2983), - [anon_sym_c_schar] = ACTIONS(2983), - [anon_sym_c_uchar] = ACTIONS(2983), - [anon_sym_c_short] = ACTIONS(2983), - [anon_sym_c_ushort] = ACTIONS(2983), - [anon_sym_c_int] = ACTIONS(2983), - [anon_sym_c_uint] = ACTIONS(2983), - [anon_sym_c_long] = ACTIONS(2983), - [anon_sym_c_ulong] = ACTIONS(2983), - [anon_sym_c_longlong] = ACTIONS(2983), - [anon_sym_c_ulonglong] = ACTIONS(2983), - [anon_sym_c_float] = ACTIONS(2983), - [anon_sym_c_double] = ACTIONS(2983), - [anon_sym_c_longdouble] = ACTIONS(2983), - [anon_sym_return] = ACTIONS(2983), - [anon_sym_yield] = ACTIONS(2983), - [anon_sym_break] = ACTIONS(2983), - [anon_sym_continue] = ACTIONS(2983), - [anon_sym_defer] = ACTIONS(2983), - [anon_sym_errdefer] = ACTIONS(2983), - [anon_sym_if] = ACTIONS(2983), - [anon_sym_else] = ACTIONS(2983), - [anon_sym_while] = ACTIONS(2983), - [anon_sym_expand] = ACTIONS(2983), - [anon_sym_for] = ACTIONS(2983), - [anon_sym_match] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2983), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2983), - [anon_sym_false] = ACTIONS(2983), - [sym_none] = ACTIONS(2983), - [sym_undefined] = ACTIONS(2983), - [sym_sink] = ACTIONS(2983), - [sym_integer] = ACTIONS(2983), - [sym_float] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym_multiline_string] = ACTIONS(2981), - [sym_character] = ACTIONS(2981), + [STATE(1388)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2252), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1397), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2979), + }, + [STATE(1389)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2253), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1398), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2751), + }, + [STATE(1390)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2254), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1399), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2981), }, - [STATE(1202)] = { - [ts_builtin_sym_end] = ACTIONS(2985), - [sym_identifier] = ACTIONS(2987), - [anon_sym_import] = ACTIONS(2987), - [anon_sym_test] = ACTIONS(2987), - [anon_sym_hide] = ACTIONS(2987), - [anon_sym_func] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_DOLLAR] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_void] = ACTIONS(2987), - [anon_sym_anyopaque] = ACTIONS(2987), - [anon_sym_bool] = ACTIONS(2987), - [anon_sym_int] = ACTIONS(2987), - [anon_sym_uint] = ACTIONS(2987), - [anon_sym_float] = ACTIONS(2987), - [anon_sym_range] = ACTIONS(2987), - [anon_sym_i8] = ACTIONS(2987), - [anon_sym_i16] = ACTIONS(2987), - [anon_sym_i32] = ACTIONS(2987), - [anon_sym_i64] = ACTIONS(2987), - [anon_sym_u8] = ACTIONS(2987), - [anon_sym_u16] = ACTIONS(2987), - [anon_sym_u32] = ACTIONS(2987), - [anon_sym_u64] = ACTIONS(2987), - [anon_sym_isize] = ACTIONS(2987), - [anon_sym_usize] = ACTIONS(2987), - [anon_sym_f32] = ACTIONS(2987), - [anon_sym_f64] = ACTIONS(2987), - [anon_sym_c_char] = ACTIONS(2987), - [anon_sym_c_schar] = ACTIONS(2987), - [anon_sym_c_uchar] = ACTIONS(2987), - [anon_sym_c_short] = ACTIONS(2987), - [anon_sym_c_ushort] = ACTIONS(2987), - [anon_sym_c_int] = ACTIONS(2987), - [anon_sym_c_uint] = ACTIONS(2987), - [anon_sym_c_long] = ACTIONS(2987), - [anon_sym_c_ulong] = ACTIONS(2987), - [anon_sym_c_longlong] = ACTIONS(2987), - [anon_sym_c_ulonglong] = ACTIONS(2987), - [anon_sym_c_float] = ACTIONS(2987), - [anon_sym_c_double] = ACTIONS(2987), - [anon_sym_c_longdouble] = ACTIONS(2987), - [anon_sym_return] = ACTIONS(2987), - [anon_sym_yield] = ACTIONS(2987), - [anon_sym_break] = ACTIONS(2987), - [anon_sym_continue] = ACTIONS(2987), - [anon_sym_defer] = ACTIONS(2987), - [anon_sym_errdefer] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2987), - [anon_sym_else] = ACTIONS(2987), - [anon_sym_while] = ACTIONS(2987), - [anon_sym_expand] = ACTIONS(2987), - [anon_sym_for] = ACTIONS(2987), - [anon_sym_match] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2987), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_true] = ACTIONS(2987), - [anon_sym_false] = ACTIONS(2987), - [sym_none] = ACTIONS(2987), - [sym_undefined] = ACTIONS(2987), - [sym_sink] = ACTIONS(2987), - [sym_integer] = ACTIONS(2987), - [sym_float] = ACTIONS(2985), - [anon_sym_DQUOTE] = ACTIONS(2985), - [sym_multiline_string] = ACTIONS(2985), - [sym_character] = ACTIONS(2985), + [STATE(1391)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2255), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1400), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2983), + }, + [STATE(1392)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2256), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1401), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2985), }, - [STATE(1203)] = { - [ts_builtin_sym_end] = ACTIONS(2989), - [sym_identifier] = ACTIONS(2991), - [anon_sym_import] = ACTIONS(2991), - [anon_sym_test] = ACTIONS(2991), - [anon_sym_hide] = ACTIONS(2991), - [anon_sym_func] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_DOLLAR] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_void] = ACTIONS(2991), - [anon_sym_anyopaque] = ACTIONS(2991), - [anon_sym_bool] = ACTIONS(2991), - [anon_sym_int] = ACTIONS(2991), - [anon_sym_uint] = ACTIONS(2991), - [anon_sym_float] = ACTIONS(2991), - [anon_sym_range] = ACTIONS(2991), - [anon_sym_i8] = ACTIONS(2991), - [anon_sym_i16] = ACTIONS(2991), - [anon_sym_i32] = ACTIONS(2991), - [anon_sym_i64] = ACTIONS(2991), - [anon_sym_u8] = ACTIONS(2991), - [anon_sym_u16] = ACTIONS(2991), - [anon_sym_u32] = ACTIONS(2991), - [anon_sym_u64] = ACTIONS(2991), - [anon_sym_isize] = ACTIONS(2991), - [anon_sym_usize] = ACTIONS(2991), - [anon_sym_f32] = ACTIONS(2991), - [anon_sym_f64] = ACTIONS(2991), - [anon_sym_c_char] = ACTIONS(2991), - [anon_sym_c_schar] = ACTIONS(2991), - [anon_sym_c_uchar] = ACTIONS(2991), - [anon_sym_c_short] = ACTIONS(2991), - [anon_sym_c_ushort] = ACTIONS(2991), - [anon_sym_c_int] = ACTIONS(2991), - [anon_sym_c_uint] = ACTIONS(2991), - [anon_sym_c_long] = ACTIONS(2991), - [anon_sym_c_ulong] = ACTIONS(2991), - [anon_sym_c_longlong] = ACTIONS(2991), - [anon_sym_c_ulonglong] = ACTIONS(2991), - [anon_sym_c_float] = ACTIONS(2991), - [anon_sym_c_double] = ACTIONS(2991), - [anon_sym_c_longdouble] = ACTIONS(2991), - [anon_sym_return] = ACTIONS(2991), - [anon_sym_yield] = ACTIONS(2991), - [anon_sym_break] = ACTIONS(2991), - [anon_sym_continue] = ACTIONS(2991), - [anon_sym_defer] = ACTIONS(2991), - [anon_sym_errdefer] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_else] = ACTIONS(2991), - [anon_sym_while] = ACTIONS(2991), - [anon_sym_expand] = ACTIONS(2991), - [anon_sym_for] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_true] = ACTIONS(2991), - [anon_sym_false] = ACTIONS(2991), - [sym_none] = ACTIONS(2991), - [sym_undefined] = ACTIONS(2991), - [sym_sink] = ACTIONS(2991), - [sym_integer] = ACTIONS(2991), - [sym_float] = ACTIONS(2989), - [anon_sym_DQUOTE] = ACTIONS(2989), - [sym_multiline_string] = ACTIONS(2989), - [sym_character] = ACTIONS(2989), + [STATE(1393)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2257), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2987), + }, + [STATE(1394)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2241), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1395)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2240), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1396)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(82), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1397)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2243), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1398)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2242), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1399)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2247), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1400)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2244), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1401)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2245), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1402)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(2246), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(157), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_try] = ACTIONS(139), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1403)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(772), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1404)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(773), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1405)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(774), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1406)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(775), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1407)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(569), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1408)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(570), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1409)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(7), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1281), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2989), }, - [STATE(1204)] = { - [ts_builtin_sym_end] = ACTIONS(2993), - [sym_identifier] = ACTIONS(2995), - [anon_sym_import] = ACTIONS(2995), - [anon_sym_test] = ACTIONS(2995), - [anon_sym_hide] = ACTIONS(2995), - [anon_sym_func] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_DOLLAR] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2993), - [anon_sym_void] = ACTIONS(2995), - [anon_sym_anyopaque] = ACTIONS(2995), - [anon_sym_bool] = ACTIONS(2995), - [anon_sym_int] = ACTIONS(2995), - [anon_sym_uint] = ACTIONS(2995), - [anon_sym_float] = ACTIONS(2995), - [anon_sym_range] = ACTIONS(2995), - [anon_sym_i8] = ACTIONS(2995), - [anon_sym_i16] = ACTIONS(2995), - [anon_sym_i32] = ACTIONS(2995), - [anon_sym_i64] = ACTIONS(2995), - [anon_sym_u8] = ACTIONS(2995), - [anon_sym_u16] = ACTIONS(2995), - [anon_sym_u32] = ACTIONS(2995), - [anon_sym_u64] = ACTIONS(2995), - [anon_sym_isize] = ACTIONS(2995), - [anon_sym_usize] = ACTIONS(2995), - [anon_sym_f32] = ACTIONS(2995), - [anon_sym_f64] = ACTIONS(2995), - [anon_sym_c_char] = ACTIONS(2995), - [anon_sym_c_schar] = ACTIONS(2995), - [anon_sym_c_uchar] = ACTIONS(2995), - [anon_sym_c_short] = ACTIONS(2995), - [anon_sym_c_ushort] = ACTIONS(2995), - [anon_sym_c_int] = ACTIONS(2995), - [anon_sym_c_uint] = ACTIONS(2995), - [anon_sym_c_long] = ACTIONS(2995), - [anon_sym_c_ulong] = ACTIONS(2995), - [anon_sym_c_longlong] = ACTIONS(2995), - [anon_sym_c_ulonglong] = ACTIONS(2995), - [anon_sym_c_float] = ACTIONS(2995), - [anon_sym_c_double] = ACTIONS(2995), - [anon_sym_c_longdouble] = ACTIONS(2995), - [anon_sym_return] = ACTIONS(2995), - [anon_sym_yield] = ACTIONS(2995), - [anon_sym_break] = ACTIONS(2995), - [anon_sym_continue] = ACTIONS(2995), - [anon_sym_defer] = ACTIONS(2995), - [anon_sym_errdefer] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2995), - [anon_sym_else] = ACTIONS(2995), - [anon_sym_while] = ACTIONS(2995), - [anon_sym_expand] = ACTIONS(2995), - [anon_sym_for] = ACTIONS(2995), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2995), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2995), - [anon_sym_false] = ACTIONS(2995), - [sym_none] = ACTIONS(2995), - [sym_undefined] = ACTIONS(2995), - [sym_sink] = ACTIONS(2995), - [sym_integer] = ACTIONS(2995), - [sym_float] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_multiline_string] = ACTIONS(2993), - [sym_character] = ACTIONS(2993), + [STATE(1410)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2343), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1282), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2991), + }, + [STATE(1411)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2477), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1354), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2993), }, - [STATE(1205)] = { - [ts_builtin_sym_end] = ACTIONS(2997), - [sym_identifier] = ACTIONS(2999), - [anon_sym_import] = ACTIONS(2999), - [anon_sym_test] = ACTIONS(2999), - [anon_sym_hide] = ACTIONS(2999), - [anon_sym_func] = ACTIONS(2999), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_void] = ACTIONS(2999), - [anon_sym_anyopaque] = ACTIONS(2999), - [anon_sym_bool] = ACTIONS(2999), - [anon_sym_int] = ACTIONS(2999), - [anon_sym_uint] = ACTIONS(2999), - [anon_sym_float] = ACTIONS(2999), - [anon_sym_range] = ACTIONS(2999), - [anon_sym_i8] = ACTIONS(2999), - [anon_sym_i16] = ACTIONS(2999), - [anon_sym_i32] = ACTIONS(2999), - [anon_sym_i64] = ACTIONS(2999), - [anon_sym_u8] = ACTIONS(2999), - [anon_sym_u16] = ACTIONS(2999), - [anon_sym_u32] = ACTIONS(2999), - [anon_sym_u64] = ACTIONS(2999), - [anon_sym_isize] = ACTIONS(2999), - [anon_sym_usize] = ACTIONS(2999), - [anon_sym_f32] = ACTIONS(2999), - [anon_sym_f64] = ACTIONS(2999), - [anon_sym_c_char] = ACTIONS(2999), - [anon_sym_c_schar] = ACTIONS(2999), - [anon_sym_c_uchar] = ACTIONS(2999), - [anon_sym_c_short] = ACTIONS(2999), - [anon_sym_c_ushort] = ACTIONS(2999), - [anon_sym_c_int] = ACTIONS(2999), - [anon_sym_c_uint] = ACTIONS(2999), - [anon_sym_c_long] = ACTIONS(2999), - [anon_sym_c_ulong] = ACTIONS(2999), - [anon_sym_c_longlong] = ACTIONS(2999), - [anon_sym_c_ulonglong] = ACTIONS(2999), - [anon_sym_c_float] = ACTIONS(2999), - [anon_sym_c_double] = ACTIONS(2999), - [anon_sym_c_longdouble] = ACTIONS(2999), - [anon_sym_return] = ACTIONS(2999), - [anon_sym_yield] = ACTIONS(2999), - [anon_sym_break] = ACTIONS(2999), - [anon_sym_continue] = ACTIONS(2999), - [anon_sym_defer] = ACTIONS(2999), - [anon_sym_errdefer] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2999), - [anon_sym_while] = ACTIONS(2999), - [anon_sym_expand] = ACTIONS(2999), - [anon_sym_for] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_try] = ACTIONS(2999), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_true] = ACTIONS(2999), - [anon_sym_false] = ACTIONS(2999), - [sym_none] = ACTIONS(2999), - [sym_undefined] = ACTIONS(2999), - [sym_sink] = ACTIONS(2999), - [sym_integer] = ACTIONS(2999), - [sym_float] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(2997), - [sym_multiline_string] = ACTIONS(2997), - [sym_character] = ACTIONS(2997), + [STATE(1412)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2454), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1358), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2995), + }, + [STATE(1413)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(776), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1414)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2433), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2997), }, - [STATE(1206)] = { - [ts_builtin_sym_end] = ACTIONS(3001), - [sym_identifier] = ACTIONS(3003), - [anon_sym_import] = ACTIONS(3003), - [anon_sym_test] = ACTIONS(3003), - [anon_sym_hide] = ACTIONS(3003), - [anon_sym_func] = ACTIONS(3003), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_RPAREN] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_void] = ACTIONS(3003), - [anon_sym_anyopaque] = ACTIONS(3003), - [anon_sym_bool] = ACTIONS(3003), - [anon_sym_int] = ACTIONS(3003), - [anon_sym_uint] = ACTIONS(3003), - [anon_sym_float] = ACTIONS(3003), - [anon_sym_range] = ACTIONS(3003), - [anon_sym_i8] = ACTIONS(3003), - [anon_sym_i16] = ACTIONS(3003), - [anon_sym_i32] = ACTIONS(3003), - [anon_sym_i64] = ACTIONS(3003), - [anon_sym_u8] = ACTIONS(3003), - [anon_sym_u16] = ACTIONS(3003), - [anon_sym_u32] = ACTIONS(3003), - [anon_sym_u64] = ACTIONS(3003), - [anon_sym_isize] = ACTIONS(3003), - [anon_sym_usize] = ACTIONS(3003), - [anon_sym_f32] = ACTIONS(3003), - [anon_sym_f64] = ACTIONS(3003), - [anon_sym_c_char] = ACTIONS(3003), - [anon_sym_c_schar] = ACTIONS(3003), - [anon_sym_c_uchar] = ACTIONS(3003), - [anon_sym_c_short] = ACTIONS(3003), - [anon_sym_c_ushort] = ACTIONS(3003), - [anon_sym_c_int] = ACTIONS(3003), - [anon_sym_c_uint] = ACTIONS(3003), - [anon_sym_c_long] = ACTIONS(3003), - [anon_sym_c_ulong] = ACTIONS(3003), - [anon_sym_c_longlong] = ACTIONS(3003), - [anon_sym_c_ulonglong] = ACTIONS(3003), - [anon_sym_c_float] = ACTIONS(3003), - [anon_sym_c_double] = ACTIONS(3003), - [anon_sym_c_longdouble] = ACTIONS(3003), - [anon_sym_return] = ACTIONS(3003), - [anon_sym_yield] = ACTIONS(3003), - [anon_sym_break] = ACTIONS(3003), - [anon_sym_continue] = ACTIONS(3003), - [anon_sym_defer] = ACTIONS(3003), - [anon_sym_errdefer] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3003), - [anon_sym_while] = ACTIONS(3003), - [anon_sym_expand] = ACTIONS(3003), - [anon_sym_for] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_try] = ACTIONS(3003), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_true] = ACTIONS(3003), - [anon_sym_false] = ACTIONS(3003), - [sym_none] = ACTIONS(3003), - [sym_undefined] = ACTIONS(3003), - [sym_sink] = ACTIONS(3003), - [sym_integer] = ACTIONS(3003), - [sym_float] = ACTIONS(3001), - [anon_sym_DQUOTE] = ACTIONS(3001), - [sym_multiline_string] = ACTIONS(3001), - [sym_character] = ACTIONS(3001), + [STATE(1415)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(14), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1417), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2999), + }, + [STATE(1416)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2440), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1417)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(15), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1418)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2425), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1200), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3001), }, - [STATE(1207)] = { - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3007), - [anon_sym_import] = ACTIONS(3007), - [anon_sym_test] = ACTIONS(3007), - [anon_sym_hide] = ACTIONS(3007), - [anon_sym_func] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_RPAREN] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_DOLLAR] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_void] = ACTIONS(3007), - [anon_sym_anyopaque] = ACTIONS(3007), - [anon_sym_bool] = ACTIONS(3007), - [anon_sym_int] = ACTIONS(3007), - [anon_sym_uint] = ACTIONS(3007), - [anon_sym_float] = ACTIONS(3007), - [anon_sym_range] = ACTIONS(3007), - [anon_sym_i8] = ACTIONS(3007), - [anon_sym_i16] = ACTIONS(3007), - [anon_sym_i32] = ACTIONS(3007), - [anon_sym_i64] = ACTIONS(3007), - [anon_sym_u8] = ACTIONS(3007), - [anon_sym_u16] = ACTIONS(3007), - [anon_sym_u32] = ACTIONS(3007), - [anon_sym_u64] = ACTIONS(3007), - [anon_sym_isize] = ACTIONS(3007), - [anon_sym_usize] = ACTIONS(3007), - [anon_sym_f32] = ACTIONS(3007), - [anon_sym_f64] = ACTIONS(3007), - [anon_sym_c_char] = ACTIONS(3007), - [anon_sym_c_schar] = ACTIONS(3007), - [anon_sym_c_uchar] = ACTIONS(3007), - [anon_sym_c_short] = ACTIONS(3007), - [anon_sym_c_ushort] = ACTIONS(3007), - [anon_sym_c_int] = ACTIONS(3007), - [anon_sym_c_uint] = ACTIONS(3007), - [anon_sym_c_long] = ACTIONS(3007), - [anon_sym_c_ulong] = ACTIONS(3007), - [anon_sym_c_longlong] = ACTIONS(3007), - [anon_sym_c_ulonglong] = ACTIONS(3007), - [anon_sym_c_float] = ACTIONS(3007), - [anon_sym_c_double] = ACTIONS(3007), - [anon_sym_c_longdouble] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_yield] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_defer] = ACTIONS(3007), - [anon_sym_errdefer] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3007), - [anon_sym_while] = ACTIONS(3007), - [anon_sym_expand] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_true] = ACTIONS(3007), - [anon_sym_false] = ACTIONS(3007), - [sym_none] = ACTIONS(3007), - [sym_undefined] = ACTIONS(3007), - [sym_sink] = ACTIONS(3007), - [sym_integer] = ACTIONS(3007), - [sym_float] = ACTIONS(3005), - [anon_sym_DQUOTE] = ACTIONS(3005), - [sym_multiline_string] = ACTIONS(3005), - [sym_character] = ACTIONS(3005), + [STATE(1419)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1424), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3003), + }, + [STATE(1420)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(2319), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3005), }, - [STATE(1208)] = { - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3011), - [anon_sym_import] = ACTIONS(3011), - [anon_sym_test] = ACTIONS(3011), - [anon_sym_hide] = ACTIONS(3011), - [anon_sym_func] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_RPAREN] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_DOLLAR] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_void] = ACTIONS(3011), - [anon_sym_anyopaque] = ACTIONS(3011), - [anon_sym_bool] = ACTIONS(3011), - [anon_sym_int] = ACTIONS(3011), - [anon_sym_uint] = ACTIONS(3011), - [anon_sym_float] = ACTIONS(3011), - [anon_sym_range] = ACTIONS(3011), - [anon_sym_i8] = ACTIONS(3011), - [anon_sym_i16] = ACTIONS(3011), - [anon_sym_i32] = ACTIONS(3011), - [anon_sym_i64] = ACTIONS(3011), - [anon_sym_u8] = ACTIONS(3011), - [anon_sym_u16] = ACTIONS(3011), - [anon_sym_u32] = ACTIONS(3011), - [anon_sym_u64] = ACTIONS(3011), - [anon_sym_isize] = ACTIONS(3011), - [anon_sym_usize] = ACTIONS(3011), - [anon_sym_f32] = ACTIONS(3011), - [anon_sym_f64] = ACTIONS(3011), - [anon_sym_c_char] = ACTIONS(3011), - [anon_sym_c_schar] = ACTIONS(3011), - [anon_sym_c_uchar] = ACTIONS(3011), - [anon_sym_c_short] = ACTIONS(3011), - [anon_sym_c_ushort] = ACTIONS(3011), - [anon_sym_c_int] = ACTIONS(3011), - [anon_sym_c_uint] = ACTIONS(3011), - [anon_sym_c_long] = ACTIONS(3011), - [anon_sym_c_ulong] = ACTIONS(3011), - [anon_sym_c_longlong] = ACTIONS(3011), - [anon_sym_c_ulonglong] = ACTIONS(3011), - [anon_sym_c_float] = ACTIONS(3011), - [anon_sym_c_double] = ACTIONS(3011), - [anon_sym_c_longdouble] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_yield] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_defer] = ACTIONS(3011), - [anon_sym_errdefer] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_else] = ACTIONS(3011), - [anon_sym_while] = ACTIONS(3011), - [anon_sym_expand] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_true] = ACTIONS(3011), - [anon_sym_false] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_undefined] = ACTIONS(3011), - [sym_sink] = ACTIONS(3011), - [sym_integer] = ACTIONS(3011), - [sym_float] = ACTIONS(3009), - [anon_sym_DQUOTE] = ACTIONS(3009), - [sym_multiline_string] = ACTIONS(3009), - [sym_character] = ACTIONS(3009), + [STATE(1421)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(18), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3007), + }, + [STATE(1422)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(19), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2473), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1423)] = { + [sym_struct_type] = STATE(731), + [sym_array_type] = STATE(731), + [sym_builtin_type] = STATE(731), + [sym_expression] = STATE(646), + [sym_binary_expression] = STATE(731), + [sym_catch_expression] = STATE(731), + [sym_unary_expression] = STATE(731), + [sym_field_expression] = STATE(731), + [sym_intrinsic_call_expression] = STATE(731), + [sym_call_expression] = STATE(731), + [sym_index_expression] = STATE(731), + [sym_slice_expression] = STATE(731), + [sym_postfix_expression] = STATE(731), + [sym_struct_literal] = STATE(731), + [sym_tuple_literal] = STATE(731), + [sym_enum_literal] = STATE(731), + [sym_array_literal] = STATE(731), + [sym_parenthesized_expression] = STATE(731), + [sym_comptime_block] = STATE(731), + [sym_function_literal] = STATE(731), + [sym_qualified_identifier] = STATE(2944), + [sym_boolean] = STATE(731), + [sym_string] = STATE(731), + [aux_sym_import_declaration_repeat1] = STATE(1346), + [sym_identifier] = ACTIONS(2400), + [anon_sym_func] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1565), + [anon_sym_void] = ACTIONS(1567), + [anon_sym_anyopaque] = ACTIONS(1567), + [anon_sym_bool] = ACTIONS(1567), + [anon_sym_int] = ACTIONS(1567), + [anon_sym_uint] = ACTIONS(1567), + [anon_sym_float] = ACTIONS(1567), + [anon_sym_range] = ACTIONS(1567), + [anon_sym_i8] = ACTIONS(1567), + [anon_sym_i16] = ACTIONS(1567), + [anon_sym_i32] = ACTIONS(1567), + [anon_sym_i64] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1567), + [anon_sym_u16] = ACTIONS(1567), + [anon_sym_u32] = ACTIONS(1567), + [anon_sym_u64] = ACTIONS(1567), + [anon_sym_isize] = ACTIONS(1567), + [anon_sym_usize] = ACTIONS(1567), + [anon_sym_f32] = ACTIONS(1567), + [anon_sym_f64] = ACTIONS(1567), + [anon_sym_c_char] = ACTIONS(1567), + [anon_sym_c_schar] = ACTIONS(1567), + [anon_sym_c_uchar] = ACTIONS(1567), + [anon_sym_c_short] = ACTIONS(1567), + [anon_sym_c_ushort] = ACTIONS(1567), + [anon_sym_c_int] = ACTIONS(1567), + [anon_sym_c_uint] = ACTIONS(1567), + [anon_sym_c_long] = ACTIONS(1567), + [anon_sym_c_ulong] = ACTIONS(1567), + [anon_sym_c_longlong] = ACTIONS(1567), + [anon_sym_c_ulonglong] = ACTIONS(1567), + [anon_sym_c_float] = ACTIONS(1567), + [anon_sym_c_double] = ACTIONS(1567), + [anon_sym_c_longdouble] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [sym_none] = ACTIONS(1575), + [sym_undefined] = ACTIONS(1575), + [sym_sink] = ACTIONS(1575), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(1579), + [sym_multiline_string] = ACTIONS(1577), + [sym_character] = ACTIONS(1577), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3009), }, - [STATE(1209)] = { - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3015), - [anon_sym_import] = ACTIONS(3015), - [anon_sym_test] = ACTIONS(3015), - [anon_sym_hide] = ACTIONS(3015), - [anon_sym_func] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_RPAREN] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_DOLLAR] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_void] = ACTIONS(3015), - [anon_sym_anyopaque] = ACTIONS(3015), - [anon_sym_bool] = ACTIONS(3015), - [anon_sym_int] = ACTIONS(3015), - [anon_sym_uint] = ACTIONS(3015), - [anon_sym_float] = ACTIONS(3015), - [anon_sym_range] = ACTIONS(3015), - [anon_sym_i8] = ACTIONS(3015), - [anon_sym_i16] = ACTIONS(3015), - [anon_sym_i32] = ACTIONS(3015), - [anon_sym_i64] = ACTIONS(3015), - [anon_sym_u8] = ACTIONS(3015), - [anon_sym_u16] = ACTIONS(3015), - [anon_sym_u32] = ACTIONS(3015), - [anon_sym_u64] = ACTIONS(3015), - [anon_sym_isize] = ACTIONS(3015), - [anon_sym_usize] = ACTIONS(3015), - [anon_sym_f32] = ACTIONS(3015), - [anon_sym_f64] = ACTIONS(3015), - [anon_sym_c_char] = ACTIONS(3015), - [anon_sym_c_schar] = ACTIONS(3015), - [anon_sym_c_uchar] = ACTIONS(3015), - [anon_sym_c_short] = ACTIONS(3015), - [anon_sym_c_ushort] = ACTIONS(3015), - [anon_sym_c_int] = ACTIONS(3015), - [anon_sym_c_uint] = ACTIONS(3015), - [anon_sym_c_long] = ACTIONS(3015), - [anon_sym_c_ulong] = ACTIONS(3015), - [anon_sym_c_longlong] = ACTIONS(3015), - [anon_sym_c_ulonglong] = ACTIONS(3015), - [anon_sym_c_float] = ACTIONS(3015), - [anon_sym_c_double] = ACTIONS(3015), - [anon_sym_c_longdouble] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_yield] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_defer] = ACTIONS(3015), - [anon_sym_errdefer] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_else] = ACTIONS(3015), - [anon_sym_while] = ACTIONS(3015), - [anon_sym_expand] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_true] = ACTIONS(3015), - [anon_sym_false] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_undefined] = ACTIONS(3015), - [sym_sink] = ACTIONS(3015), - [sym_integer] = ACTIONS(3015), - [sym_float] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3013), - [sym_multiline_string] = ACTIONS(3013), - [sym_character] = ACTIONS(3013), + [STATE(1424)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1425)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2086), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1426)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2111), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1425), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3011), + }, + [STATE(1427)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2474), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1198), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3013), }, - [STATE(1210)] = { - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3019), - [anon_sym_import] = ACTIONS(3019), - [anon_sym_test] = ACTIONS(3019), - [anon_sym_hide] = ACTIONS(3019), - [anon_sym_func] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_RPAREN] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_DOLLAR] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_void] = ACTIONS(3019), - [anon_sym_anyopaque] = ACTIONS(3019), - [anon_sym_bool] = ACTIONS(3019), - [anon_sym_int] = ACTIONS(3019), - [anon_sym_uint] = ACTIONS(3019), - [anon_sym_float] = ACTIONS(3019), - [anon_sym_range] = ACTIONS(3019), - [anon_sym_i8] = ACTIONS(3019), - [anon_sym_i16] = ACTIONS(3019), - [anon_sym_i32] = ACTIONS(3019), - [anon_sym_i64] = ACTIONS(3019), - [anon_sym_u8] = ACTIONS(3019), - [anon_sym_u16] = ACTIONS(3019), - [anon_sym_u32] = ACTIONS(3019), - [anon_sym_u64] = ACTIONS(3019), - [anon_sym_isize] = ACTIONS(3019), - [anon_sym_usize] = ACTIONS(3019), - [anon_sym_f32] = ACTIONS(3019), - [anon_sym_f64] = ACTIONS(3019), - [anon_sym_c_char] = ACTIONS(3019), - [anon_sym_c_schar] = ACTIONS(3019), - [anon_sym_c_uchar] = ACTIONS(3019), - [anon_sym_c_short] = ACTIONS(3019), - [anon_sym_c_ushort] = ACTIONS(3019), - [anon_sym_c_int] = ACTIONS(3019), - [anon_sym_c_uint] = ACTIONS(3019), - [anon_sym_c_long] = ACTIONS(3019), - [anon_sym_c_ulong] = ACTIONS(3019), - [anon_sym_c_longlong] = ACTIONS(3019), - [anon_sym_c_ulonglong] = ACTIONS(3019), - [anon_sym_c_float] = ACTIONS(3019), - [anon_sym_c_double] = ACTIONS(3019), - [anon_sym_c_longdouble] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_yield] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_defer] = ACTIONS(3019), - [anon_sym_errdefer] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_else] = ACTIONS(3019), - [anon_sym_while] = ACTIONS(3019), - [anon_sym_expand] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_true] = ACTIONS(3019), - [anon_sym_false] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_undefined] = ACTIONS(3019), - [sym_sink] = ACTIONS(3019), - [sym_integer] = ACTIONS(3019), - [sym_float] = ACTIONS(3017), - [anon_sym_DQUOTE] = ACTIONS(3017), - [sym_multiline_string] = ACTIONS(3017), - [sym_character] = ACTIONS(3017), + [STATE(1428)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2483), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1436), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3015), + }, + [STATE(1429)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2091), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1202), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3017), }, - [STATE(1211)] = { - [ts_builtin_sym_end] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3023), - [anon_sym_import] = ACTIONS(3023), - [anon_sym_test] = ACTIONS(3023), - [anon_sym_hide] = ACTIONS(3023), - [anon_sym_func] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_DOLLAR] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3021), - [anon_sym_void] = ACTIONS(3023), - [anon_sym_anyopaque] = ACTIONS(3023), - [anon_sym_bool] = ACTIONS(3023), - [anon_sym_int] = ACTIONS(3023), - [anon_sym_uint] = ACTIONS(3023), - [anon_sym_float] = ACTIONS(3023), - [anon_sym_range] = ACTIONS(3023), - [anon_sym_i8] = ACTIONS(3023), - [anon_sym_i16] = ACTIONS(3023), - [anon_sym_i32] = ACTIONS(3023), - [anon_sym_i64] = ACTIONS(3023), - [anon_sym_u8] = ACTIONS(3023), - [anon_sym_u16] = ACTIONS(3023), - [anon_sym_u32] = ACTIONS(3023), - [anon_sym_u64] = ACTIONS(3023), - [anon_sym_isize] = ACTIONS(3023), - [anon_sym_usize] = ACTIONS(3023), - [anon_sym_f32] = ACTIONS(3023), - [anon_sym_f64] = ACTIONS(3023), - [anon_sym_c_char] = ACTIONS(3023), - [anon_sym_c_schar] = ACTIONS(3023), - [anon_sym_c_uchar] = ACTIONS(3023), - [anon_sym_c_short] = ACTIONS(3023), - [anon_sym_c_ushort] = ACTIONS(3023), - [anon_sym_c_int] = ACTIONS(3023), - [anon_sym_c_uint] = ACTIONS(3023), - [anon_sym_c_long] = ACTIONS(3023), - [anon_sym_c_ulong] = ACTIONS(3023), - [anon_sym_c_longlong] = ACTIONS(3023), - [anon_sym_c_ulonglong] = ACTIONS(3023), - [anon_sym_c_float] = ACTIONS(3023), - [anon_sym_c_double] = ACTIONS(3023), - [anon_sym_c_longdouble] = ACTIONS(3023), - [anon_sym_return] = ACTIONS(3023), - [anon_sym_yield] = ACTIONS(3023), - [anon_sym_break] = ACTIONS(3023), - [anon_sym_continue] = ACTIONS(3023), - [anon_sym_defer] = ACTIONS(3023), - [anon_sym_errdefer] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3023), - [anon_sym_else] = ACTIONS(3023), - [anon_sym_while] = ACTIONS(3023), - [anon_sym_expand] = ACTIONS(3023), - [anon_sym_for] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_true] = ACTIONS(3023), - [anon_sym_false] = ACTIONS(3023), - [sym_none] = ACTIONS(3023), - [sym_undefined] = ACTIONS(3023), - [sym_sink] = ACTIONS(3023), - [sym_integer] = ACTIONS(3023), - [sym_float] = ACTIONS(3021), - [anon_sym_DQUOTE] = ACTIONS(3021), - [sym_multiline_string] = ACTIONS(3021), - [sym_character] = ACTIONS(3021), + [STATE(1430)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2469), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1204), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3019), + }, + [STATE(1431)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2471), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1209), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2799), + }, + [STATE(1432)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2479), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1210), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3021), }, - [STATE(1212)] = { - [ts_builtin_sym_end] = ACTIONS(3025), - [sym_identifier] = ACTIONS(3027), - [anon_sym_import] = ACTIONS(3027), - [anon_sym_test] = ACTIONS(3027), - [anon_sym_hide] = ACTIONS(3027), - [anon_sym_func] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3025), - [anon_sym_void] = ACTIONS(3027), - [anon_sym_anyopaque] = ACTIONS(3027), - [anon_sym_bool] = ACTIONS(3027), - [anon_sym_int] = ACTIONS(3027), - [anon_sym_uint] = ACTIONS(3027), - [anon_sym_float] = ACTIONS(3027), - [anon_sym_range] = ACTIONS(3027), - [anon_sym_i8] = ACTIONS(3027), - [anon_sym_i16] = ACTIONS(3027), - [anon_sym_i32] = ACTIONS(3027), - [anon_sym_i64] = ACTIONS(3027), - [anon_sym_u8] = ACTIONS(3027), - [anon_sym_u16] = ACTIONS(3027), - [anon_sym_u32] = ACTIONS(3027), - [anon_sym_u64] = ACTIONS(3027), - [anon_sym_isize] = ACTIONS(3027), - [anon_sym_usize] = ACTIONS(3027), - [anon_sym_f32] = ACTIONS(3027), - [anon_sym_f64] = ACTIONS(3027), - [anon_sym_c_char] = ACTIONS(3027), - [anon_sym_c_schar] = ACTIONS(3027), - [anon_sym_c_uchar] = ACTIONS(3027), - [anon_sym_c_short] = ACTIONS(3027), - [anon_sym_c_ushort] = ACTIONS(3027), - [anon_sym_c_int] = ACTIONS(3027), - [anon_sym_c_uint] = ACTIONS(3027), - [anon_sym_c_long] = ACTIONS(3027), - [anon_sym_c_ulong] = ACTIONS(3027), - [anon_sym_c_longlong] = ACTIONS(3027), - [anon_sym_c_ulonglong] = ACTIONS(3027), - [anon_sym_c_float] = ACTIONS(3027), - [anon_sym_c_double] = ACTIONS(3027), - [anon_sym_c_longdouble] = ACTIONS(3027), - [anon_sym_return] = ACTIONS(3027), - [anon_sym_yield] = ACTIONS(3027), - [anon_sym_break] = ACTIONS(3027), - [anon_sym_continue] = ACTIONS(3027), - [anon_sym_defer] = ACTIONS(3027), - [anon_sym_errdefer] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_else] = ACTIONS(3027), - [anon_sym_while] = ACTIONS(3027), - [anon_sym_expand] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3027), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_true] = ACTIONS(3027), - [anon_sym_false] = ACTIONS(3027), - [sym_none] = ACTIONS(3027), - [sym_undefined] = ACTIONS(3027), - [sym_sink] = ACTIONS(3027), - [sym_integer] = ACTIONS(3027), - [sym_float] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [sym_multiline_string] = ACTIONS(3025), - [sym_character] = ACTIONS(3025), + [STATE(1433)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2464), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1214), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3023), + }, + [STATE(1434)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2478), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1217), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3025), }, - [STATE(1213)] = { + [STATE(1435)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2470), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(1224), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3027), + }, + [STATE(1436)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2482), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2783), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_DOLLAR] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_DOT] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1437)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(587), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1438)] = { + [sym_struct_type] = STATE(90), + [sym_array_type] = STATE(90), + [sym_builtin_type] = STATE(90), + [sym_expression] = STATE(43), + [sym_binary_expression] = STATE(90), + [sym_catch_expression] = STATE(90), + [sym_unary_expression] = STATE(90), + [sym_field_expression] = STATE(90), + [sym_intrinsic_call_expression] = STATE(90), + [sym_call_expression] = STATE(90), + [sym_index_expression] = STATE(90), + [sym_slice_expression] = STATE(90), + [sym_postfix_expression] = STATE(90), + [sym_struct_literal] = STATE(90), + [sym_tuple_literal] = STATE(90), + [sym_enum_literal] = STATE(90), + [sym_array_literal] = STATE(90), + [sym_parenthesized_expression] = STATE(90), + [sym_comptime_block] = STATE(90), + [sym_function_literal] = STATE(90), + [sym_qualified_identifier] = STATE(3082), + [sym_boolean] = STATE(90), + [sym_string] = STATE(90), + [aux_sym_import_declaration_repeat1] = STATE(897), + [sym_identifier] = ACTIONS(2196), + [anon_sym_func] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_struct] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(521), + [anon_sym_void] = ACTIONS(41), + [anon_sym_anyopaque] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(41), + [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), + [anon_sym_float] = ACTIONS(41), + [anon_sym_range] = ACTIONS(41), + [anon_sym_i8] = ACTIONS(41), + [anon_sym_i16] = ACTIONS(41), + [anon_sym_i32] = ACTIONS(41), + [anon_sym_i64] = ACTIONS(41), + [anon_sym_u8] = ACTIONS(41), + [anon_sym_u16] = ACTIONS(41), + [anon_sym_u32] = ACTIONS(41), + [anon_sym_u64] = ACTIONS(41), + [anon_sym_isize] = ACTIONS(41), + [anon_sym_usize] = ACTIONS(41), + [anon_sym_f32] = ACTIONS(41), + [anon_sym_f64] = ACTIONS(41), + [anon_sym_c_char] = ACTIONS(41), + [anon_sym_c_schar] = ACTIONS(41), + [anon_sym_c_uchar] = ACTIONS(41), + [anon_sym_c_short] = ACTIONS(41), + [anon_sym_c_ushort] = ACTIONS(41), + [anon_sym_c_int] = ACTIONS(41), + [anon_sym_c_uint] = ACTIONS(41), + [anon_sym_c_long] = ACTIONS(41), + [anon_sym_c_ulong] = ACTIONS(41), + [anon_sym_c_longlong] = ACTIONS(41), + [anon_sym_c_ulonglong] = ACTIONS(41), + [anon_sym_c_float] = ACTIONS(41), + [anon_sym_c_double] = ACTIONS(41), + [anon_sym_c_longdouble] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_try] = ACTIONS(109), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_none] = ACTIONS(97), + [sym_undefined] = ACTIONS(97), + [sym_sink] = ACTIONS(97), + [sym_integer] = ACTIONS(97), + [sym_float] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym_multiline_string] = ACTIONS(101), + [sym_character] = ACTIONS(101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + }, + [STATE(1439)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2492), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(1440)] = { + [sym_struct_type] = STATE(2143), + [sym_array_type] = STATE(2143), + [sym_builtin_type] = STATE(2143), + [sym_expression] = STATE(2493), + [sym_binary_expression] = STATE(2143), + [sym_catch_expression] = STATE(2143), + [sym_unary_expression] = STATE(2143), + [sym_field_expression] = STATE(2143), + [sym_intrinsic_call_expression] = STATE(2143), + [sym_call_expression] = STATE(2143), + [sym_index_expression] = STATE(2143), + [sym_slice_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_struct_literal] = STATE(2143), + [sym_tuple_literal] = STATE(2143), + [sym_enum_literal] = STATE(2143), + [sym_array_literal] = STATE(2143), + [sym_parenthesized_expression] = STATE(2143), + [sym_comptime_block] = STATE(2143), + [sym_function_literal] = STATE(2143), + [sym_qualified_identifier] = STATE(3110), + [sym_boolean] = STATE(2143), + [sym_string] = STATE(2143), + [sym_identifier] = ACTIONS(1871), + [anon_sym_func] = ACTIONS(181), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_DOLLAR] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_void] = ACTIONS(195), + [anon_sym_anyopaque] = ACTIONS(195), + [anon_sym_bool] = ACTIONS(195), + [anon_sym_int] = ACTIONS(195), + [anon_sym_uint] = ACTIONS(195), + [anon_sym_float] = ACTIONS(195), + [anon_sym_range] = ACTIONS(195), + [anon_sym_i8] = ACTIONS(195), + [anon_sym_i16] = ACTIONS(195), + [anon_sym_i32] = ACTIONS(195), + [anon_sym_i64] = ACTIONS(195), + [anon_sym_u8] = ACTIONS(195), + [anon_sym_u16] = ACTIONS(195), + [anon_sym_u32] = ACTIONS(195), + [anon_sym_u64] = ACTIONS(195), + [anon_sym_isize] = ACTIONS(195), + [anon_sym_usize] = ACTIONS(195), + [anon_sym_f32] = ACTIONS(195), + [anon_sym_f64] = ACTIONS(195), + [anon_sym_c_char] = ACTIONS(195), + [anon_sym_c_schar] = ACTIONS(195), + [anon_sym_c_uchar] = ACTIONS(195), + [anon_sym_c_short] = ACTIONS(195), + [anon_sym_c_ushort] = ACTIONS(195), + [anon_sym_c_int] = ACTIONS(195), + [anon_sym_c_uint] = ACTIONS(195), + [anon_sym_c_long] = ACTIONS(195), + [anon_sym_c_ulong] = ACTIONS(195), + [anon_sym_c_longlong] = ACTIONS(195), + [anon_sym_c_ulonglong] = ACTIONS(195), + [anon_sym_c_float] = ACTIONS(195), + [anon_sym_c_double] = ACTIONS(195), + [anon_sym_c_longdouble] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_TILDE] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1760), + [anon_sym_DOT] = ACTIONS(500), + [anon_sym_true] = ACTIONS(213), + [anon_sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(215), + [sym_undefined] = ACTIONS(215), + [sym_sink] = ACTIONS(215), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(221), + [sym_multiline_string] = ACTIONS(219), + [sym_character] = ACTIONS(219), + [sym_comment] = ACTIONS(3), + }, + [STATE(1441)] = { [ts_builtin_sym_end] = ACTIONS(3029), [sym_identifier] = ACTIONS(3031), [anon_sym_import] = ACTIONS(3031), @@ -126220,6 +155582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_longdouble] = ACTIONS(3031), [anon_sym_return] = ACTIONS(3031), [anon_sym_yield] = ACTIONS(3031), + [anon_sym_COLON] = ACTIONS(3033), [anon_sym_break] = ACTIONS(3031), [anon_sym_continue] = ACTIONS(3031), [anon_sym_defer] = ACTIONS(3031), @@ -126231,6 +155594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3031), [anon_sym_match] = ACTIONS(3031), [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), [anon_sym_try] = ACTIONS(3031), [anon_sym_DOT] = ACTIONS(3029), [anon_sym_true] = ACTIONS(3031), @@ -126246,161 +155610,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3029), }, - [STATE(1214)] = { - [ts_builtin_sym_end] = ACTIONS(3033), - [sym_identifier] = ACTIONS(3035), - [anon_sym_import] = ACTIONS(3035), - [anon_sym_test] = ACTIONS(3035), - [anon_sym_hide] = ACTIONS(3035), - [anon_sym_func] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_void] = ACTIONS(3035), - [anon_sym_anyopaque] = ACTIONS(3035), - [anon_sym_bool] = ACTIONS(3035), - [anon_sym_int] = ACTIONS(3035), - [anon_sym_uint] = ACTIONS(3035), - [anon_sym_float] = ACTIONS(3035), - [anon_sym_range] = ACTIONS(3035), - [anon_sym_i8] = ACTIONS(3035), - [anon_sym_i16] = ACTIONS(3035), - [anon_sym_i32] = ACTIONS(3035), - [anon_sym_i64] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(3035), - [anon_sym_u16] = ACTIONS(3035), - [anon_sym_u32] = ACTIONS(3035), - [anon_sym_u64] = ACTIONS(3035), - [anon_sym_isize] = ACTIONS(3035), - [anon_sym_usize] = ACTIONS(3035), - [anon_sym_f32] = ACTIONS(3035), - [anon_sym_f64] = ACTIONS(3035), - [anon_sym_c_char] = ACTIONS(3035), - [anon_sym_c_schar] = ACTIONS(3035), - [anon_sym_c_uchar] = ACTIONS(3035), - [anon_sym_c_short] = ACTIONS(3035), - [anon_sym_c_ushort] = ACTIONS(3035), - [anon_sym_c_int] = ACTIONS(3035), - [anon_sym_c_uint] = ACTIONS(3035), - [anon_sym_c_long] = ACTIONS(3035), - [anon_sym_c_ulong] = ACTIONS(3035), - [anon_sym_c_longlong] = ACTIONS(3035), - [anon_sym_c_ulonglong] = ACTIONS(3035), - [anon_sym_c_float] = ACTIONS(3035), - [anon_sym_c_double] = ACTIONS(3035), - [anon_sym_c_longdouble] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_errdefer] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_expand] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_undefined] = ACTIONS(3035), - [sym_sink] = ACTIONS(3035), - [sym_integer] = ACTIONS(3035), - [sym_float] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_multiline_string] = ACTIONS(3033), - [sym_character] = ACTIONS(3033), + [STATE(1442)] = { + [ts_builtin_sym_end] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3037), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_test] = ACTIONS(3037), + [anon_sym_hide] = ACTIONS(3037), + [anon_sym_func] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_void] = ACTIONS(3037), + [anon_sym_anyopaque] = ACTIONS(3037), + [anon_sym_bool] = ACTIONS(3037), + [anon_sym_int] = ACTIONS(3037), + [anon_sym_uint] = ACTIONS(3037), + [anon_sym_float] = ACTIONS(3037), + [anon_sym_range] = ACTIONS(3037), + [anon_sym_i8] = ACTIONS(3037), + [anon_sym_i16] = ACTIONS(3037), + [anon_sym_i32] = ACTIONS(3037), + [anon_sym_i64] = ACTIONS(3037), + [anon_sym_u8] = ACTIONS(3037), + [anon_sym_u16] = ACTIONS(3037), + [anon_sym_u32] = ACTIONS(3037), + [anon_sym_u64] = ACTIONS(3037), + [anon_sym_isize] = ACTIONS(3037), + [anon_sym_usize] = ACTIONS(3037), + [anon_sym_f32] = ACTIONS(3037), + [anon_sym_f64] = ACTIONS(3037), + [anon_sym_c_char] = ACTIONS(3037), + [anon_sym_c_schar] = ACTIONS(3037), + [anon_sym_c_uchar] = ACTIONS(3037), + [anon_sym_c_short] = ACTIONS(3037), + [anon_sym_c_ushort] = ACTIONS(3037), + [anon_sym_c_int] = ACTIONS(3037), + [anon_sym_c_uint] = ACTIONS(3037), + [anon_sym_c_long] = ACTIONS(3037), + [anon_sym_c_ulong] = ACTIONS(3037), + [anon_sym_c_longlong] = ACTIONS(3037), + [anon_sym_c_ulonglong] = ACTIONS(3037), + [anon_sym_c_float] = ACTIONS(3037), + [anon_sym_c_double] = ACTIONS(3037), + [anon_sym_c_longdouble] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_yield] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(3037), + [anon_sym_defer] = ACTIONS(3037), + [anon_sym_errdefer] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3037), + [anon_sym_else] = ACTIONS(3037), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_expand] = ACTIONS(3037), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_match] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_true] = ACTIONS(3037), + [anon_sym_false] = ACTIONS(3037), + [sym_none] = ACTIONS(3037), + [sym_undefined] = ACTIONS(3037), + [sym_sink] = ACTIONS(3037), + [sym_integer] = ACTIONS(3037), + [sym_float] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [sym_multiline_string] = ACTIONS(3035), + [sym_character] = ACTIONS(3035), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3033), + [sym__newline] = ACTIONS(3035), }, - [STATE(1215)] = { - [ts_builtin_sym_end] = ACTIONS(3037), - [sym_identifier] = ACTIONS(3039), - [anon_sym_import] = ACTIONS(3039), - [anon_sym_test] = ACTIONS(3039), - [anon_sym_hide] = ACTIONS(3039), - [anon_sym_func] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3037), - [anon_sym_void] = ACTIONS(3039), - [anon_sym_anyopaque] = ACTIONS(3039), - [anon_sym_bool] = ACTIONS(3039), - [anon_sym_int] = ACTIONS(3039), - [anon_sym_uint] = ACTIONS(3039), - [anon_sym_float] = ACTIONS(3039), - [anon_sym_range] = ACTIONS(3039), - [anon_sym_i8] = ACTIONS(3039), - [anon_sym_i16] = ACTIONS(3039), - [anon_sym_i32] = ACTIONS(3039), - [anon_sym_i64] = ACTIONS(3039), - [anon_sym_u8] = ACTIONS(3039), - [anon_sym_u16] = ACTIONS(3039), - [anon_sym_u32] = ACTIONS(3039), - [anon_sym_u64] = ACTIONS(3039), - [anon_sym_isize] = ACTIONS(3039), - [anon_sym_usize] = ACTIONS(3039), - [anon_sym_f32] = ACTIONS(3039), - [anon_sym_f64] = ACTIONS(3039), - [anon_sym_c_char] = ACTIONS(3039), - [anon_sym_c_schar] = ACTIONS(3039), - [anon_sym_c_uchar] = ACTIONS(3039), - [anon_sym_c_short] = ACTIONS(3039), - [anon_sym_c_ushort] = ACTIONS(3039), - [anon_sym_c_int] = ACTIONS(3039), - [anon_sym_c_uint] = ACTIONS(3039), - [anon_sym_c_long] = ACTIONS(3039), - [anon_sym_c_ulong] = ACTIONS(3039), - [anon_sym_c_longlong] = ACTIONS(3039), - [anon_sym_c_ulonglong] = ACTIONS(3039), - [anon_sym_c_float] = ACTIONS(3039), - [anon_sym_c_double] = ACTIONS(3039), - [anon_sym_c_longdouble] = ACTIONS(3039), - [anon_sym_return] = ACTIONS(3039), - [anon_sym_yield] = ACTIONS(3039), - [anon_sym_break] = ACTIONS(3039), - [anon_sym_continue] = ACTIONS(3039), - [anon_sym_defer] = ACTIONS(3039), - [anon_sym_errdefer] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3039), - [anon_sym_else] = ACTIONS(3039), - [anon_sym_while] = ACTIONS(3039), - [anon_sym_expand] = ACTIONS(3039), - [anon_sym_for] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3039), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_true] = ACTIONS(3039), - [anon_sym_false] = ACTIONS(3039), - [sym_none] = ACTIONS(3039), - [sym_undefined] = ACTIONS(3039), - [sym_sink] = ACTIONS(3039), - [sym_integer] = ACTIONS(3039), - [sym_float] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3037), - [sym_multiline_string] = ACTIONS(3037), - [sym_character] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3037), - }, - [STATE(1216)] = { + [STATE(1443)] = { [ts_builtin_sym_end] = ACTIONS(3041), [sym_identifier] = ACTIONS(3043), [anon_sym_import] = ACTIONS(3043), @@ -126462,6 +155751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3043), [anon_sym_match] = ACTIONS(3043), [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3041), [anon_sym_try] = ACTIONS(3043), [anon_sym_DOT] = ACTIONS(3041), [anon_sym_true] = ACTIONS(3043), @@ -126477,7 +155767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3041), }, - [STATE(1217)] = { + [STATE(1444)] = { [ts_builtin_sym_end] = ACTIONS(3045), [sym_identifier] = ACTIONS(3047), [anon_sym_import] = ACTIONS(3047), @@ -126539,6 +155829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3047), [anon_sym_match] = ACTIONS(3047), [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3045), [anon_sym_try] = ACTIONS(3047), [anon_sym_DOT] = ACTIONS(3045), [anon_sym_true] = ACTIONS(3047), @@ -126554,7 +155845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3045), }, - [STATE(1218)] = { + [STATE(1445)] = { [ts_builtin_sym_end] = ACTIONS(3049), [sym_identifier] = ACTIONS(3051), [anon_sym_import] = ACTIONS(3051), @@ -126616,6 +155907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3051), [anon_sym_match] = ACTIONS(3051), [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), [anon_sym_try] = ACTIONS(3051), [anon_sym_DOT] = ACTIONS(3049), [anon_sym_true] = ACTIONS(3051), @@ -126631,7 +155923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3049), }, - [STATE(1219)] = { + [STATE(1446)] = { [ts_builtin_sym_end] = ACTIONS(3053), [sym_identifier] = ACTIONS(3055), [anon_sym_import] = ACTIONS(3055), @@ -126693,6 +155985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3055), [anon_sym_match] = ACTIONS(3055), [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), [anon_sym_try] = ACTIONS(3055), [anon_sym_DOT] = ACTIONS(3053), [anon_sym_true] = ACTIONS(3055), @@ -126708,7 +156001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3053), }, - [STATE(1220)] = { + [STATE(1447)] = { [ts_builtin_sym_end] = ACTIONS(3057), [sym_identifier] = ACTIONS(3059), [anon_sym_import] = ACTIONS(3059), @@ -126770,6 +156063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3059), [anon_sym_match] = ACTIONS(3059), [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), [anon_sym_try] = ACTIONS(3059), [anon_sym_DOT] = ACTIONS(3057), [anon_sym_true] = ACTIONS(3059), @@ -126785,7 +156079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3057), }, - [STATE(1221)] = { + [STATE(1448)] = { [ts_builtin_sym_end] = ACTIONS(3061), [sym_identifier] = ACTIONS(3063), [anon_sym_import] = ACTIONS(3063), @@ -126847,6 +156141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3063), [anon_sym_match] = ACTIONS(3063), [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), [anon_sym_try] = ACTIONS(3063), [anon_sym_DOT] = ACTIONS(3061), [anon_sym_true] = ACTIONS(3063), @@ -126862,7 +156157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3061), }, - [STATE(1222)] = { + [STATE(1449)] = { [ts_builtin_sym_end] = ACTIONS(3065), [sym_identifier] = ACTIONS(3067), [anon_sym_import] = ACTIONS(3067), @@ -126924,6 +156219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3067), [anon_sym_match] = ACTIONS(3067), [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3065), [anon_sym_try] = ACTIONS(3067), [anon_sym_DOT] = ACTIONS(3065), [anon_sym_true] = ACTIONS(3067), @@ -126939,7 +156235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3065), }, - [STATE(1223)] = { + [STATE(1450)] = { [ts_builtin_sym_end] = ACTIONS(3069), [sym_identifier] = ACTIONS(3071), [anon_sym_import] = ACTIONS(3071), @@ -127001,6 +156297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3071), [anon_sym_match] = ACTIONS(3071), [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3069), [anon_sym_try] = ACTIONS(3071), [anon_sym_DOT] = ACTIONS(3069), [anon_sym_true] = ACTIONS(3071), @@ -127016,7 +156313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3069), }, - [STATE(1224)] = { + [STATE(1451)] = { [ts_builtin_sym_end] = ACTIONS(3073), [sym_identifier] = ACTIONS(3075), [anon_sym_import] = ACTIONS(3075), @@ -127078,6 +156375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3075), [anon_sym_match] = ACTIONS(3075), [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3073), [anon_sym_try] = ACTIONS(3075), [anon_sym_DOT] = ACTIONS(3073), [anon_sym_true] = ACTIONS(3075), @@ -127093,7 +156391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3073), }, - [STATE(1225)] = { + [STATE(1452)] = { [ts_builtin_sym_end] = ACTIONS(3077), [sym_identifier] = ACTIONS(3079), [anon_sym_import] = ACTIONS(3079), @@ -127155,6 +156453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3079), [anon_sym_match] = ACTIONS(3079), [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3077), [anon_sym_try] = ACTIONS(3079), [anon_sym_DOT] = ACTIONS(3077), [anon_sym_true] = ACTIONS(3079), @@ -127170,7 +156469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3077), }, - [STATE(1226)] = { + [STATE(1453)] = { [ts_builtin_sym_end] = ACTIONS(3081), [sym_identifier] = ACTIONS(3083), [anon_sym_import] = ACTIONS(3083), @@ -127232,6 +156531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3083), [anon_sym_match] = ACTIONS(3083), [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), [anon_sym_try] = ACTIONS(3083), [anon_sym_DOT] = ACTIONS(3081), [anon_sym_true] = ACTIONS(3083), @@ -127247,7 +156547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3081), }, - [STATE(1227)] = { + [STATE(1454)] = { [ts_builtin_sym_end] = ACTIONS(3085), [sym_identifier] = ACTIONS(3087), [anon_sym_import] = ACTIONS(3087), @@ -127309,6 +156609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3087), [anon_sym_match] = ACTIONS(3087), [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3085), [anon_sym_try] = ACTIONS(3087), [anon_sym_DOT] = ACTIONS(3085), [anon_sym_true] = ACTIONS(3087), @@ -127324,7 +156625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3085), }, - [STATE(1228)] = { + [STATE(1455)] = { [ts_builtin_sym_end] = ACTIONS(3089), [sym_identifier] = ACTIONS(3091), [anon_sym_import] = ACTIONS(3091), @@ -127386,6 +156687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3091), [anon_sym_match] = ACTIONS(3091), [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3089), [anon_sym_try] = ACTIONS(3091), [anon_sym_DOT] = ACTIONS(3089), [anon_sym_true] = ACTIONS(3091), @@ -127401,7 +156703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3089), }, - [STATE(1229)] = { + [STATE(1456)] = { [ts_builtin_sym_end] = ACTIONS(3093), [sym_identifier] = ACTIONS(3095), [anon_sym_import] = ACTIONS(3095), @@ -127463,6 +156765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3095), [anon_sym_match] = ACTIONS(3095), [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3093), [anon_sym_try] = ACTIONS(3095), [anon_sym_DOT] = ACTIONS(3093), [anon_sym_true] = ACTIONS(3095), @@ -127478,7 +156781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3093), }, - [STATE(1230)] = { + [STATE(1457)] = { [ts_builtin_sym_end] = ACTIONS(3097), [sym_identifier] = ACTIONS(3099), [anon_sym_import] = ACTIONS(3099), @@ -127540,6 +156843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3099), [anon_sym_match] = ACTIONS(3099), [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3097), [anon_sym_try] = ACTIONS(3099), [anon_sym_DOT] = ACTIONS(3097), [anon_sym_true] = ACTIONS(3099), @@ -127555,7 +156859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3097), }, - [STATE(1231)] = { + [STATE(1458)] = { [ts_builtin_sym_end] = ACTIONS(3101), [sym_identifier] = ACTIONS(3103), [anon_sym_import] = ACTIONS(3103), @@ -127617,6 +156921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3103), [anon_sym_match] = ACTIONS(3103), [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), [anon_sym_try] = ACTIONS(3103), [anon_sym_DOT] = ACTIONS(3101), [anon_sym_true] = ACTIONS(3103), @@ -127632,7 +156937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3101), }, - [STATE(1232)] = { + [STATE(1459)] = { [ts_builtin_sym_end] = ACTIONS(3105), [sym_identifier] = ACTIONS(3107), [anon_sym_import] = ACTIONS(3107), @@ -127694,6 +156999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3107), [anon_sym_match] = ACTIONS(3107), [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), [anon_sym_try] = ACTIONS(3107), [anon_sym_DOT] = ACTIONS(3105), [anon_sym_true] = ACTIONS(3107), @@ -127709,7 +157015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3105), }, - [STATE(1233)] = { + [STATE(1460)] = { [ts_builtin_sym_end] = ACTIONS(3109), [sym_identifier] = ACTIONS(3111), [anon_sym_import] = ACTIONS(3111), @@ -127771,6 +157077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3111), [anon_sym_match] = ACTIONS(3111), [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3109), [anon_sym_try] = ACTIONS(3111), [anon_sym_DOT] = ACTIONS(3109), [anon_sym_true] = ACTIONS(3111), @@ -127786,7 +157093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3109), }, - [STATE(1234)] = { + [STATE(1461)] = { [ts_builtin_sym_end] = ACTIONS(3113), [sym_identifier] = ACTIONS(3115), [anon_sym_import] = ACTIONS(3115), @@ -127848,6 +157155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3115), [anon_sym_match] = ACTIONS(3115), [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3113), [anon_sym_try] = ACTIONS(3115), [anon_sym_DOT] = ACTIONS(3113), [anon_sym_true] = ACTIONS(3115), @@ -127863,7 +157171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3113), }, - [STATE(1235)] = { + [STATE(1462)] = { [ts_builtin_sym_end] = ACTIONS(3117), [sym_identifier] = ACTIONS(3119), [anon_sym_import] = ACTIONS(3119), @@ -127925,6 +157233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3119), [anon_sym_match] = ACTIONS(3119), [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3117), [anon_sym_try] = ACTIONS(3119), [anon_sym_DOT] = ACTIONS(3117), [anon_sym_true] = ACTIONS(3119), @@ -127940,7 +157249,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3117), }, - [STATE(1236)] = { + [STATE(1463)] = { + [ts_builtin_sym_end] = ACTIONS(1057), + [sym_identifier] = ACTIONS(1059), + [anon_sym_import] = ACTIONS(1059), + [anon_sym_test] = ACTIONS(1059), + [anon_sym_hide] = ACTIONS(1059), + [anon_sym_func] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_struct] = ACTIONS(1059), + [anon_sym_LPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_LBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_void] = ACTIONS(1059), + [anon_sym_anyopaque] = ACTIONS(1059), + [anon_sym_bool] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(1059), + [anon_sym_uint] = ACTIONS(1059), + [anon_sym_float] = ACTIONS(1059), + [anon_sym_range] = ACTIONS(1059), + [anon_sym_i8] = ACTIONS(1059), + [anon_sym_i16] = ACTIONS(1059), + [anon_sym_i32] = ACTIONS(1059), + [anon_sym_i64] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1059), + [anon_sym_u16] = ACTIONS(1059), + [anon_sym_u32] = ACTIONS(1059), + [anon_sym_u64] = ACTIONS(1059), + [anon_sym_isize] = ACTIONS(1059), + [anon_sym_usize] = ACTIONS(1059), + [anon_sym_f32] = ACTIONS(1059), + [anon_sym_f64] = ACTIONS(1059), + [anon_sym_c_char] = ACTIONS(1059), + [anon_sym_c_schar] = ACTIONS(1059), + [anon_sym_c_uchar] = ACTIONS(1059), + [anon_sym_c_short] = ACTIONS(1059), + [anon_sym_c_ushort] = ACTIONS(1059), + [anon_sym_c_int] = ACTIONS(1059), + [anon_sym_c_uint] = ACTIONS(1059), + [anon_sym_c_long] = ACTIONS(1059), + [anon_sym_c_ulong] = ACTIONS(1059), + [anon_sym_c_longlong] = ACTIONS(1059), + [anon_sym_c_ulonglong] = ACTIONS(1059), + [anon_sym_c_float] = ACTIONS(1059), + [anon_sym_c_double] = ACTIONS(1059), + [anon_sym_c_longdouble] = ACTIONS(1059), + [anon_sym_return] = ACTIONS(1059), + [anon_sym_yield] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1059), + [anon_sym_continue] = ACTIONS(1059), + [anon_sym_defer] = ACTIONS(1059), + [anon_sym_errdefer] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1059), + [anon_sym_else] = ACTIONS(1059), + [anon_sym_while] = ACTIONS(1059), + [anon_sym_expand] = ACTIONS(1059), + [anon_sym_for] = ACTIONS(1059), + [anon_sym_match] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_try] = ACTIONS(1059), + [anon_sym_DOT] = ACTIONS(1057), + [anon_sym_true] = ACTIONS(1059), + [anon_sym_false] = ACTIONS(1059), + [sym_none] = ACTIONS(1059), + [sym_undefined] = ACTIONS(1059), + [sym_sink] = ACTIONS(1059), + [sym_integer] = ACTIONS(1059), + [sym_float] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1057), + [sym_multiline_string] = ACTIONS(1057), + [sym_character] = ACTIONS(1057), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1057), + }, + [STATE(1464)] = { [ts_builtin_sym_end] = ACTIONS(3121), [sym_identifier] = ACTIONS(3123), [anon_sym_import] = ACTIONS(3123), @@ -128002,6 +157389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3123), [anon_sym_match] = ACTIONS(3123), [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3121), [anon_sym_try] = ACTIONS(3123), [anon_sym_DOT] = ACTIONS(3121), [anon_sym_true] = ACTIONS(3123), @@ -128017,7 +157405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3121), }, - [STATE(1237)] = { + [STATE(1465)] = { [ts_builtin_sym_end] = ACTIONS(3125), [sym_identifier] = ACTIONS(3127), [anon_sym_import] = ACTIONS(3127), @@ -128079,6 +157467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3127), [anon_sym_match] = ACTIONS(3127), [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3125), [anon_sym_try] = ACTIONS(3127), [anon_sym_DOT] = ACTIONS(3125), [anon_sym_true] = ACTIONS(3127), @@ -128094,7 +157483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3125), }, - [STATE(1238)] = { + [STATE(1466)] = { [ts_builtin_sym_end] = ACTIONS(3129), [sym_identifier] = ACTIONS(3131), [anon_sym_import] = ACTIONS(3131), @@ -128156,6 +157545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3131), [anon_sym_match] = ACTIONS(3131), [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), [anon_sym_try] = ACTIONS(3131), [anon_sym_DOT] = ACTIONS(3129), [anon_sym_true] = ACTIONS(3131), @@ -128171,7 +157561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3129), }, - [STATE(1239)] = { + [STATE(1467)] = { [ts_builtin_sym_end] = ACTIONS(3133), [sym_identifier] = ACTIONS(3135), [anon_sym_import] = ACTIONS(3135), @@ -128233,6 +157623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3135), [anon_sym_match] = ACTIONS(3135), [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), [anon_sym_try] = ACTIONS(3135), [anon_sym_DOT] = ACTIONS(3133), [anon_sym_true] = ACTIONS(3135), @@ -128248,7 +157639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3133), }, - [STATE(1240)] = { + [STATE(1468)] = { [ts_builtin_sym_end] = ACTIONS(3137), [sym_identifier] = ACTIONS(3139), [anon_sym_import] = ACTIONS(3139), @@ -128310,6 +157701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3139), [anon_sym_match] = ACTIONS(3139), [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3137), [anon_sym_try] = ACTIONS(3139), [anon_sym_DOT] = ACTIONS(3137), [anon_sym_true] = ACTIONS(3139), @@ -128325,7 +157717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3137), }, - [STATE(1241)] = { + [STATE(1469)] = { [ts_builtin_sym_end] = ACTIONS(3141), [sym_identifier] = ACTIONS(3143), [anon_sym_import] = ACTIONS(3143), @@ -128387,6 +157779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3143), [anon_sym_match] = ACTIONS(3143), [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), [anon_sym_try] = ACTIONS(3143), [anon_sym_DOT] = ACTIONS(3141), [anon_sym_true] = ACTIONS(3143), @@ -128402,7 +157795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3141), }, - [STATE(1242)] = { + [STATE(1470)] = { [ts_builtin_sym_end] = ACTIONS(3145), [sym_identifier] = ACTIONS(3147), [anon_sym_import] = ACTIONS(3147), @@ -128464,6 +157857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3147), [anon_sym_match] = ACTIONS(3147), [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), [anon_sym_try] = ACTIONS(3147), [anon_sym_DOT] = ACTIONS(3145), [anon_sym_true] = ACTIONS(3147), @@ -128479,7 +157873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3145), }, - [STATE(1243)] = { + [STATE(1471)] = { [ts_builtin_sym_end] = ACTIONS(3149), [sym_identifier] = ACTIONS(3151), [anon_sym_import] = ACTIONS(3151), @@ -128541,6 +157935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3151), [anon_sym_match] = ACTIONS(3151), [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3149), [anon_sym_try] = ACTIONS(3151), [anon_sym_DOT] = ACTIONS(3149), [anon_sym_true] = ACTIONS(3151), @@ -128556,7 +157951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3149), }, - [STATE(1244)] = { + [STATE(1472)] = { [ts_builtin_sym_end] = ACTIONS(3153), [sym_identifier] = ACTIONS(3155), [anon_sym_import] = ACTIONS(3155), @@ -128618,6 +158013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3155), [anon_sym_match] = ACTIONS(3155), [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3153), [anon_sym_try] = ACTIONS(3155), [anon_sym_DOT] = ACTIONS(3153), [anon_sym_true] = ACTIONS(3155), @@ -128633,7 +158029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3153), }, - [STATE(1245)] = { + [STATE(1473)] = { [ts_builtin_sym_end] = ACTIONS(3157), [sym_identifier] = ACTIONS(3159), [anon_sym_import] = ACTIONS(3159), @@ -128695,6 +158091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3159), [anon_sym_match] = ACTIONS(3159), [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3157), [anon_sym_try] = ACTIONS(3159), [anon_sym_DOT] = ACTIONS(3157), [anon_sym_true] = ACTIONS(3159), @@ -128710,7 +158107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3157), }, - [STATE(1246)] = { + [STATE(1474)] = { [ts_builtin_sym_end] = ACTIONS(3161), [sym_identifier] = ACTIONS(3163), [anon_sym_import] = ACTIONS(3163), @@ -128772,6 +158169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3163), [anon_sym_match] = ACTIONS(3163), [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), [anon_sym_try] = ACTIONS(3163), [anon_sym_DOT] = ACTIONS(3161), [anon_sym_true] = ACTIONS(3163), @@ -128787,7 +158185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3161), }, - [STATE(1247)] = { + [STATE(1475)] = { [ts_builtin_sym_end] = ACTIONS(3165), [sym_identifier] = ACTIONS(3167), [anon_sym_import] = ACTIONS(3167), @@ -128849,6 +158247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3167), [anon_sym_match] = ACTIONS(3167), [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), [anon_sym_try] = ACTIONS(3167), [anon_sym_DOT] = ACTIONS(3165), [anon_sym_true] = ACTIONS(3167), @@ -128864,7 +158263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3165), }, - [STATE(1248)] = { + [STATE(1476)] = { [ts_builtin_sym_end] = ACTIONS(3169), [sym_identifier] = ACTIONS(3171), [anon_sym_import] = ACTIONS(3171), @@ -128926,6 +158325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3171), [anon_sym_match] = ACTIONS(3171), [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), [anon_sym_try] = ACTIONS(3171), [anon_sym_DOT] = ACTIONS(3169), [anon_sym_true] = ACTIONS(3171), @@ -128941,7 +158341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3169), }, - [STATE(1249)] = { + [STATE(1477)] = { [ts_builtin_sym_end] = ACTIONS(3173), [sym_identifier] = ACTIONS(3175), [anon_sym_import] = ACTIONS(3175), @@ -129003,6 +158403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3175), [anon_sym_match] = ACTIONS(3175), [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), [anon_sym_try] = ACTIONS(3175), [anon_sym_DOT] = ACTIONS(3173), [anon_sym_true] = ACTIONS(3175), @@ -129018,7 +158419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3173), }, - [STATE(1250)] = { + [STATE(1478)] = { [ts_builtin_sym_end] = ACTIONS(3177), [sym_identifier] = ACTIONS(3179), [anon_sym_import] = ACTIONS(3179), @@ -129080,6 +158481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3179), [anon_sym_match] = ACTIONS(3179), [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), [anon_sym_try] = ACTIONS(3179), [anon_sym_DOT] = ACTIONS(3177), [anon_sym_true] = ACTIONS(3179), @@ -129095,7 +158497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3177), }, - [STATE(1251)] = { + [STATE(1479)] = { [ts_builtin_sym_end] = ACTIONS(3181), [sym_identifier] = ACTIONS(3183), [anon_sym_import] = ACTIONS(3183), @@ -129157,6 +158559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3183), [anon_sym_match] = ACTIONS(3183), [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), [anon_sym_try] = ACTIONS(3183), [anon_sym_DOT] = ACTIONS(3181), [anon_sym_true] = ACTIONS(3183), @@ -129172,7 +158575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3181), }, - [STATE(1252)] = { + [STATE(1480)] = { [ts_builtin_sym_end] = ACTIONS(3185), [sym_identifier] = ACTIONS(3187), [anon_sym_import] = ACTIONS(3187), @@ -129234,6 +158637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3187), [anon_sym_match] = ACTIONS(3187), [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), [anon_sym_try] = ACTIONS(3187), [anon_sym_DOT] = ACTIONS(3185), [anon_sym_true] = ACTIONS(3187), @@ -129249,7 +158653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3185), }, - [STATE(1253)] = { + [STATE(1481)] = { [ts_builtin_sym_end] = ACTIONS(3189), [sym_identifier] = ACTIONS(3191), [anon_sym_import] = ACTIONS(3191), @@ -129311,6 +158715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3191), [anon_sym_match] = ACTIONS(3191), [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), [anon_sym_try] = ACTIONS(3191), [anon_sym_DOT] = ACTIONS(3189), [anon_sym_true] = ACTIONS(3191), @@ -129326,7 +158731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3189), }, - [STATE(1254)] = { + [STATE(1482)] = { [ts_builtin_sym_end] = ACTIONS(3193), [sym_identifier] = ACTIONS(3195), [anon_sym_import] = ACTIONS(3195), @@ -129388,6 +158793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3195), [anon_sym_match] = ACTIONS(3195), [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), [anon_sym_try] = ACTIONS(3195), [anon_sym_DOT] = ACTIONS(3193), [anon_sym_true] = ACTIONS(3195), @@ -129403,7 +158809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3193), }, - [STATE(1255)] = { + [STATE(1483)] = { [ts_builtin_sym_end] = ACTIONS(3197), [sym_identifier] = ACTIONS(3199), [anon_sym_import] = ACTIONS(3199), @@ -129465,6 +158871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3199), [anon_sym_match] = ACTIONS(3199), [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), [anon_sym_try] = ACTIONS(3199), [anon_sym_DOT] = ACTIONS(3197), [anon_sym_true] = ACTIONS(3199), @@ -129480,7 +158887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3197), }, - [STATE(1256)] = { + [STATE(1484)] = { [ts_builtin_sym_end] = ACTIONS(3201), [sym_identifier] = ACTIONS(3203), [anon_sym_import] = ACTIONS(3203), @@ -129542,6 +158949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3203), [anon_sym_match] = ACTIONS(3203), [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), [anon_sym_try] = ACTIONS(3203), [anon_sym_DOT] = ACTIONS(3201), [anon_sym_true] = ACTIONS(3203), @@ -129557,7 +158965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3201), }, - [STATE(1257)] = { + [STATE(1485)] = { [ts_builtin_sym_end] = ACTIONS(3205), [sym_identifier] = ACTIONS(3207), [anon_sym_import] = ACTIONS(3207), @@ -129619,6 +159027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3207), [anon_sym_match] = ACTIONS(3207), [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), [anon_sym_try] = ACTIONS(3207), [anon_sym_DOT] = ACTIONS(3205), [anon_sym_true] = ACTIONS(3207), @@ -129634,7 +159043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3205), }, - [STATE(1258)] = { + [STATE(1486)] = { [ts_builtin_sym_end] = ACTIONS(3209), [sym_identifier] = ACTIONS(3211), [anon_sym_import] = ACTIONS(3211), @@ -129696,6 +159105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3211), [anon_sym_match] = ACTIONS(3211), [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), [anon_sym_try] = ACTIONS(3211), [anon_sym_DOT] = ACTIONS(3209), [anon_sym_true] = ACTIONS(3211), @@ -129711,7 +159121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3209), }, - [STATE(1259)] = { + [STATE(1487)] = { [ts_builtin_sym_end] = ACTIONS(3213), [sym_identifier] = ACTIONS(3215), [anon_sym_import] = ACTIONS(3215), @@ -129773,6 +159183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3215), [anon_sym_match] = ACTIONS(3215), [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), [anon_sym_try] = ACTIONS(3215), [anon_sym_DOT] = ACTIONS(3213), [anon_sym_true] = ACTIONS(3215), @@ -129788,7 +159199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3213), }, - [STATE(1260)] = { + [STATE(1488)] = { [ts_builtin_sym_end] = ACTIONS(3217), [sym_identifier] = ACTIONS(3219), [anon_sym_import] = ACTIONS(3219), @@ -129850,6 +159261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3219), [anon_sym_match] = ACTIONS(3219), [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), [anon_sym_try] = ACTIONS(3219), [anon_sym_DOT] = ACTIONS(3217), [anon_sym_true] = ACTIONS(3219), @@ -129865,7 +159277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3217), }, - [STATE(1261)] = { + [STATE(1489)] = { [ts_builtin_sym_end] = ACTIONS(3221), [sym_identifier] = ACTIONS(3223), [anon_sym_import] = ACTIONS(3223), @@ -129927,6 +159339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3223), [anon_sym_match] = ACTIONS(3223), [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), [anon_sym_try] = ACTIONS(3223), [anon_sym_DOT] = ACTIONS(3221), [anon_sym_true] = ACTIONS(3223), @@ -129942,7 +159355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3221), }, - [STATE(1262)] = { + [STATE(1490)] = { [ts_builtin_sym_end] = ACTIONS(3225), [sym_identifier] = ACTIONS(3227), [anon_sym_import] = ACTIONS(3227), @@ -130004,6 +159417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3227), [anon_sym_match] = ACTIONS(3227), [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), [anon_sym_try] = ACTIONS(3227), [anon_sym_DOT] = ACTIONS(3225), [anon_sym_true] = ACTIONS(3227), @@ -130019,7 +159433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3225), }, - [STATE(1263)] = { + [STATE(1491)] = { [ts_builtin_sym_end] = ACTIONS(3229), [sym_identifier] = ACTIONS(3231), [anon_sym_import] = ACTIONS(3231), @@ -130081,6 +159495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3231), [anon_sym_match] = ACTIONS(3231), [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), [anon_sym_try] = ACTIONS(3231), [anon_sym_DOT] = ACTIONS(3229), [anon_sym_true] = ACTIONS(3231), @@ -130096,7 +159511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3229), }, - [STATE(1264)] = { + [STATE(1492)] = { [ts_builtin_sym_end] = ACTIONS(3233), [sym_identifier] = ACTIONS(3235), [anon_sym_import] = ACTIONS(3235), @@ -130158,6 +159573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3235), [anon_sym_match] = ACTIONS(3235), [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), [anon_sym_try] = ACTIONS(3235), [anon_sym_DOT] = ACTIONS(3233), [anon_sym_true] = ACTIONS(3235), @@ -130173,7 +159589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3233), }, - [STATE(1265)] = { + [STATE(1493)] = { [ts_builtin_sym_end] = ACTIONS(3237), [sym_identifier] = ACTIONS(3239), [anon_sym_import] = ACTIONS(3239), @@ -130235,6 +159651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3239), [anon_sym_match] = ACTIONS(3239), [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), [anon_sym_try] = ACTIONS(3239), [anon_sym_DOT] = ACTIONS(3237), [anon_sym_true] = ACTIONS(3239), @@ -130250,7 +159667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3237), }, - [STATE(1266)] = { + [STATE(1494)] = { [ts_builtin_sym_end] = ACTIONS(3241), [sym_identifier] = ACTIONS(3243), [anon_sym_import] = ACTIONS(3243), @@ -130312,6 +159729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3243), [anon_sym_match] = ACTIONS(3243), [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), [anon_sym_try] = ACTIONS(3243), [anon_sym_DOT] = ACTIONS(3241), [anon_sym_true] = ACTIONS(3243), @@ -130327,7 +159745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3241), }, - [STATE(1267)] = { + [STATE(1495)] = { [ts_builtin_sym_end] = ACTIONS(3245), [sym_identifier] = ACTIONS(3247), [anon_sym_import] = ACTIONS(3247), @@ -130389,6 +159807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3247), [anon_sym_match] = ACTIONS(3247), [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), [anon_sym_try] = ACTIONS(3247), [anon_sym_DOT] = ACTIONS(3245), [anon_sym_true] = ACTIONS(3247), @@ -130404,7 +159823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3245), }, - [STATE(1268)] = { + [STATE(1496)] = { [ts_builtin_sym_end] = ACTIONS(3249), [sym_identifier] = ACTIONS(3251), [anon_sym_import] = ACTIONS(3251), @@ -130466,6 +159885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3251), [anon_sym_match] = ACTIONS(3251), [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), [anon_sym_try] = ACTIONS(3251), [anon_sym_DOT] = ACTIONS(3249), [anon_sym_true] = ACTIONS(3251), @@ -130481,7 +159901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3249), }, - [STATE(1269)] = { + [STATE(1497)] = { [ts_builtin_sym_end] = ACTIONS(3253), [sym_identifier] = ACTIONS(3255), [anon_sym_import] = ACTIONS(3255), @@ -130543,6 +159963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3255), [anon_sym_match] = ACTIONS(3255), [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), [anon_sym_try] = ACTIONS(3255), [anon_sym_DOT] = ACTIONS(3253), [anon_sym_true] = ACTIONS(3255), @@ -130558,7 +159979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3253), }, - [STATE(1270)] = { + [STATE(1498)] = { [ts_builtin_sym_end] = ACTIONS(3257), [sym_identifier] = ACTIONS(3259), [anon_sym_import] = ACTIONS(3259), @@ -130620,6 +160041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3259), [anon_sym_match] = ACTIONS(3259), [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), [anon_sym_try] = ACTIONS(3259), [anon_sym_DOT] = ACTIONS(3257), [anon_sym_true] = ACTIONS(3259), @@ -130635,7 +160057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3257), }, - [STATE(1271)] = { + [STATE(1499)] = { [ts_builtin_sym_end] = ACTIONS(3261), [sym_identifier] = ACTIONS(3263), [anon_sym_import] = ACTIONS(3263), @@ -130697,6 +160119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3263), [anon_sym_match] = ACTIONS(3263), [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), [anon_sym_try] = ACTIONS(3263), [anon_sym_DOT] = ACTIONS(3261), [anon_sym_true] = ACTIONS(3263), @@ -130712,7 +160135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3261), }, - [STATE(1272)] = { + [STATE(1500)] = { [ts_builtin_sym_end] = ACTIONS(3265), [sym_identifier] = ACTIONS(3267), [anon_sym_import] = ACTIONS(3267), @@ -130774,6 +160197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3267), [anon_sym_match] = ACTIONS(3267), [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), [anon_sym_try] = ACTIONS(3267), [anon_sym_DOT] = ACTIONS(3265), [anon_sym_true] = ACTIONS(3267), @@ -130789,7 +160213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3265), }, - [STATE(1273)] = { + [STATE(1501)] = { [ts_builtin_sym_end] = ACTIONS(3269), [sym_identifier] = ACTIONS(3271), [anon_sym_import] = ACTIONS(3271), @@ -130851,6 +160275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3271), [anon_sym_match] = ACTIONS(3271), [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), [anon_sym_try] = ACTIONS(3271), [anon_sym_DOT] = ACTIONS(3269), [anon_sym_true] = ACTIONS(3271), @@ -130866,7 +160291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3269), }, - [STATE(1274)] = { + [STATE(1502)] = { [ts_builtin_sym_end] = ACTIONS(3273), [sym_identifier] = ACTIONS(3275), [anon_sym_import] = ACTIONS(3275), @@ -130928,6 +160353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3275), [anon_sym_match] = ACTIONS(3275), [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), [anon_sym_try] = ACTIONS(3275), [anon_sym_DOT] = ACTIONS(3273), [anon_sym_true] = ACTIONS(3275), @@ -130943,7 +160369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3273), }, - [STATE(1275)] = { + [STATE(1503)] = { [ts_builtin_sym_end] = ACTIONS(3277), [sym_identifier] = ACTIONS(3279), [anon_sym_import] = ACTIONS(3279), @@ -131005,6 +160431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3279), [anon_sym_match] = ACTIONS(3279), [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), [anon_sym_try] = ACTIONS(3279), [anon_sym_DOT] = ACTIONS(3277), [anon_sym_true] = ACTIONS(3279), @@ -131020,7 +160447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3277), }, - [STATE(1276)] = { + [STATE(1504)] = { [ts_builtin_sym_end] = ACTIONS(3281), [sym_identifier] = ACTIONS(3283), [anon_sym_import] = ACTIONS(3283), @@ -131082,6 +160509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3283), [anon_sym_match] = ACTIONS(3283), [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), [anon_sym_try] = ACTIONS(3283), [anon_sym_DOT] = ACTIONS(3281), [anon_sym_true] = ACTIONS(3283), @@ -131097,7 +160525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3281), }, - [STATE(1277)] = { + [STATE(1505)] = { [ts_builtin_sym_end] = ACTIONS(3285), [sym_identifier] = ACTIONS(3287), [anon_sym_import] = ACTIONS(3287), @@ -131159,6 +160587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3287), [anon_sym_match] = ACTIONS(3287), [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), [anon_sym_try] = ACTIONS(3287), [anon_sym_DOT] = ACTIONS(3285), [anon_sym_true] = ACTIONS(3287), @@ -131174,7 +160603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3285), }, - [STATE(1278)] = { + [STATE(1506)] = { [ts_builtin_sym_end] = ACTIONS(3289), [sym_identifier] = ACTIONS(3291), [anon_sym_import] = ACTIONS(3291), @@ -131236,6 +160665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3291), [anon_sym_match] = ACTIONS(3291), [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), [anon_sym_try] = ACTIONS(3291), [anon_sym_DOT] = ACTIONS(3289), [anon_sym_true] = ACTIONS(3291), @@ -131251,7 +160681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3289), }, - [STATE(1279)] = { + [STATE(1507)] = { [ts_builtin_sym_end] = ACTIONS(3293), [sym_identifier] = ACTIONS(3295), [anon_sym_import] = ACTIONS(3295), @@ -131313,6 +160743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3295), [anon_sym_match] = ACTIONS(3295), [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), [anon_sym_try] = ACTIONS(3295), [anon_sym_DOT] = ACTIONS(3293), [anon_sym_true] = ACTIONS(3295), @@ -131328,7 +160759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3293), }, - [STATE(1280)] = { + [STATE(1508)] = { [ts_builtin_sym_end] = ACTIONS(3297), [sym_identifier] = ACTIONS(3299), [anon_sym_import] = ACTIONS(3299), @@ -131390,6 +160821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(3299), [anon_sym_match] = ACTIONS(3299), [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), [anon_sym_try] = ACTIONS(3299), [anon_sym_DOT] = ACTIONS(3297), [anon_sym_true] = ACTIONS(3299), @@ -131405,541 +160837,412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3297), }, - [STATE(1281)] = { - [sym_type] = STATE(436), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_mut] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_SLASH] = ACTIONS(321), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), + [STATE(1509)] = { + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_test] = ACTIONS(3303), + [anon_sym_hide] = ACTIONS(3303), + [anon_sym_func] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_RPAREN] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_DOLLAR] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_anyopaque] = ACTIONS(3303), + [anon_sym_bool] = ACTIONS(3303), + [anon_sym_int] = ACTIONS(3303), + [anon_sym_uint] = ACTIONS(3303), + [anon_sym_float] = ACTIONS(3303), + [anon_sym_range] = ACTIONS(3303), + [anon_sym_i8] = ACTIONS(3303), + [anon_sym_i16] = ACTIONS(3303), + [anon_sym_i32] = ACTIONS(3303), + [anon_sym_i64] = ACTIONS(3303), + [anon_sym_u8] = ACTIONS(3303), + [anon_sym_u16] = ACTIONS(3303), + [anon_sym_u32] = ACTIONS(3303), + [anon_sym_u64] = ACTIONS(3303), + [anon_sym_isize] = ACTIONS(3303), + [anon_sym_usize] = ACTIONS(3303), + [anon_sym_f32] = ACTIONS(3303), + [anon_sym_f64] = ACTIONS(3303), + [anon_sym_c_char] = ACTIONS(3303), + [anon_sym_c_schar] = ACTIONS(3303), + [anon_sym_c_uchar] = ACTIONS(3303), + [anon_sym_c_short] = ACTIONS(3303), + [anon_sym_c_ushort] = ACTIONS(3303), + [anon_sym_c_int] = ACTIONS(3303), + [anon_sym_c_uint] = ACTIONS(3303), + [anon_sym_c_long] = ACTIONS(3303), + [anon_sym_c_ulong] = ACTIONS(3303), + [anon_sym_c_longlong] = ACTIONS(3303), + [anon_sym_c_ulonglong] = ACTIONS(3303), + [anon_sym_c_float] = ACTIONS(3303), + [anon_sym_c_double] = ACTIONS(3303), + [anon_sym_c_longdouble] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_defer] = ACTIONS(3303), + [anon_sym_errdefer] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_expand] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_DOT] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [sym_none] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [sym_sink] = ACTIONS(3303), + [sym_integer] = ACTIONS(3303), + [sym_float] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [sym_multiline_string] = ACTIONS(3301), + [sym_character] = ACTIONS(3301), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(3301), }, - [STATE(1282)] = { - [sym_type] = STATE(437), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_mut] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(326), - [anon_sym_DOT_DOT_EQ] = ACTIONS(321), - [anon_sym_orelse] = ACTIONS(326), - [anon_sym_catch] = ACTIONS(326), - [anon_sym_or] = ACTIONS(326), - [anon_sym_and] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(326), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(321), - [anon_sym_SLASH] = ACTIONS(321), - [anon_sym_DOT] = ACTIONS(326), - [anon_sym_CARET] = ACTIONS(321), + [STATE(1510)] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_test] = ACTIONS(3307), + [anon_sym_hide] = ACTIONS(3307), + [anon_sym_func] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_RPAREN] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_DOLLAR] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3307), + [anon_sym_anyopaque] = ACTIONS(3307), + [anon_sym_bool] = ACTIONS(3307), + [anon_sym_int] = ACTIONS(3307), + [anon_sym_uint] = ACTIONS(3307), + [anon_sym_float] = ACTIONS(3307), + [anon_sym_range] = ACTIONS(3307), + [anon_sym_i8] = ACTIONS(3307), + [anon_sym_i16] = ACTIONS(3307), + [anon_sym_i32] = ACTIONS(3307), + [anon_sym_i64] = ACTIONS(3307), + [anon_sym_u8] = ACTIONS(3307), + [anon_sym_u16] = ACTIONS(3307), + [anon_sym_u32] = ACTIONS(3307), + [anon_sym_u64] = ACTIONS(3307), + [anon_sym_isize] = ACTIONS(3307), + [anon_sym_usize] = ACTIONS(3307), + [anon_sym_f32] = ACTIONS(3307), + [anon_sym_f64] = ACTIONS(3307), + [anon_sym_c_char] = ACTIONS(3307), + [anon_sym_c_schar] = ACTIONS(3307), + [anon_sym_c_uchar] = ACTIONS(3307), + [anon_sym_c_short] = ACTIONS(3307), + [anon_sym_c_ushort] = ACTIONS(3307), + [anon_sym_c_int] = ACTIONS(3307), + [anon_sym_c_uint] = ACTIONS(3307), + [anon_sym_c_long] = ACTIONS(3307), + [anon_sym_c_ulong] = ACTIONS(3307), + [anon_sym_c_longlong] = ACTIONS(3307), + [anon_sym_c_ulonglong] = ACTIONS(3307), + [anon_sym_c_float] = ACTIONS(3307), + [anon_sym_c_double] = ACTIONS(3307), + [anon_sym_c_longdouble] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_defer] = ACTIONS(3307), + [anon_sym_errdefer] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_expand] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_DOT] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [sym_none] = ACTIONS(3307), + [sym_undefined] = ACTIONS(3307), + [sym_sink] = ACTIONS(3307), + [sym_integer] = ACTIONS(3307), + [sym_float] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_multiline_string] = ACTIONS(3305), + [sym_character] = ACTIONS(3305), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(321), + [sym__newline] = ACTIONS(3305), }, - [STATE(1283)] = { - [sym_type] = STATE(398), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(307), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3304), - [anon_sym_mut] = ACTIONS(313), - [anon_sym_LBRACK] = ACTIONS(315), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_DOT_DOT] = ACTIONS(302), - [anon_sym_DOT_DOT_EQ] = ACTIONS(297), - [anon_sym_orelse] = ACTIONS(302), - [anon_sym_catch] = ACTIONS(302), - [anon_sym_or] = ACTIONS(302), - [anon_sym_and] = ACTIONS(302), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(302), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(302), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_PLUS] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_DOT] = ACTIONS(302), - [anon_sym_CARET] = ACTIONS(297), + [STATE(1511)] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_test] = ACTIONS(3311), + [anon_sym_hide] = ACTIONS(3311), + [anon_sym_func] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_anyopaque] = ACTIONS(3311), + [anon_sym_bool] = ACTIONS(3311), + [anon_sym_int] = ACTIONS(3311), + [anon_sym_uint] = ACTIONS(3311), + [anon_sym_float] = ACTIONS(3311), + [anon_sym_range] = ACTIONS(3311), + [anon_sym_i8] = ACTIONS(3311), + [anon_sym_i16] = ACTIONS(3311), + [anon_sym_i32] = ACTIONS(3311), + [anon_sym_i64] = ACTIONS(3311), + [anon_sym_u8] = ACTIONS(3311), + [anon_sym_u16] = ACTIONS(3311), + [anon_sym_u32] = ACTIONS(3311), + [anon_sym_u64] = ACTIONS(3311), + [anon_sym_isize] = ACTIONS(3311), + [anon_sym_usize] = ACTIONS(3311), + [anon_sym_f32] = ACTIONS(3311), + [anon_sym_f64] = ACTIONS(3311), + [anon_sym_c_char] = ACTIONS(3311), + [anon_sym_c_schar] = ACTIONS(3311), + [anon_sym_c_uchar] = ACTIONS(3311), + [anon_sym_c_short] = ACTIONS(3311), + [anon_sym_c_ushort] = ACTIONS(3311), + [anon_sym_c_int] = ACTIONS(3311), + [anon_sym_c_uint] = ACTIONS(3311), + [anon_sym_c_long] = ACTIONS(3311), + [anon_sym_c_ulong] = ACTIONS(3311), + [anon_sym_c_longlong] = ACTIONS(3311), + [anon_sym_c_ulonglong] = ACTIONS(3311), + [anon_sym_c_float] = ACTIONS(3311), + [anon_sym_c_double] = ACTIONS(3311), + [anon_sym_c_longdouble] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_defer] = ACTIONS(3311), + [anon_sym_errdefer] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_expand] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_DOT] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [sym_sink] = ACTIONS(3311), + [sym_integer] = ACTIONS(3311), + [sym_float] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_multiline_string] = ACTIONS(3309), + [sym_character] = ACTIONS(3309), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(297), + [sym__newline] = ACTIONS(3309), }, - [STATE(1284)] = { - [sym_type] = STATE(392), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), + [STATE(1512)] = { + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_test] = ACTIONS(3315), + [anon_sym_hide] = ACTIONS(3315), + [anon_sym_func] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_RPAREN] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_anyopaque] = ACTIONS(3315), + [anon_sym_bool] = ACTIONS(3315), + [anon_sym_int] = ACTIONS(3315), + [anon_sym_uint] = ACTIONS(3315), + [anon_sym_float] = ACTIONS(3315), + [anon_sym_range] = ACTIONS(3315), + [anon_sym_i8] = ACTIONS(3315), + [anon_sym_i16] = ACTIONS(3315), + [anon_sym_i32] = ACTIONS(3315), + [anon_sym_i64] = ACTIONS(3315), + [anon_sym_u8] = ACTIONS(3315), + [anon_sym_u16] = ACTIONS(3315), + [anon_sym_u32] = ACTIONS(3315), + [anon_sym_u64] = ACTIONS(3315), + [anon_sym_isize] = ACTIONS(3315), + [anon_sym_usize] = ACTIONS(3315), + [anon_sym_f32] = ACTIONS(3315), + [anon_sym_f64] = ACTIONS(3315), + [anon_sym_c_char] = ACTIONS(3315), + [anon_sym_c_schar] = ACTIONS(3315), + [anon_sym_c_uchar] = ACTIONS(3315), + [anon_sym_c_short] = ACTIONS(3315), + [anon_sym_c_ushort] = ACTIONS(3315), + [anon_sym_c_int] = ACTIONS(3315), + [anon_sym_c_uint] = ACTIONS(3315), + [anon_sym_c_long] = ACTIONS(3315), + [anon_sym_c_ulong] = ACTIONS(3315), + [anon_sym_c_longlong] = ACTIONS(3315), + [anon_sym_c_ulonglong] = ACTIONS(3315), + [anon_sym_c_float] = ACTIONS(3315), + [anon_sym_c_double] = ACTIONS(3315), + [anon_sym_c_longdouble] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_defer] = ACTIONS(3315), + [anon_sym_errdefer] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_expand] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [sym_none] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [sym_sink] = ACTIONS(3315), + [sym_integer] = ACTIONS(3315), + [sym_float] = ACTIONS(3313), + [anon_sym_DQUOTE] = ACTIONS(3313), + [sym_multiline_string] = ACTIONS(3313), + [sym_character] = ACTIONS(3313), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(3313), }, - [STATE(1285)] = { - [sym_type] = STATE(451), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(229), - [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_DASH] = ACTIONS(229), - [anon_sym_PIPE] = ACTIONS(229), - [anon_sym_QMARK] = ACTIONS(355), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [anon_sym_orelse] = ACTIONS(233), - [anon_sym_catch] = ACTIONS(233), - [anon_sym_or] = ACTIONS(233), - [anon_sym_and] = ACTIONS(233), - [anon_sym_EQ_EQ] = ACTIONS(229), - [anon_sym_BANG_EQ] = ACTIONS(229), - [anon_sym_LT] = ACTIONS(233), - [anon_sym_LT_EQ] = ACTIONS(229), - [anon_sym_GT] = ACTIONS(233), - [anon_sym_GT_EQ] = ACTIONS(229), - [anon_sym_PLUS] = ACTIONS(229), - [anon_sym_SLASH] = ACTIONS(229), - [anon_sym_DOT] = ACTIONS(233), - [anon_sym_CARET] = ACTIONS(229), + [STATE(1513)] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_test] = ACTIONS(3319), + [anon_sym_hide] = ACTIONS(3319), + [anon_sym_func] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_struct] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_RPAREN] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_DOLLAR] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_anyopaque] = ACTIONS(3319), + [anon_sym_bool] = ACTIONS(3319), + [anon_sym_int] = ACTIONS(3319), + [anon_sym_uint] = ACTIONS(3319), + [anon_sym_float] = ACTIONS(3319), + [anon_sym_range] = ACTIONS(3319), + [anon_sym_i8] = ACTIONS(3319), + [anon_sym_i16] = ACTIONS(3319), + [anon_sym_i32] = ACTIONS(3319), + [anon_sym_i64] = ACTIONS(3319), + [anon_sym_u8] = ACTIONS(3319), + [anon_sym_u16] = ACTIONS(3319), + [anon_sym_u32] = ACTIONS(3319), + [anon_sym_u64] = ACTIONS(3319), + [anon_sym_isize] = ACTIONS(3319), + [anon_sym_usize] = ACTIONS(3319), + [anon_sym_f32] = ACTIONS(3319), + [anon_sym_f64] = ACTIONS(3319), + [anon_sym_c_char] = ACTIONS(3319), + [anon_sym_c_schar] = ACTIONS(3319), + [anon_sym_c_uchar] = ACTIONS(3319), + [anon_sym_c_short] = ACTIONS(3319), + [anon_sym_c_ushort] = ACTIONS(3319), + [anon_sym_c_int] = ACTIONS(3319), + [anon_sym_c_uint] = ACTIONS(3319), + [anon_sym_c_long] = ACTIONS(3319), + [anon_sym_c_ulong] = ACTIONS(3319), + [anon_sym_c_longlong] = ACTIONS(3319), + [anon_sym_c_ulonglong] = ACTIONS(3319), + [anon_sym_c_float] = ACTIONS(3319), + [anon_sym_c_double] = ACTIONS(3319), + [anon_sym_c_longdouble] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_defer] = ACTIONS(3319), + [anon_sym_errdefer] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_expand] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_DOT] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [sym_none] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [sym_sink] = ACTIONS(3319), + [sym_integer] = ACTIONS(3319), + [sym_float] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_multiline_string] = ACTIONS(3317), + [sym_character] = ACTIONS(3317), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(229), + [sym__newline] = ACTIONS(3317), }, - [STATE(1286)] = { - [sym_type] = STATE(416), - [sym__type_atom] = STATE(391), - [sym_named_type] = STATE(391), - [sym_optional_type] = STATE(391), - [sym_pointer_type] = STATE(391), - [sym_array_type] = STATE(391), - [sym_function_type] = STATE(391), - [sym_builtin_type] = STATE(391), - [sym_qualified_identifier] = STATE(390), - [sym_identifier] = ACTIONS(1940), - [anon_sym_func] = ACTIONS(235), - [anon_sym_c_func] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_COMMA] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(377), - [anon_sym_AT] = ACTIONS(239), - [anon_sym_STAR] = ACTIONS(3310), - [anon_sym_mut] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_void] = ACTIONS(41), - [anon_sym_anyopaque] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(41), - [anon_sym_int] = ACTIONS(41), - [anon_sym_uint] = ACTIONS(41), - [anon_sym_float] = ACTIONS(41), - [anon_sym_range] = ACTIONS(41), - [anon_sym_i8] = ACTIONS(41), - [anon_sym_i16] = ACTIONS(41), - [anon_sym_i32] = ACTIONS(41), - [anon_sym_i64] = ACTIONS(41), - [anon_sym_u8] = ACTIONS(41), - [anon_sym_u16] = ACTIONS(41), - [anon_sym_u32] = ACTIONS(41), - [anon_sym_u64] = ACTIONS(41), - [anon_sym_isize] = ACTIONS(41), - [anon_sym_usize] = ACTIONS(41), - [anon_sym_f32] = ACTIONS(41), - [anon_sym_f64] = ACTIONS(41), - [anon_sym_c_char] = ACTIONS(41), - [anon_sym_c_schar] = ACTIONS(41), - [anon_sym_c_uchar] = ACTIONS(41), - [anon_sym_c_short] = ACTIONS(41), - [anon_sym_c_ushort] = ACTIONS(41), - [anon_sym_c_int] = ACTIONS(41), - [anon_sym_c_uint] = ACTIONS(41), - [anon_sym_c_long] = ACTIONS(41), - [anon_sym_c_ulong] = ACTIONS(41), - [anon_sym_c_longlong] = ACTIONS(41), - [anon_sym_c_ulonglong] = ACTIONS(41), - [anon_sym_c_float] = ACTIONS(41), - [anon_sym_c_double] = ACTIONS(41), - [anon_sym_c_longdouble] = ACTIONS(41), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_DOT_DOT] = ACTIONS(247), - [anon_sym_DOT_DOT_EQ] = ACTIONS(243), - [anon_sym_orelse] = ACTIONS(247), - [anon_sym_catch] = ACTIONS(247), - [anon_sym_or] = ACTIONS(247), - [anon_sym_and] = ACTIONS(247), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_DOT] = ACTIONS(247), - [anon_sym_CARET] = ACTIONS(243), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(243), - }, - [STATE(1287)] = { - [aux_sym_import_declaration_repeat1] = STATE(2101), - [sym_identifier] = ACTIONS(3313), - [anon_sym_func] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_DOLLAR] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_anyopaque] = ACTIONS(3313), - [anon_sym_bool] = ACTIONS(3313), - [anon_sym_int] = ACTIONS(3313), - [anon_sym_uint] = ACTIONS(3313), - [anon_sym_float] = ACTIONS(3313), - [anon_sym_range] = ACTIONS(3313), - [anon_sym_i8] = ACTIONS(3313), - [anon_sym_i16] = ACTIONS(3313), - [anon_sym_i32] = ACTIONS(3313), - [anon_sym_i64] = ACTIONS(3313), - [anon_sym_u8] = ACTIONS(3313), - [anon_sym_u16] = ACTIONS(3313), - [anon_sym_u32] = ACTIONS(3313), - [anon_sym_u64] = ACTIONS(3313), - [anon_sym_isize] = ACTIONS(3313), - [anon_sym_usize] = ACTIONS(3313), - [anon_sym_f32] = ACTIONS(3313), - [anon_sym_f64] = ACTIONS(3313), - [anon_sym_c_char] = ACTIONS(3313), - [anon_sym_c_schar] = ACTIONS(3313), - [anon_sym_c_uchar] = ACTIONS(3313), - [anon_sym_c_short] = ACTIONS(3313), - [anon_sym_c_ushort] = ACTIONS(3313), - [anon_sym_c_int] = ACTIONS(3313), - [anon_sym_c_uint] = ACTIONS(3313), - [anon_sym_c_long] = ACTIONS(3313), - [anon_sym_c_ulong] = ACTIONS(3313), - [anon_sym_c_longlong] = ACTIONS(3313), - [anon_sym_c_ulonglong] = ACTIONS(3313), - [anon_sym_c_float] = ACTIONS(3313), - [anon_sym_c_double] = ACTIONS(3313), - [anon_sym_c_longdouble] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_defer] = ACTIONS(3313), - [anon_sym_errdefer] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_expand] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [sym_none] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [sym_sink] = ACTIONS(3313), - [sym_integer] = ACTIONS(3313), - [sym_float] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_multiline_string] = ACTIONS(3315), - [sym_character] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3320), - }, - [STATE(1288)] = { - [aux_sym_import_declaration_repeat1] = STATE(2102), + [STATE(1514)] = { + [ts_builtin_sym_end] = ACTIONS(3321), [sym_identifier] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_test] = ACTIONS(3323), + [anon_sym_hide] = ACTIONS(3323), [anon_sym_func] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3321), [anon_sym_struct] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_DOLLAR] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_RPAREN] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_DOLLAR] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), [anon_sym_void] = ACTIONS(3323), [anon_sym_anyopaque] = ACTIONS(3323), [anon_sym_bool] = ACTIONS(3323), @@ -131980,768 +161283,1526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3323), [anon_sym_errdefer] = ACTIONS(3323), [anon_sym_if] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3323), [anon_sym_while] = ACTIONS(3323), [anon_sym_expand] = ACTIONS(3323), [anon_sym_for] = ACTIONS(3323), [anon_sym_match] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), [anon_sym_try] = ACTIONS(3323), - [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_DOT] = ACTIONS(3321), [anon_sym_true] = ACTIONS(3323), [anon_sym_false] = ACTIONS(3323), [sym_none] = ACTIONS(3323), [sym_undefined] = ACTIONS(3323), [sym_sink] = ACTIONS(3323), [sym_integer] = ACTIONS(3323), + [sym_float] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [sym_multiline_string] = ACTIONS(3321), + [sym_character] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3321), + }, + [STATE(1515)] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_test] = ACTIONS(3327), + [anon_sym_hide] = ACTIONS(3327), + [anon_sym_func] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_RPAREN] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_DOLLAR] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_anyopaque] = ACTIONS(3327), + [anon_sym_bool] = ACTIONS(3327), + [anon_sym_int] = ACTIONS(3327), + [anon_sym_uint] = ACTIONS(3327), + [anon_sym_float] = ACTIONS(3327), + [anon_sym_range] = ACTIONS(3327), + [anon_sym_i8] = ACTIONS(3327), + [anon_sym_i16] = ACTIONS(3327), + [anon_sym_i32] = ACTIONS(3327), + [anon_sym_i64] = ACTIONS(3327), + [anon_sym_u8] = ACTIONS(3327), + [anon_sym_u16] = ACTIONS(3327), + [anon_sym_u32] = ACTIONS(3327), + [anon_sym_u64] = ACTIONS(3327), + [anon_sym_isize] = ACTIONS(3327), + [anon_sym_usize] = ACTIONS(3327), + [anon_sym_f32] = ACTIONS(3327), + [anon_sym_f64] = ACTIONS(3327), + [anon_sym_c_char] = ACTIONS(3327), + [anon_sym_c_schar] = ACTIONS(3327), + [anon_sym_c_uchar] = ACTIONS(3327), + [anon_sym_c_short] = ACTIONS(3327), + [anon_sym_c_ushort] = ACTIONS(3327), + [anon_sym_c_int] = ACTIONS(3327), + [anon_sym_c_uint] = ACTIONS(3327), + [anon_sym_c_long] = ACTIONS(3327), + [anon_sym_c_ulong] = ACTIONS(3327), + [anon_sym_c_longlong] = ACTIONS(3327), + [anon_sym_c_ulonglong] = ACTIONS(3327), + [anon_sym_c_float] = ACTIONS(3327), + [anon_sym_c_double] = ACTIONS(3327), + [anon_sym_c_longdouble] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_defer] = ACTIONS(3327), + [anon_sym_errdefer] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_expand] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_DOT] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [sym_none] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [sym_sink] = ACTIONS(3327), + [sym_integer] = ACTIONS(3327), [sym_float] = ACTIONS(3325), [anon_sym_DQUOTE] = ACTIONS(3325), [sym_multiline_string] = ACTIONS(3325), [sym_character] = ACTIONS(3325), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3330), + [sym__newline] = ACTIONS(3325), }, - [STATE(1289)] = { - [aux_sym_import_declaration_repeat1] = STATE(2131), - [sym_identifier] = ACTIONS(3333), - [anon_sym_func] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_anyopaque] = ACTIONS(3333), - [anon_sym_bool] = ACTIONS(3333), - [anon_sym_int] = ACTIONS(3333), - [anon_sym_uint] = ACTIONS(3333), - [anon_sym_float] = ACTIONS(3333), - [anon_sym_range] = ACTIONS(3333), - [anon_sym_i8] = ACTIONS(3333), - [anon_sym_i16] = ACTIONS(3333), - [anon_sym_i32] = ACTIONS(3333), - [anon_sym_i64] = ACTIONS(3333), - [anon_sym_u8] = ACTIONS(3333), - [anon_sym_u16] = ACTIONS(3333), - [anon_sym_u32] = ACTIONS(3333), - [anon_sym_u64] = ACTIONS(3333), - [anon_sym_isize] = ACTIONS(3333), - [anon_sym_usize] = ACTIONS(3333), - [anon_sym_f32] = ACTIONS(3333), - [anon_sym_f64] = ACTIONS(3333), - [anon_sym_c_char] = ACTIONS(3333), - [anon_sym_c_schar] = ACTIONS(3333), - [anon_sym_c_uchar] = ACTIONS(3333), - [anon_sym_c_short] = ACTIONS(3333), - [anon_sym_c_ushort] = ACTIONS(3333), - [anon_sym_c_int] = ACTIONS(3333), - [anon_sym_c_uint] = ACTIONS(3333), - [anon_sym_c_long] = ACTIONS(3333), - [anon_sym_c_ulong] = ACTIONS(3333), - [anon_sym_c_longlong] = ACTIONS(3333), - [anon_sym_c_ulonglong] = ACTIONS(3333), - [anon_sym_c_float] = ACTIONS(3333), - [anon_sym_c_double] = ACTIONS(3333), - [anon_sym_c_longdouble] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_defer] = ACTIONS(3333), - [anon_sym_errdefer] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_expand] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_match] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [sym_none] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [sym_sink] = ACTIONS(3333), - [sym_integer] = ACTIONS(3333), - [sym_float] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_multiline_string] = ACTIONS(3335), - [sym_character] = ACTIONS(3335), + [STATE(1516)] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_test] = ACTIONS(3331), + [anon_sym_hide] = ACTIONS(3331), + [anon_sym_func] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_RPAREN] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_DOLLAR] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_anyopaque] = ACTIONS(3331), + [anon_sym_bool] = ACTIONS(3331), + [anon_sym_int] = ACTIONS(3331), + [anon_sym_uint] = ACTIONS(3331), + [anon_sym_float] = ACTIONS(3331), + [anon_sym_range] = ACTIONS(3331), + [anon_sym_i8] = ACTIONS(3331), + [anon_sym_i16] = ACTIONS(3331), + [anon_sym_i32] = ACTIONS(3331), + [anon_sym_i64] = ACTIONS(3331), + [anon_sym_u8] = ACTIONS(3331), + [anon_sym_u16] = ACTIONS(3331), + [anon_sym_u32] = ACTIONS(3331), + [anon_sym_u64] = ACTIONS(3331), + [anon_sym_isize] = ACTIONS(3331), + [anon_sym_usize] = ACTIONS(3331), + [anon_sym_f32] = ACTIONS(3331), + [anon_sym_f64] = ACTIONS(3331), + [anon_sym_c_char] = ACTIONS(3331), + [anon_sym_c_schar] = ACTIONS(3331), + [anon_sym_c_uchar] = ACTIONS(3331), + [anon_sym_c_short] = ACTIONS(3331), + [anon_sym_c_ushort] = ACTIONS(3331), + [anon_sym_c_int] = ACTIONS(3331), + [anon_sym_c_uint] = ACTIONS(3331), + [anon_sym_c_long] = ACTIONS(3331), + [anon_sym_c_ulong] = ACTIONS(3331), + [anon_sym_c_longlong] = ACTIONS(3331), + [anon_sym_c_ulonglong] = ACTIONS(3331), + [anon_sym_c_float] = ACTIONS(3331), + [anon_sym_c_double] = ACTIONS(3331), + [anon_sym_c_longdouble] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_defer] = ACTIONS(3331), + [anon_sym_errdefer] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_expand] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [sym_none] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [sym_sink] = ACTIONS(3331), + [sym_integer] = ACTIONS(3331), + [sym_float] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [sym_multiline_string] = ACTIONS(3329), + [sym_character] = ACTIONS(3329), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3339), + [sym__newline] = ACTIONS(3329), }, - [STATE(1290)] = { - [aux_sym_import_declaration_repeat1] = STATE(2106), - [sym_identifier] = ACTIONS(3342), - [anon_sym_func] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_DOLLAR] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_anyopaque] = ACTIONS(3342), - [anon_sym_bool] = ACTIONS(3342), - [anon_sym_int] = ACTIONS(3342), - [anon_sym_uint] = ACTIONS(3342), - [anon_sym_float] = ACTIONS(3342), - [anon_sym_range] = ACTIONS(3342), - [anon_sym_i8] = ACTIONS(3342), - [anon_sym_i16] = ACTIONS(3342), - [anon_sym_i32] = ACTIONS(3342), - [anon_sym_i64] = ACTIONS(3342), - [anon_sym_u8] = ACTIONS(3342), - [anon_sym_u16] = ACTIONS(3342), - [anon_sym_u32] = ACTIONS(3342), - [anon_sym_u64] = ACTIONS(3342), - [anon_sym_isize] = ACTIONS(3342), - [anon_sym_usize] = ACTIONS(3342), - [anon_sym_f32] = ACTIONS(3342), - [anon_sym_f64] = ACTIONS(3342), - [anon_sym_c_char] = ACTIONS(3342), - [anon_sym_c_schar] = ACTIONS(3342), - [anon_sym_c_uchar] = ACTIONS(3342), - [anon_sym_c_short] = ACTIONS(3342), - [anon_sym_c_ushort] = ACTIONS(3342), - [anon_sym_c_int] = ACTIONS(3342), - [anon_sym_c_uint] = ACTIONS(3342), - [anon_sym_c_long] = ACTIONS(3342), - [anon_sym_c_ulong] = ACTIONS(3342), - [anon_sym_c_longlong] = ACTIONS(3342), - [anon_sym_c_ulonglong] = ACTIONS(3342), - [anon_sym_c_float] = ACTIONS(3342), - [anon_sym_c_double] = ACTIONS(3342), - [anon_sym_c_longdouble] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_defer] = ACTIONS(3342), - [anon_sym_errdefer] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_expand] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_match] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_true] = ACTIONS(3342), - [anon_sym_false] = ACTIONS(3342), - [sym_none] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [sym_sink] = ACTIONS(3342), - [sym_integer] = ACTIONS(3342), - [sym_float] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_multiline_string] = ACTIONS(3344), - [sym_character] = ACTIONS(3344), + [STATE(1517)] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_test] = ACTIONS(3335), + [anon_sym_hide] = ACTIONS(3335), + [anon_sym_func] = ACTIONS(3335), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_struct] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_RPAREN] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3335), + [anon_sym_anyopaque] = ACTIONS(3335), + [anon_sym_bool] = ACTIONS(3335), + [anon_sym_int] = ACTIONS(3335), + [anon_sym_uint] = ACTIONS(3335), + [anon_sym_float] = ACTIONS(3335), + [anon_sym_range] = ACTIONS(3335), + [anon_sym_i8] = ACTIONS(3335), + [anon_sym_i16] = ACTIONS(3335), + [anon_sym_i32] = ACTIONS(3335), + [anon_sym_i64] = ACTIONS(3335), + [anon_sym_u8] = ACTIONS(3335), + [anon_sym_u16] = ACTIONS(3335), + [anon_sym_u32] = ACTIONS(3335), + [anon_sym_u64] = ACTIONS(3335), + [anon_sym_isize] = ACTIONS(3335), + [anon_sym_usize] = ACTIONS(3335), + [anon_sym_f32] = ACTIONS(3335), + [anon_sym_f64] = ACTIONS(3335), + [anon_sym_c_char] = ACTIONS(3335), + [anon_sym_c_schar] = ACTIONS(3335), + [anon_sym_c_uchar] = ACTIONS(3335), + [anon_sym_c_short] = ACTIONS(3335), + [anon_sym_c_ushort] = ACTIONS(3335), + [anon_sym_c_int] = ACTIONS(3335), + [anon_sym_c_uint] = ACTIONS(3335), + [anon_sym_c_long] = ACTIONS(3335), + [anon_sym_c_ulong] = ACTIONS(3335), + [anon_sym_c_longlong] = ACTIONS(3335), + [anon_sym_c_ulonglong] = ACTIONS(3335), + [anon_sym_c_float] = ACTIONS(3335), + [anon_sym_c_double] = ACTIONS(3335), + [anon_sym_c_longdouble] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_defer] = ACTIONS(3335), + [anon_sym_errdefer] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_expand] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_DOT] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [sym_none] = ACTIONS(3335), + [sym_undefined] = ACTIONS(3335), + [sym_sink] = ACTIONS(3335), + [sym_integer] = ACTIONS(3335), + [sym_float] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [sym_multiline_string] = ACTIONS(3333), + [sym_character] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3333), + }, + [STATE(1518)] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_test] = ACTIONS(3339), + [anon_sym_hide] = ACTIONS(3339), + [anon_sym_func] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_struct] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_RPAREN] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_DOLLAR] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_void] = ACTIONS(3339), + [anon_sym_anyopaque] = ACTIONS(3339), + [anon_sym_bool] = ACTIONS(3339), + [anon_sym_int] = ACTIONS(3339), + [anon_sym_uint] = ACTIONS(3339), + [anon_sym_float] = ACTIONS(3339), + [anon_sym_range] = ACTIONS(3339), + [anon_sym_i8] = ACTIONS(3339), + [anon_sym_i16] = ACTIONS(3339), + [anon_sym_i32] = ACTIONS(3339), + [anon_sym_i64] = ACTIONS(3339), + [anon_sym_u8] = ACTIONS(3339), + [anon_sym_u16] = ACTIONS(3339), + [anon_sym_u32] = ACTIONS(3339), + [anon_sym_u64] = ACTIONS(3339), + [anon_sym_isize] = ACTIONS(3339), + [anon_sym_usize] = ACTIONS(3339), + [anon_sym_f32] = ACTIONS(3339), + [anon_sym_f64] = ACTIONS(3339), + [anon_sym_c_char] = ACTIONS(3339), + [anon_sym_c_schar] = ACTIONS(3339), + [anon_sym_c_uchar] = ACTIONS(3339), + [anon_sym_c_short] = ACTIONS(3339), + [anon_sym_c_ushort] = ACTIONS(3339), + [anon_sym_c_int] = ACTIONS(3339), + [anon_sym_c_uint] = ACTIONS(3339), + [anon_sym_c_long] = ACTIONS(3339), + [anon_sym_c_ulong] = ACTIONS(3339), + [anon_sym_c_longlong] = ACTIONS(3339), + [anon_sym_c_ulonglong] = ACTIONS(3339), + [anon_sym_c_float] = ACTIONS(3339), + [anon_sym_c_double] = ACTIONS(3339), + [anon_sym_c_longdouble] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_defer] = ACTIONS(3339), + [anon_sym_errdefer] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_expand] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [sym_none] = ACTIONS(3339), + [sym_undefined] = ACTIONS(3339), + [sym_sink] = ACTIONS(3339), + [sym_integer] = ACTIONS(3339), + [sym_float] = ACTIONS(3337), + [anon_sym_DQUOTE] = ACTIONS(3337), + [sym_multiline_string] = ACTIONS(3337), + [sym_character] = ACTIONS(3337), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3337), + }, + [STATE(1519)] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_test] = ACTIONS(3343), + [anon_sym_hide] = ACTIONS(3343), + [anon_sym_func] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_RPAREN] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_DOLLAR] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_anyopaque] = ACTIONS(3343), + [anon_sym_bool] = ACTIONS(3343), + [anon_sym_int] = ACTIONS(3343), + [anon_sym_uint] = ACTIONS(3343), + [anon_sym_float] = ACTIONS(3343), + [anon_sym_range] = ACTIONS(3343), + [anon_sym_i8] = ACTIONS(3343), + [anon_sym_i16] = ACTIONS(3343), + [anon_sym_i32] = ACTIONS(3343), + [anon_sym_i64] = ACTIONS(3343), + [anon_sym_u8] = ACTIONS(3343), + [anon_sym_u16] = ACTIONS(3343), + [anon_sym_u32] = ACTIONS(3343), + [anon_sym_u64] = ACTIONS(3343), + [anon_sym_isize] = ACTIONS(3343), + [anon_sym_usize] = ACTIONS(3343), + [anon_sym_f32] = ACTIONS(3343), + [anon_sym_f64] = ACTIONS(3343), + [anon_sym_c_char] = ACTIONS(3343), + [anon_sym_c_schar] = ACTIONS(3343), + [anon_sym_c_uchar] = ACTIONS(3343), + [anon_sym_c_short] = ACTIONS(3343), + [anon_sym_c_ushort] = ACTIONS(3343), + [anon_sym_c_int] = ACTIONS(3343), + [anon_sym_c_uint] = ACTIONS(3343), + [anon_sym_c_long] = ACTIONS(3343), + [anon_sym_c_ulong] = ACTIONS(3343), + [anon_sym_c_longlong] = ACTIONS(3343), + [anon_sym_c_ulonglong] = ACTIONS(3343), + [anon_sym_c_float] = ACTIONS(3343), + [anon_sym_c_double] = ACTIONS(3343), + [anon_sym_c_longdouble] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_defer] = ACTIONS(3343), + [anon_sym_errdefer] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_expand] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [sym_none] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [sym_sink] = ACTIONS(3343), + [sym_integer] = ACTIONS(3343), + [sym_float] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [sym_multiline_string] = ACTIONS(3341), + [sym_character] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3341), + }, + [STATE(1520)] = { + [ts_builtin_sym_end] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_test] = ACTIONS(3347), + [anon_sym_hide] = ACTIONS(3347), + [anon_sym_func] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_DOLLAR] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_anyopaque] = ACTIONS(3347), + [anon_sym_bool] = ACTIONS(3347), + [anon_sym_int] = ACTIONS(3347), + [anon_sym_uint] = ACTIONS(3347), + [anon_sym_float] = ACTIONS(3347), + [anon_sym_range] = ACTIONS(3347), + [anon_sym_i8] = ACTIONS(3347), + [anon_sym_i16] = ACTIONS(3347), + [anon_sym_i32] = ACTIONS(3347), + [anon_sym_i64] = ACTIONS(3347), + [anon_sym_u8] = ACTIONS(3347), + [anon_sym_u16] = ACTIONS(3347), + [anon_sym_u32] = ACTIONS(3347), + [anon_sym_u64] = ACTIONS(3347), + [anon_sym_isize] = ACTIONS(3347), + [anon_sym_usize] = ACTIONS(3347), + [anon_sym_f32] = ACTIONS(3347), + [anon_sym_f64] = ACTIONS(3347), + [anon_sym_c_char] = ACTIONS(3347), + [anon_sym_c_schar] = ACTIONS(3347), + [anon_sym_c_uchar] = ACTIONS(3347), + [anon_sym_c_short] = ACTIONS(3347), + [anon_sym_c_ushort] = ACTIONS(3347), + [anon_sym_c_int] = ACTIONS(3347), + [anon_sym_c_uint] = ACTIONS(3347), + [anon_sym_c_long] = ACTIONS(3347), + [anon_sym_c_ulong] = ACTIONS(3347), + [anon_sym_c_longlong] = ACTIONS(3347), + [anon_sym_c_ulonglong] = ACTIONS(3347), + [anon_sym_c_float] = ACTIONS(3347), + [anon_sym_c_double] = ACTIONS(3347), + [anon_sym_c_longdouble] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_defer] = ACTIONS(3347), + [anon_sym_errdefer] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_expand] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_match] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_DOT] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [sym_none] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [sym_sink] = ACTIONS(3347), + [sym_integer] = ACTIONS(3347), + [sym_float] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_multiline_string] = ACTIONS(3345), + [sym_character] = ACTIONS(3345), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3345), + }, + [STATE(1521)] = { + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_test] = ACTIONS(3351), + [anon_sym_hide] = ACTIONS(3351), + [anon_sym_func] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_struct] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_RPAREN] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_DOLLAR] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_anyopaque] = ACTIONS(3351), + [anon_sym_bool] = ACTIONS(3351), + [anon_sym_int] = ACTIONS(3351), + [anon_sym_uint] = ACTIONS(3351), + [anon_sym_float] = ACTIONS(3351), + [anon_sym_range] = ACTIONS(3351), + [anon_sym_i8] = ACTIONS(3351), + [anon_sym_i16] = ACTIONS(3351), + [anon_sym_i32] = ACTIONS(3351), + [anon_sym_i64] = ACTIONS(3351), + [anon_sym_u8] = ACTIONS(3351), + [anon_sym_u16] = ACTIONS(3351), + [anon_sym_u32] = ACTIONS(3351), + [anon_sym_u64] = ACTIONS(3351), + [anon_sym_isize] = ACTIONS(3351), + [anon_sym_usize] = ACTIONS(3351), + [anon_sym_f32] = ACTIONS(3351), + [anon_sym_f64] = ACTIONS(3351), + [anon_sym_c_char] = ACTIONS(3351), + [anon_sym_c_schar] = ACTIONS(3351), + [anon_sym_c_uchar] = ACTIONS(3351), + [anon_sym_c_short] = ACTIONS(3351), + [anon_sym_c_ushort] = ACTIONS(3351), + [anon_sym_c_int] = ACTIONS(3351), + [anon_sym_c_uint] = ACTIONS(3351), + [anon_sym_c_long] = ACTIONS(3351), + [anon_sym_c_ulong] = ACTIONS(3351), + [anon_sym_c_longlong] = ACTIONS(3351), + [anon_sym_c_ulonglong] = ACTIONS(3351), + [anon_sym_c_float] = ACTIONS(3351), + [anon_sym_c_double] = ACTIONS(3351), + [anon_sym_c_longdouble] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_defer] = ACTIONS(3351), + [anon_sym_errdefer] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_expand] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [sym_none] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [sym_sink] = ACTIONS(3351), + [sym_integer] = ACTIONS(3351), + [sym_float] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [sym_multiline_string] = ACTIONS(3349), + [sym_character] = ACTIONS(3349), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3349), }, - [STATE(1291)] = { - [aux_sym_import_declaration_repeat1] = STATE(2103), - [sym_identifier] = ACTIONS(3352), - [anon_sym_func] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_DOLLAR] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_anyopaque] = ACTIONS(3352), - [anon_sym_bool] = ACTIONS(3352), - [anon_sym_int] = ACTIONS(3352), - [anon_sym_uint] = ACTIONS(3352), - [anon_sym_float] = ACTIONS(3352), - [anon_sym_range] = ACTIONS(3352), - [anon_sym_i8] = ACTIONS(3352), - [anon_sym_i16] = ACTIONS(3352), - [anon_sym_i32] = ACTIONS(3352), - [anon_sym_i64] = ACTIONS(3352), - [anon_sym_u8] = ACTIONS(3352), - [anon_sym_u16] = ACTIONS(3352), - [anon_sym_u32] = ACTIONS(3352), - [anon_sym_u64] = ACTIONS(3352), - [anon_sym_isize] = ACTIONS(3352), - [anon_sym_usize] = ACTIONS(3352), - [anon_sym_f32] = ACTIONS(3352), - [anon_sym_f64] = ACTIONS(3352), - [anon_sym_c_char] = ACTIONS(3352), - [anon_sym_c_schar] = ACTIONS(3352), - [anon_sym_c_uchar] = ACTIONS(3352), - [anon_sym_c_short] = ACTIONS(3352), - [anon_sym_c_ushort] = ACTIONS(3352), - [anon_sym_c_int] = ACTIONS(3352), - [anon_sym_c_uint] = ACTIONS(3352), - [anon_sym_c_long] = ACTIONS(3352), - [anon_sym_c_ulong] = ACTIONS(3352), - [anon_sym_c_longlong] = ACTIONS(3352), - [anon_sym_c_ulonglong] = ACTIONS(3352), - [anon_sym_c_float] = ACTIONS(3352), - [anon_sym_c_double] = ACTIONS(3352), - [anon_sym_c_longdouble] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_defer] = ACTIONS(3352), - [anon_sym_errdefer] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_expand] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_true] = ACTIONS(3352), - [anon_sym_false] = ACTIONS(3352), - [sym_none] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [sym_sink] = ACTIONS(3352), - [sym_integer] = ACTIONS(3352), - [sym_float] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_multiline_string] = ACTIONS(3354), - [sym_character] = ACTIONS(3354), + [STATE(1522)] = { + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_test] = ACTIONS(3355), + [anon_sym_hide] = ACTIONS(3355), + [anon_sym_func] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_anyopaque] = ACTIONS(3355), + [anon_sym_bool] = ACTIONS(3355), + [anon_sym_int] = ACTIONS(3355), + [anon_sym_uint] = ACTIONS(3355), + [anon_sym_float] = ACTIONS(3355), + [anon_sym_range] = ACTIONS(3355), + [anon_sym_i8] = ACTIONS(3355), + [anon_sym_i16] = ACTIONS(3355), + [anon_sym_i32] = ACTIONS(3355), + [anon_sym_i64] = ACTIONS(3355), + [anon_sym_u8] = ACTIONS(3355), + [anon_sym_u16] = ACTIONS(3355), + [anon_sym_u32] = ACTIONS(3355), + [anon_sym_u64] = ACTIONS(3355), + [anon_sym_isize] = ACTIONS(3355), + [anon_sym_usize] = ACTIONS(3355), + [anon_sym_f32] = ACTIONS(3355), + [anon_sym_f64] = ACTIONS(3355), + [anon_sym_c_char] = ACTIONS(3355), + [anon_sym_c_schar] = ACTIONS(3355), + [anon_sym_c_uchar] = ACTIONS(3355), + [anon_sym_c_short] = ACTIONS(3355), + [anon_sym_c_ushort] = ACTIONS(3355), + [anon_sym_c_int] = ACTIONS(3355), + [anon_sym_c_uint] = ACTIONS(3355), + [anon_sym_c_long] = ACTIONS(3355), + [anon_sym_c_ulong] = ACTIONS(3355), + [anon_sym_c_longlong] = ACTIONS(3355), + [anon_sym_c_ulonglong] = ACTIONS(3355), + [anon_sym_c_float] = ACTIONS(3355), + [anon_sym_c_double] = ACTIONS(3355), + [anon_sym_c_longdouble] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_defer] = ACTIONS(3355), + [anon_sym_errdefer] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_expand] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3355), + [anon_sym_false] = ACTIONS(3355), + [sym_none] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [sym_sink] = ACTIONS(3355), + [sym_integer] = ACTIONS(3355), + [sym_float] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_multiline_string] = ACTIONS(3353), + [sym_character] = ACTIONS(3353), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3359), + [sym__newline] = ACTIONS(3353), }, - [STATE(1292)] = { - [aux_sym_import_declaration_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(3342), - [anon_sym_func] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_struct] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_DOLLAR] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_anyopaque] = ACTIONS(3342), - [anon_sym_bool] = ACTIONS(3342), - [anon_sym_int] = ACTIONS(3342), - [anon_sym_uint] = ACTIONS(3342), - [anon_sym_float] = ACTIONS(3342), - [anon_sym_range] = ACTIONS(3342), - [anon_sym_i8] = ACTIONS(3342), - [anon_sym_i16] = ACTIONS(3342), - [anon_sym_i32] = ACTIONS(3342), - [anon_sym_i64] = ACTIONS(3342), - [anon_sym_u8] = ACTIONS(3342), - [anon_sym_u16] = ACTIONS(3342), - [anon_sym_u32] = ACTIONS(3342), - [anon_sym_u64] = ACTIONS(3342), - [anon_sym_isize] = ACTIONS(3342), - [anon_sym_usize] = ACTIONS(3342), - [anon_sym_f32] = ACTIONS(3342), - [anon_sym_f64] = ACTIONS(3342), - [anon_sym_c_char] = ACTIONS(3342), - [anon_sym_c_schar] = ACTIONS(3342), - [anon_sym_c_uchar] = ACTIONS(3342), - [anon_sym_c_short] = ACTIONS(3342), - [anon_sym_c_ushort] = ACTIONS(3342), - [anon_sym_c_int] = ACTIONS(3342), - [anon_sym_c_uint] = ACTIONS(3342), - [anon_sym_c_long] = ACTIONS(3342), - [anon_sym_c_ulong] = ACTIONS(3342), - [anon_sym_c_longlong] = ACTIONS(3342), - [anon_sym_c_ulonglong] = ACTIONS(3342), - [anon_sym_c_float] = ACTIONS(3342), - [anon_sym_c_double] = ACTIONS(3342), - [anon_sym_c_longdouble] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_defer] = ACTIONS(3342), - [anon_sym_errdefer] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_expand] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_match] = ACTIONS(3342), - [anon_sym_AMP] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_DOT] = ACTIONS(3344), - [anon_sym_true] = ACTIONS(3342), - [anon_sym_false] = ACTIONS(3342), - [sym_none] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [sym_sink] = ACTIONS(3342), - [sym_integer] = ACTIONS(3342), - [sym_float] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [sym_multiline_string] = ACTIONS(3344), - [sym_character] = ACTIONS(3344), + [STATE(1523)] = { + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_test] = ACTIONS(3359), + [anon_sym_hide] = ACTIONS(3359), + [anon_sym_func] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_anyopaque] = ACTIONS(3359), + [anon_sym_bool] = ACTIONS(3359), + [anon_sym_int] = ACTIONS(3359), + [anon_sym_uint] = ACTIONS(3359), + [anon_sym_float] = ACTIONS(3359), + [anon_sym_range] = ACTIONS(3359), + [anon_sym_i8] = ACTIONS(3359), + [anon_sym_i16] = ACTIONS(3359), + [anon_sym_i32] = ACTIONS(3359), + [anon_sym_i64] = ACTIONS(3359), + [anon_sym_u8] = ACTIONS(3359), + [anon_sym_u16] = ACTIONS(3359), + [anon_sym_u32] = ACTIONS(3359), + [anon_sym_u64] = ACTIONS(3359), + [anon_sym_isize] = ACTIONS(3359), + [anon_sym_usize] = ACTIONS(3359), + [anon_sym_f32] = ACTIONS(3359), + [anon_sym_f64] = ACTIONS(3359), + [anon_sym_c_char] = ACTIONS(3359), + [anon_sym_c_schar] = ACTIONS(3359), + [anon_sym_c_uchar] = ACTIONS(3359), + [anon_sym_c_short] = ACTIONS(3359), + [anon_sym_c_ushort] = ACTIONS(3359), + [anon_sym_c_int] = ACTIONS(3359), + [anon_sym_c_uint] = ACTIONS(3359), + [anon_sym_c_long] = ACTIONS(3359), + [anon_sym_c_ulong] = ACTIONS(3359), + [anon_sym_c_longlong] = ACTIONS(3359), + [anon_sym_c_ulonglong] = ACTIONS(3359), + [anon_sym_c_float] = ACTIONS(3359), + [anon_sym_c_double] = ACTIONS(3359), + [anon_sym_c_longdouble] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_defer] = ACTIONS(3359), + [anon_sym_errdefer] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_expand] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_match] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_DOT] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [sym_none] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [sym_sink] = ACTIONS(3359), + [sym_integer] = ACTIONS(3359), + [sym_float] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [sym_multiline_string] = ACTIONS(3357), + [sym_character] = ACTIONS(3357), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3364), + [sym__newline] = ACTIONS(3357), }, - [STATE(1293)] = { - [aux_sym_import_declaration_repeat1] = STATE(2172), - [sym_identifier] = ACTIONS(3313), - [anon_sym_func] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_DOLLAR] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_anyopaque] = ACTIONS(3313), - [anon_sym_bool] = ACTIONS(3313), - [anon_sym_int] = ACTIONS(3313), - [anon_sym_uint] = ACTIONS(3313), - [anon_sym_float] = ACTIONS(3313), - [anon_sym_range] = ACTIONS(3313), - [anon_sym_i8] = ACTIONS(3313), - [anon_sym_i16] = ACTIONS(3313), - [anon_sym_i32] = ACTIONS(3313), - [anon_sym_i64] = ACTIONS(3313), - [anon_sym_u8] = ACTIONS(3313), - [anon_sym_u16] = ACTIONS(3313), - [anon_sym_u32] = ACTIONS(3313), - [anon_sym_u64] = ACTIONS(3313), - [anon_sym_isize] = ACTIONS(3313), - [anon_sym_usize] = ACTIONS(3313), - [anon_sym_f32] = ACTIONS(3313), - [anon_sym_f64] = ACTIONS(3313), - [anon_sym_c_char] = ACTIONS(3313), - [anon_sym_c_schar] = ACTIONS(3313), - [anon_sym_c_uchar] = ACTIONS(3313), - [anon_sym_c_short] = ACTIONS(3313), - [anon_sym_c_ushort] = ACTIONS(3313), - [anon_sym_c_int] = ACTIONS(3313), - [anon_sym_c_uint] = ACTIONS(3313), - [anon_sym_c_long] = ACTIONS(3313), - [anon_sym_c_ulong] = ACTIONS(3313), - [anon_sym_c_longlong] = ACTIONS(3313), - [anon_sym_c_ulonglong] = ACTIONS(3313), - [anon_sym_c_float] = ACTIONS(3313), - [anon_sym_c_double] = ACTIONS(3313), - [anon_sym_c_longdouble] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_defer] = ACTIONS(3313), - [anon_sym_errdefer] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), + [STATE(1524)] = { + [ts_builtin_sym_end] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_test] = ACTIONS(3363), + [anon_sym_hide] = ACTIONS(3363), + [anon_sym_func] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_struct] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_anyopaque] = ACTIONS(3363), + [anon_sym_bool] = ACTIONS(3363), + [anon_sym_int] = ACTIONS(3363), + [anon_sym_uint] = ACTIONS(3363), + [anon_sym_float] = ACTIONS(3363), + [anon_sym_range] = ACTIONS(3363), + [anon_sym_i8] = ACTIONS(3363), + [anon_sym_i16] = ACTIONS(3363), + [anon_sym_i32] = ACTIONS(3363), + [anon_sym_i64] = ACTIONS(3363), + [anon_sym_u8] = ACTIONS(3363), + [anon_sym_u16] = ACTIONS(3363), + [anon_sym_u32] = ACTIONS(3363), + [anon_sym_u64] = ACTIONS(3363), + [anon_sym_isize] = ACTIONS(3363), + [anon_sym_usize] = ACTIONS(3363), + [anon_sym_f32] = ACTIONS(3363), + [anon_sym_f64] = ACTIONS(3363), + [anon_sym_c_char] = ACTIONS(3363), + [anon_sym_c_schar] = ACTIONS(3363), + [anon_sym_c_uchar] = ACTIONS(3363), + [anon_sym_c_short] = ACTIONS(3363), + [anon_sym_c_ushort] = ACTIONS(3363), + [anon_sym_c_int] = ACTIONS(3363), + [anon_sym_c_uint] = ACTIONS(3363), + [anon_sym_c_long] = ACTIONS(3363), + [anon_sym_c_ulong] = ACTIONS(3363), + [anon_sym_c_longlong] = ACTIONS(3363), + [anon_sym_c_ulonglong] = ACTIONS(3363), + [anon_sym_c_float] = ACTIONS(3363), + [anon_sym_c_double] = ACTIONS(3363), + [anon_sym_c_longdouble] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_defer] = ACTIONS(3363), + [anon_sym_errdefer] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_expand] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_match] = ACTIONS(3363), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_DOT] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [sym_none] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [sym_sink] = ACTIONS(3363), + [sym_integer] = ACTIONS(3363), + [sym_float] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_multiline_string] = ACTIONS(3361), + [sym_character] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3361), + }, + [STATE(1525)] = { + [ts_builtin_sym_end] = ACTIONS(3365), + [sym_identifier] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_test] = ACTIONS(3367), + [anon_sym_hide] = ACTIONS(3367), + [anon_sym_func] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_RPAREN] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_DOLLAR] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_anyopaque] = ACTIONS(3367), + [anon_sym_bool] = ACTIONS(3367), + [anon_sym_int] = ACTIONS(3367), + [anon_sym_uint] = ACTIONS(3367), + [anon_sym_float] = ACTIONS(3367), + [anon_sym_range] = ACTIONS(3367), + [anon_sym_i8] = ACTIONS(3367), + [anon_sym_i16] = ACTIONS(3367), + [anon_sym_i32] = ACTIONS(3367), + [anon_sym_i64] = ACTIONS(3367), + [anon_sym_u8] = ACTIONS(3367), + [anon_sym_u16] = ACTIONS(3367), + [anon_sym_u32] = ACTIONS(3367), + [anon_sym_u64] = ACTIONS(3367), + [anon_sym_isize] = ACTIONS(3367), + [anon_sym_usize] = ACTIONS(3367), + [anon_sym_f32] = ACTIONS(3367), + [anon_sym_f64] = ACTIONS(3367), + [anon_sym_c_char] = ACTIONS(3367), + [anon_sym_c_schar] = ACTIONS(3367), + [anon_sym_c_uchar] = ACTIONS(3367), + [anon_sym_c_short] = ACTIONS(3367), + [anon_sym_c_ushort] = ACTIONS(3367), + [anon_sym_c_int] = ACTIONS(3367), + [anon_sym_c_uint] = ACTIONS(3367), + [anon_sym_c_long] = ACTIONS(3367), + [anon_sym_c_ulong] = ACTIONS(3367), + [anon_sym_c_longlong] = ACTIONS(3367), + [anon_sym_c_ulonglong] = ACTIONS(3367), + [anon_sym_c_float] = ACTIONS(3367), + [anon_sym_c_double] = ACTIONS(3367), + [anon_sym_c_longdouble] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_defer] = ACTIONS(3367), + [anon_sym_errdefer] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), [anon_sym_else] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_expand] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [sym_none] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [sym_sink] = ACTIONS(3313), - [sym_integer] = ACTIONS(3313), - [sym_float] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_multiline_string] = ACTIONS(3315), - [sym_character] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_expand] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_match] = ACTIONS(3367), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_DOT] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(3367), + [anon_sym_false] = ACTIONS(3367), + [sym_none] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [sym_sink] = ACTIONS(3367), + [sym_integer] = ACTIONS(3367), + [sym_float] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [sym_multiline_string] = ACTIONS(3365), + [sym_character] = ACTIONS(3365), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3365), + }, + [STATE(1526)] = { + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_test] = ACTIONS(3371), + [anon_sym_hide] = ACTIONS(3371), + [anon_sym_func] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_RPAREN] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_DOLLAR] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_anyopaque] = ACTIONS(3371), + [anon_sym_bool] = ACTIONS(3371), + [anon_sym_int] = ACTIONS(3371), + [anon_sym_uint] = ACTIONS(3371), + [anon_sym_float] = ACTIONS(3371), + [anon_sym_range] = ACTIONS(3371), + [anon_sym_i8] = ACTIONS(3371), + [anon_sym_i16] = ACTIONS(3371), + [anon_sym_i32] = ACTIONS(3371), + [anon_sym_i64] = ACTIONS(3371), + [anon_sym_u8] = ACTIONS(3371), + [anon_sym_u16] = ACTIONS(3371), + [anon_sym_u32] = ACTIONS(3371), + [anon_sym_u64] = ACTIONS(3371), + [anon_sym_isize] = ACTIONS(3371), + [anon_sym_usize] = ACTIONS(3371), + [anon_sym_f32] = ACTIONS(3371), + [anon_sym_f64] = ACTIONS(3371), + [anon_sym_c_char] = ACTIONS(3371), + [anon_sym_c_schar] = ACTIONS(3371), + [anon_sym_c_uchar] = ACTIONS(3371), + [anon_sym_c_short] = ACTIONS(3371), + [anon_sym_c_ushort] = ACTIONS(3371), + [anon_sym_c_int] = ACTIONS(3371), + [anon_sym_c_uint] = ACTIONS(3371), + [anon_sym_c_long] = ACTIONS(3371), + [anon_sym_c_ulong] = ACTIONS(3371), + [anon_sym_c_longlong] = ACTIONS(3371), + [anon_sym_c_ulonglong] = ACTIONS(3371), + [anon_sym_c_float] = ACTIONS(3371), + [anon_sym_c_double] = ACTIONS(3371), + [anon_sym_c_longdouble] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_defer] = ACTIONS(3371), + [anon_sym_errdefer] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_expand] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_match] = ACTIONS(3371), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_DOT] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [sym_none] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [sym_sink] = ACTIONS(3371), + [sym_integer] = ACTIONS(3371), + [sym_float] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [sym_multiline_string] = ACTIONS(3369), + [sym_character] = ACTIONS(3369), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3369), }, - [STATE(1294)] = { - [aux_sym_import_declaration_repeat1] = STATE(2104), - [sym_identifier] = ACTIONS(3372), - [anon_sym_func] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_DOLLAR] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_void] = ACTIONS(3372), - [anon_sym_anyopaque] = ACTIONS(3372), - [anon_sym_bool] = ACTIONS(3372), - [anon_sym_int] = ACTIONS(3372), - [anon_sym_uint] = ACTIONS(3372), - [anon_sym_float] = ACTIONS(3372), - [anon_sym_range] = ACTIONS(3372), - [anon_sym_i8] = ACTIONS(3372), - [anon_sym_i16] = ACTIONS(3372), - [anon_sym_i32] = ACTIONS(3372), - [anon_sym_i64] = ACTIONS(3372), - [anon_sym_u8] = ACTIONS(3372), - [anon_sym_u16] = ACTIONS(3372), - [anon_sym_u32] = ACTIONS(3372), - [anon_sym_u64] = ACTIONS(3372), - [anon_sym_isize] = ACTIONS(3372), - [anon_sym_usize] = ACTIONS(3372), - [anon_sym_f32] = ACTIONS(3372), - [anon_sym_f64] = ACTIONS(3372), - [anon_sym_c_char] = ACTIONS(3372), - [anon_sym_c_schar] = ACTIONS(3372), - [anon_sym_c_uchar] = ACTIONS(3372), - [anon_sym_c_short] = ACTIONS(3372), - [anon_sym_c_ushort] = ACTIONS(3372), - [anon_sym_c_int] = ACTIONS(3372), - [anon_sym_c_uint] = ACTIONS(3372), - [anon_sym_c_long] = ACTIONS(3372), - [anon_sym_c_ulong] = ACTIONS(3372), - [anon_sym_c_longlong] = ACTIONS(3372), - [anon_sym_c_ulonglong] = ACTIONS(3372), - [anon_sym_c_float] = ACTIONS(3372), - [anon_sym_c_double] = ACTIONS(3372), - [anon_sym_c_longdouble] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_yield] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_defer] = ACTIONS(3372), - [anon_sym_errdefer] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_else] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_expand] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_match] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_DOT] = ACTIONS(3374), - [anon_sym_true] = ACTIONS(3372), - [anon_sym_false] = ACTIONS(3372), - [sym_none] = ACTIONS(3372), - [sym_undefined] = ACTIONS(3372), - [sym_sink] = ACTIONS(3372), - [sym_integer] = ACTIONS(3372), - [sym_float] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_multiline_string] = ACTIONS(3374), - [sym_character] = ACTIONS(3374), + [STATE(1527)] = { + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_test] = ACTIONS(3375), + [anon_sym_hide] = ACTIONS(3375), + [anon_sym_func] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_DOLLAR] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_anyopaque] = ACTIONS(3375), + [anon_sym_bool] = ACTIONS(3375), + [anon_sym_int] = ACTIONS(3375), + [anon_sym_uint] = ACTIONS(3375), + [anon_sym_float] = ACTIONS(3375), + [anon_sym_range] = ACTIONS(3375), + [anon_sym_i8] = ACTIONS(3375), + [anon_sym_i16] = ACTIONS(3375), + [anon_sym_i32] = ACTIONS(3375), + [anon_sym_i64] = ACTIONS(3375), + [anon_sym_u8] = ACTIONS(3375), + [anon_sym_u16] = ACTIONS(3375), + [anon_sym_u32] = ACTIONS(3375), + [anon_sym_u64] = ACTIONS(3375), + [anon_sym_isize] = ACTIONS(3375), + [anon_sym_usize] = ACTIONS(3375), + [anon_sym_f32] = ACTIONS(3375), + [anon_sym_f64] = ACTIONS(3375), + [anon_sym_c_char] = ACTIONS(3375), + [anon_sym_c_schar] = ACTIONS(3375), + [anon_sym_c_uchar] = ACTIONS(3375), + [anon_sym_c_short] = ACTIONS(3375), + [anon_sym_c_ushort] = ACTIONS(3375), + [anon_sym_c_int] = ACTIONS(3375), + [anon_sym_c_uint] = ACTIONS(3375), + [anon_sym_c_long] = ACTIONS(3375), + [anon_sym_c_ulong] = ACTIONS(3375), + [anon_sym_c_longlong] = ACTIONS(3375), + [anon_sym_c_ulonglong] = ACTIONS(3375), + [anon_sym_c_float] = ACTIONS(3375), + [anon_sym_c_double] = ACTIONS(3375), + [anon_sym_c_longdouble] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_defer] = ACTIONS(3375), + [anon_sym_errdefer] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_expand] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_match] = ACTIONS(3375), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [sym_none] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [sym_sink] = ACTIONS(3375), + [sym_integer] = ACTIONS(3375), + [sym_float] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [sym_multiline_string] = ACTIONS(3373), + [sym_character] = ACTIONS(3373), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3379), + [sym__newline] = ACTIONS(3373), }, - [STATE(1295)] = { - [aux_sym_import_declaration_repeat1] = STATE(2124), - [sym_identifier] = ACTIONS(3372), - [anon_sym_func] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_struct] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_DASH] = ACTIONS(3374), - [anon_sym_DOLLAR] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_void] = ACTIONS(3372), - [anon_sym_anyopaque] = ACTIONS(3372), - [anon_sym_bool] = ACTIONS(3372), - [anon_sym_int] = ACTIONS(3372), - [anon_sym_uint] = ACTIONS(3372), - [anon_sym_float] = ACTIONS(3372), - [anon_sym_range] = ACTIONS(3372), - [anon_sym_i8] = ACTIONS(3372), - [anon_sym_i16] = ACTIONS(3372), - [anon_sym_i32] = ACTIONS(3372), - [anon_sym_i64] = ACTIONS(3372), - [anon_sym_u8] = ACTIONS(3372), - [anon_sym_u16] = ACTIONS(3372), - [anon_sym_u32] = ACTIONS(3372), - [anon_sym_u64] = ACTIONS(3372), - [anon_sym_isize] = ACTIONS(3372), - [anon_sym_usize] = ACTIONS(3372), - [anon_sym_f32] = ACTIONS(3372), - [anon_sym_f64] = ACTIONS(3372), - [anon_sym_c_char] = ACTIONS(3372), - [anon_sym_c_schar] = ACTIONS(3372), - [anon_sym_c_uchar] = ACTIONS(3372), - [anon_sym_c_short] = ACTIONS(3372), - [anon_sym_c_ushort] = ACTIONS(3372), - [anon_sym_c_int] = ACTIONS(3372), - [anon_sym_c_uint] = ACTIONS(3372), - [anon_sym_c_long] = ACTIONS(3372), - [anon_sym_c_ulong] = ACTIONS(3372), - [anon_sym_c_longlong] = ACTIONS(3372), - [anon_sym_c_ulonglong] = ACTIONS(3372), - [anon_sym_c_float] = ACTIONS(3372), - [anon_sym_c_double] = ACTIONS(3372), - [anon_sym_c_longdouble] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_yield] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_defer] = ACTIONS(3372), - [anon_sym_errdefer] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_else] = ACTIONS(3382), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_expand] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_match] = ACTIONS(3372), - [anon_sym_AMP] = ACTIONS(3374), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_DOT] = ACTIONS(3374), - [anon_sym_true] = ACTIONS(3372), - [anon_sym_false] = ACTIONS(3372), - [sym_none] = ACTIONS(3372), - [sym_undefined] = ACTIONS(3372), - [sym_sink] = ACTIONS(3372), - [sym_integer] = ACTIONS(3372), - [sym_float] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [sym_multiline_string] = ACTIONS(3374), - [sym_character] = ACTIONS(3374), + [STATE(1528)] = { + [ts_builtin_sym_end] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_test] = ACTIONS(3379), + [anon_sym_hide] = ACTIONS(3379), + [anon_sym_func] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_struct] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_RPAREN] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_DOLLAR] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_anyopaque] = ACTIONS(3379), + [anon_sym_bool] = ACTIONS(3379), + [anon_sym_int] = ACTIONS(3379), + [anon_sym_uint] = ACTIONS(3379), + [anon_sym_float] = ACTIONS(3379), + [anon_sym_range] = ACTIONS(3379), + [anon_sym_i8] = ACTIONS(3379), + [anon_sym_i16] = ACTIONS(3379), + [anon_sym_i32] = ACTIONS(3379), + [anon_sym_i64] = ACTIONS(3379), + [anon_sym_u8] = ACTIONS(3379), + [anon_sym_u16] = ACTIONS(3379), + [anon_sym_u32] = ACTIONS(3379), + [anon_sym_u64] = ACTIONS(3379), + [anon_sym_isize] = ACTIONS(3379), + [anon_sym_usize] = ACTIONS(3379), + [anon_sym_f32] = ACTIONS(3379), + [anon_sym_f64] = ACTIONS(3379), + [anon_sym_c_char] = ACTIONS(3379), + [anon_sym_c_schar] = ACTIONS(3379), + [anon_sym_c_uchar] = ACTIONS(3379), + [anon_sym_c_short] = ACTIONS(3379), + [anon_sym_c_ushort] = ACTIONS(3379), + [anon_sym_c_int] = ACTIONS(3379), + [anon_sym_c_uint] = ACTIONS(3379), + [anon_sym_c_long] = ACTIONS(3379), + [anon_sym_c_ulong] = ACTIONS(3379), + [anon_sym_c_longlong] = ACTIONS(3379), + [anon_sym_c_ulonglong] = ACTIONS(3379), + [anon_sym_c_float] = ACTIONS(3379), + [anon_sym_c_double] = ACTIONS(3379), + [anon_sym_c_longdouble] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_defer] = ACTIONS(3379), + [anon_sym_errdefer] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_expand] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_match] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [sym_none] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [sym_sink] = ACTIONS(3379), + [sym_integer] = ACTIONS(3379), + [sym_float] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [sym_multiline_string] = ACTIONS(3377), + [sym_character] = ACTIONS(3377), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3384), + [sym__newline] = ACTIONS(3377), }, - [STATE(1296)] = { - [aux_sym_import_declaration_repeat1] = STATE(2105), - [sym_identifier] = ACTIONS(3333), - [anon_sym_func] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_anyopaque] = ACTIONS(3333), - [anon_sym_bool] = ACTIONS(3333), - [anon_sym_int] = ACTIONS(3333), - [anon_sym_uint] = ACTIONS(3333), - [anon_sym_float] = ACTIONS(3333), - [anon_sym_range] = ACTIONS(3333), - [anon_sym_i8] = ACTIONS(3333), - [anon_sym_i16] = ACTIONS(3333), - [anon_sym_i32] = ACTIONS(3333), - [anon_sym_i64] = ACTIONS(3333), - [anon_sym_u8] = ACTIONS(3333), - [anon_sym_u16] = ACTIONS(3333), - [anon_sym_u32] = ACTIONS(3333), - [anon_sym_u64] = ACTIONS(3333), - [anon_sym_isize] = ACTIONS(3333), - [anon_sym_usize] = ACTIONS(3333), - [anon_sym_f32] = ACTIONS(3333), - [anon_sym_f64] = ACTIONS(3333), - [anon_sym_c_char] = ACTIONS(3333), - [anon_sym_c_schar] = ACTIONS(3333), - [anon_sym_c_uchar] = ACTIONS(3333), - [anon_sym_c_short] = ACTIONS(3333), - [anon_sym_c_ushort] = ACTIONS(3333), - [anon_sym_c_int] = ACTIONS(3333), - [anon_sym_c_uint] = ACTIONS(3333), - [anon_sym_c_long] = ACTIONS(3333), - [anon_sym_c_ulong] = ACTIONS(3333), - [anon_sym_c_longlong] = ACTIONS(3333), - [anon_sym_c_ulonglong] = ACTIONS(3333), - [anon_sym_c_float] = ACTIONS(3333), - [anon_sym_c_double] = ACTIONS(3333), - [anon_sym_c_longdouble] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_defer] = ACTIONS(3333), - [anon_sym_errdefer] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), + [STATE(1529)] = { + [ts_builtin_sym_end] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_test] = ACTIONS(3383), + [anon_sym_hide] = ACTIONS(3383), + [anon_sym_func] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_struct] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_DOLLAR] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_anyopaque] = ACTIONS(3383), + [anon_sym_bool] = ACTIONS(3383), + [anon_sym_int] = ACTIONS(3383), + [anon_sym_uint] = ACTIONS(3383), + [anon_sym_float] = ACTIONS(3383), + [anon_sym_range] = ACTIONS(3383), + [anon_sym_i8] = ACTIONS(3383), + [anon_sym_i16] = ACTIONS(3383), + [anon_sym_i32] = ACTIONS(3383), + [anon_sym_i64] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3383), + [anon_sym_u16] = ACTIONS(3383), + [anon_sym_u32] = ACTIONS(3383), + [anon_sym_u64] = ACTIONS(3383), + [anon_sym_isize] = ACTIONS(3383), + [anon_sym_usize] = ACTIONS(3383), + [anon_sym_f32] = ACTIONS(3383), + [anon_sym_f64] = ACTIONS(3383), + [anon_sym_c_char] = ACTIONS(3383), + [anon_sym_c_schar] = ACTIONS(3383), + [anon_sym_c_uchar] = ACTIONS(3383), + [anon_sym_c_short] = ACTIONS(3383), + [anon_sym_c_ushort] = ACTIONS(3383), + [anon_sym_c_int] = ACTIONS(3383), + [anon_sym_c_uint] = ACTIONS(3383), + [anon_sym_c_long] = ACTIONS(3383), + [anon_sym_c_ulong] = ACTIONS(3383), + [anon_sym_c_longlong] = ACTIONS(3383), + [anon_sym_c_ulonglong] = ACTIONS(3383), + [anon_sym_c_float] = ACTIONS(3383), + [anon_sym_c_double] = ACTIONS(3383), + [anon_sym_c_longdouble] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_defer] = ACTIONS(3383), + [anon_sym_errdefer] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_expand] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_match] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3383), + [anon_sym_false] = ACTIONS(3383), + [sym_none] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [sym_sink] = ACTIONS(3383), + [sym_integer] = ACTIONS(3383), + [sym_float] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [sym_multiline_string] = ACTIONS(3381), + [sym_character] = ACTIONS(3381), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3381), + }, + [STATE(1530)] = { + [ts_builtin_sym_end] = ACTIONS(3385), + [sym_identifier] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_test] = ACTIONS(3387), + [anon_sym_hide] = ACTIONS(3387), + [anon_sym_func] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_struct] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_RPAREN] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_DOLLAR] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_anyopaque] = ACTIONS(3387), + [anon_sym_bool] = ACTIONS(3387), + [anon_sym_int] = ACTIONS(3387), + [anon_sym_uint] = ACTIONS(3387), + [anon_sym_float] = ACTIONS(3387), + [anon_sym_range] = ACTIONS(3387), + [anon_sym_i8] = ACTIONS(3387), + [anon_sym_i16] = ACTIONS(3387), + [anon_sym_i32] = ACTIONS(3387), + [anon_sym_i64] = ACTIONS(3387), + [anon_sym_u8] = ACTIONS(3387), + [anon_sym_u16] = ACTIONS(3387), + [anon_sym_u32] = ACTIONS(3387), + [anon_sym_u64] = ACTIONS(3387), + [anon_sym_isize] = ACTIONS(3387), + [anon_sym_usize] = ACTIONS(3387), + [anon_sym_f32] = ACTIONS(3387), + [anon_sym_f64] = ACTIONS(3387), + [anon_sym_c_char] = ACTIONS(3387), + [anon_sym_c_schar] = ACTIONS(3387), + [anon_sym_c_uchar] = ACTIONS(3387), + [anon_sym_c_short] = ACTIONS(3387), + [anon_sym_c_ushort] = ACTIONS(3387), + [anon_sym_c_int] = ACTIONS(3387), + [anon_sym_c_uint] = ACTIONS(3387), + [anon_sym_c_long] = ACTIONS(3387), + [anon_sym_c_ulong] = ACTIONS(3387), + [anon_sym_c_longlong] = ACTIONS(3387), + [anon_sym_c_ulonglong] = ACTIONS(3387), + [anon_sym_c_float] = ACTIONS(3387), + [anon_sym_c_double] = ACTIONS(3387), + [anon_sym_c_longdouble] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_defer] = ACTIONS(3387), + [anon_sym_errdefer] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), [anon_sym_else] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_expand] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_match] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [sym_none] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [sym_sink] = ACTIONS(3333), - [sym_integer] = ACTIONS(3333), - [sym_float] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_multiline_string] = ACTIONS(3335), - [sym_character] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_expand] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_match] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3385), + [anon_sym_true] = ACTIONS(3387), + [anon_sym_false] = ACTIONS(3387), + [sym_none] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [sym_sink] = ACTIONS(3387), + [sym_integer] = ACTIONS(3387), + [sym_float] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [sym_multiline_string] = ACTIONS(3385), + [sym_character] = ACTIONS(3385), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3390), + [sym__newline] = ACTIONS(3385), }, - [STATE(1297)] = { - [aux_sym_import_declaration_repeat1] = STATE(2098), - [sym_identifier] = ACTIONS(3352), - [anon_sym_func] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_struct] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_DOLLAR] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_anyopaque] = ACTIONS(3352), - [anon_sym_bool] = ACTIONS(3352), - [anon_sym_int] = ACTIONS(3352), - [anon_sym_uint] = ACTIONS(3352), - [anon_sym_float] = ACTIONS(3352), - [anon_sym_range] = ACTIONS(3352), - [anon_sym_i8] = ACTIONS(3352), - [anon_sym_i16] = ACTIONS(3352), - [anon_sym_i32] = ACTIONS(3352), - [anon_sym_i64] = ACTIONS(3352), - [anon_sym_u8] = ACTIONS(3352), - [anon_sym_u16] = ACTIONS(3352), - [anon_sym_u32] = ACTIONS(3352), - [anon_sym_u64] = ACTIONS(3352), - [anon_sym_isize] = ACTIONS(3352), - [anon_sym_usize] = ACTIONS(3352), - [anon_sym_f32] = ACTIONS(3352), - [anon_sym_f64] = ACTIONS(3352), - [anon_sym_c_char] = ACTIONS(3352), - [anon_sym_c_schar] = ACTIONS(3352), - [anon_sym_c_uchar] = ACTIONS(3352), - [anon_sym_c_short] = ACTIONS(3352), - [anon_sym_c_ushort] = ACTIONS(3352), - [anon_sym_c_int] = ACTIONS(3352), - [anon_sym_c_uint] = ACTIONS(3352), - [anon_sym_c_long] = ACTIONS(3352), - [anon_sym_c_ulong] = ACTIONS(3352), - [anon_sym_c_longlong] = ACTIONS(3352), - [anon_sym_c_ulonglong] = ACTIONS(3352), - [anon_sym_c_float] = ACTIONS(3352), - [anon_sym_c_double] = ACTIONS(3352), - [anon_sym_c_longdouble] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_defer] = ACTIONS(3352), - [anon_sym_errdefer] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_else] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_expand] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_match] = ACTIONS(3352), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_DOT] = ACTIONS(3354), - [anon_sym_true] = ACTIONS(3352), - [anon_sym_false] = ACTIONS(3352), - [sym_none] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [sym_sink] = ACTIONS(3352), - [sym_integer] = ACTIONS(3352), - [sym_float] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [sym_multiline_string] = ACTIONS(3354), - [sym_character] = ACTIONS(3354), + [STATE(1531)] = { + [ts_builtin_sym_end] = ACTIONS(3389), + [sym_identifier] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_test] = ACTIONS(3391), + [anon_sym_hide] = ACTIONS(3391), + [anon_sym_func] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_DOLLAR] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_anyopaque] = ACTIONS(3391), + [anon_sym_bool] = ACTIONS(3391), + [anon_sym_int] = ACTIONS(3391), + [anon_sym_uint] = ACTIONS(3391), + [anon_sym_float] = ACTIONS(3391), + [anon_sym_range] = ACTIONS(3391), + [anon_sym_i8] = ACTIONS(3391), + [anon_sym_i16] = ACTIONS(3391), + [anon_sym_i32] = ACTIONS(3391), + [anon_sym_i64] = ACTIONS(3391), + [anon_sym_u8] = ACTIONS(3391), + [anon_sym_u16] = ACTIONS(3391), + [anon_sym_u32] = ACTIONS(3391), + [anon_sym_u64] = ACTIONS(3391), + [anon_sym_isize] = ACTIONS(3391), + [anon_sym_usize] = ACTIONS(3391), + [anon_sym_f32] = ACTIONS(3391), + [anon_sym_f64] = ACTIONS(3391), + [anon_sym_c_char] = ACTIONS(3391), + [anon_sym_c_schar] = ACTIONS(3391), + [anon_sym_c_uchar] = ACTIONS(3391), + [anon_sym_c_short] = ACTIONS(3391), + [anon_sym_c_ushort] = ACTIONS(3391), + [anon_sym_c_int] = ACTIONS(3391), + [anon_sym_c_uint] = ACTIONS(3391), + [anon_sym_c_long] = ACTIONS(3391), + [anon_sym_c_ulong] = ACTIONS(3391), + [anon_sym_c_longlong] = ACTIONS(3391), + [anon_sym_c_ulonglong] = ACTIONS(3391), + [anon_sym_c_float] = ACTIONS(3391), + [anon_sym_c_double] = ACTIONS(3391), + [anon_sym_c_longdouble] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_defer] = ACTIONS(3391), + [anon_sym_errdefer] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_expand] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_match] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_DOT] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(3391), + [anon_sym_false] = ACTIONS(3391), + [sym_none] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [sym_sink] = ACTIONS(3391), + [sym_integer] = ACTIONS(3391), + [sym_float] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [sym_multiline_string] = ACTIONS(3389), + [sym_character] = ACTIONS(3389), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3395), + [sym__newline] = ACTIONS(3389), }, - [STATE(1298)] = { - [aux_sym_import_declaration_repeat1] = STATE(2083), - [sym_identifier] = ACTIONS(3323), - [anon_sym_func] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_DOLLAR] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_anyopaque] = ACTIONS(3323), - [anon_sym_bool] = ACTIONS(3323), - [anon_sym_int] = ACTIONS(3323), - [anon_sym_uint] = ACTIONS(3323), - [anon_sym_float] = ACTIONS(3323), - [anon_sym_range] = ACTIONS(3323), - [anon_sym_i8] = ACTIONS(3323), - [anon_sym_i16] = ACTIONS(3323), - [anon_sym_i32] = ACTIONS(3323), - [anon_sym_i64] = ACTIONS(3323), - [anon_sym_u8] = ACTIONS(3323), - [anon_sym_u16] = ACTIONS(3323), - [anon_sym_u32] = ACTIONS(3323), - [anon_sym_u64] = ACTIONS(3323), - [anon_sym_isize] = ACTIONS(3323), - [anon_sym_usize] = ACTIONS(3323), - [anon_sym_f32] = ACTIONS(3323), - [anon_sym_f64] = ACTIONS(3323), - [anon_sym_c_char] = ACTIONS(3323), - [anon_sym_c_schar] = ACTIONS(3323), - [anon_sym_c_uchar] = ACTIONS(3323), - [anon_sym_c_short] = ACTIONS(3323), - [anon_sym_c_ushort] = ACTIONS(3323), - [anon_sym_c_int] = ACTIONS(3323), - [anon_sym_c_uint] = ACTIONS(3323), - [anon_sym_c_long] = ACTIONS(3323), - [anon_sym_c_ulong] = ACTIONS(3323), - [anon_sym_c_longlong] = ACTIONS(3323), - [anon_sym_c_ulonglong] = ACTIONS(3323), - [anon_sym_c_float] = ACTIONS(3323), - [anon_sym_c_double] = ACTIONS(3323), - [anon_sym_c_longdouble] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_errdefer] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3398), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_expand] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_DOT] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3323), - [anon_sym_false] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [sym_sink] = ACTIONS(3323), - [sym_integer] = ACTIONS(3323), - [sym_float] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [sym_multiline_string] = ACTIONS(3325), - [sym_character] = ACTIONS(3325), + [STATE(1532)] = { + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_test] = ACTIONS(3395), + [anon_sym_hide] = ACTIONS(3395), + [anon_sym_func] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_RPAREN] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_DOLLAR] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_anyopaque] = ACTIONS(3395), + [anon_sym_bool] = ACTIONS(3395), + [anon_sym_int] = ACTIONS(3395), + [anon_sym_uint] = ACTIONS(3395), + [anon_sym_float] = ACTIONS(3395), + [anon_sym_range] = ACTIONS(3395), + [anon_sym_i8] = ACTIONS(3395), + [anon_sym_i16] = ACTIONS(3395), + [anon_sym_i32] = ACTIONS(3395), + [anon_sym_i64] = ACTIONS(3395), + [anon_sym_u8] = ACTIONS(3395), + [anon_sym_u16] = ACTIONS(3395), + [anon_sym_u32] = ACTIONS(3395), + [anon_sym_u64] = ACTIONS(3395), + [anon_sym_isize] = ACTIONS(3395), + [anon_sym_usize] = ACTIONS(3395), + [anon_sym_f32] = ACTIONS(3395), + [anon_sym_f64] = ACTIONS(3395), + [anon_sym_c_char] = ACTIONS(3395), + [anon_sym_c_schar] = ACTIONS(3395), + [anon_sym_c_uchar] = ACTIONS(3395), + [anon_sym_c_short] = ACTIONS(3395), + [anon_sym_c_ushort] = ACTIONS(3395), + [anon_sym_c_int] = ACTIONS(3395), + [anon_sym_c_uint] = ACTIONS(3395), + [anon_sym_c_long] = ACTIONS(3395), + [anon_sym_c_ulong] = ACTIONS(3395), + [anon_sym_c_longlong] = ACTIONS(3395), + [anon_sym_c_ulonglong] = ACTIONS(3395), + [anon_sym_c_float] = ACTIONS(3395), + [anon_sym_c_double] = ACTIONS(3395), + [anon_sym_c_longdouble] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_defer] = ACTIONS(3395), + [anon_sym_errdefer] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_expand] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_match] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_DOT] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [sym_none] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [sym_sink] = ACTIONS(3395), + [sym_integer] = ACTIONS(3395), + [sym_float] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_multiline_string] = ACTIONS(3393), + [sym_character] = ACTIONS(3393), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3400), + [sym__newline] = ACTIONS(3393), }, - [STATE(1299)] = { + [STATE(1533)] = { + [ts_builtin_sym_end] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_test] = ACTIONS(3399), + [anon_sym_hide] = ACTIONS(3399), + [anon_sym_func] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_RPAREN] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_DOLLAR] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_anyopaque] = ACTIONS(3399), + [anon_sym_bool] = ACTIONS(3399), + [anon_sym_int] = ACTIONS(3399), + [anon_sym_uint] = ACTIONS(3399), + [anon_sym_float] = ACTIONS(3399), + [anon_sym_range] = ACTIONS(3399), + [anon_sym_i8] = ACTIONS(3399), + [anon_sym_i16] = ACTIONS(3399), + [anon_sym_i32] = ACTIONS(3399), + [anon_sym_i64] = ACTIONS(3399), + [anon_sym_u8] = ACTIONS(3399), + [anon_sym_u16] = ACTIONS(3399), + [anon_sym_u32] = ACTIONS(3399), + [anon_sym_u64] = ACTIONS(3399), + [anon_sym_isize] = ACTIONS(3399), + [anon_sym_usize] = ACTIONS(3399), + [anon_sym_f32] = ACTIONS(3399), + [anon_sym_f64] = ACTIONS(3399), + [anon_sym_c_char] = ACTIONS(3399), + [anon_sym_c_schar] = ACTIONS(3399), + [anon_sym_c_uchar] = ACTIONS(3399), + [anon_sym_c_short] = ACTIONS(3399), + [anon_sym_c_ushort] = ACTIONS(3399), + [anon_sym_c_int] = ACTIONS(3399), + [anon_sym_c_uint] = ACTIONS(3399), + [anon_sym_c_long] = ACTIONS(3399), + [anon_sym_c_ulong] = ACTIONS(3399), + [anon_sym_c_longlong] = ACTIONS(3399), + [anon_sym_c_ulonglong] = ACTIONS(3399), + [anon_sym_c_float] = ACTIONS(3399), + [anon_sym_c_double] = ACTIONS(3399), + [anon_sym_c_longdouble] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_defer] = ACTIONS(3399), + [anon_sym_errdefer] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_expand] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_match] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3399), + [anon_sym_false] = ACTIONS(3399), + [sym_none] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [sym_sink] = ACTIONS(3399), + [sym_integer] = ACTIONS(3399), + [sym_float] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_multiline_string] = ACTIONS(3397), + [sym_character] = ACTIONS(3397), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3397), + }, + [STATE(1534)] = { + [ts_builtin_sym_end] = ACTIONS(3401), [sym_identifier] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_test] = ACTIONS(3403), + [anon_sym_hide] = ACTIONS(3403), [anon_sym_func] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3401), [anon_sym_struct] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_DASH] = ACTIONS(3406), - [anon_sym_DOLLAR] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), [anon_sym_void] = ACTIONS(3403), [anon_sym_anyopaque] = ACTIONS(3403), [anon_sym_bool] = ACTIONS(3403), @@ -132775,43 +162836,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_c_float] = ACTIONS(3403), [anon_sym_c_double] = ACTIONS(3403), [anon_sym_c_longdouble] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_defer] = ACTIONS(3409), - [anon_sym_errdefer] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_expand] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_defer] = ACTIONS(3403), + [anon_sym_errdefer] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_else] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_expand] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_match] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), [anon_sym_try] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3406), + [anon_sym_DOT] = ACTIONS(3401), [anon_sym_true] = ACTIONS(3403), [anon_sym_false] = ACTIONS(3403), [sym_none] = ACTIONS(3403), [sym_undefined] = ACTIONS(3403), [sym_sink] = ACTIONS(3403), [sym_integer] = ACTIONS(3403), - [sym_float] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [sym_multiline_string] = ACTIONS(3406), - [sym_character] = ACTIONS(3406), + [sym_float] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_multiline_string] = ACTIONS(3401), + [sym_character] = ACTIONS(3401), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3406), + [sym__newline] = ACTIONS(3401), }, - [STATE(1300)] = { + [STATE(1535)] = { + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_test] = ACTIONS(3407), + [anon_sym_hide] = ACTIONS(3407), + [anon_sym_func] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_struct] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_anyopaque] = ACTIONS(3407), + [anon_sym_bool] = ACTIONS(3407), + [anon_sym_int] = ACTIONS(3407), + [anon_sym_uint] = ACTIONS(3407), + [anon_sym_float] = ACTIONS(3407), + [anon_sym_range] = ACTIONS(3407), + [anon_sym_i8] = ACTIONS(3407), + [anon_sym_i16] = ACTIONS(3407), + [anon_sym_i32] = ACTIONS(3407), + [anon_sym_i64] = ACTIONS(3407), + [anon_sym_u8] = ACTIONS(3407), + [anon_sym_u16] = ACTIONS(3407), + [anon_sym_u32] = ACTIONS(3407), + [anon_sym_u64] = ACTIONS(3407), + [anon_sym_isize] = ACTIONS(3407), + [anon_sym_usize] = ACTIONS(3407), + [anon_sym_f32] = ACTIONS(3407), + [anon_sym_f64] = ACTIONS(3407), + [anon_sym_c_char] = ACTIONS(3407), + [anon_sym_c_schar] = ACTIONS(3407), + [anon_sym_c_uchar] = ACTIONS(3407), + [anon_sym_c_short] = ACTIONS(3407), + [anon_sym_c_ushort] = ACTIONS(3407), + [anon_sym_c_int] = ACTIONS(3407), + [anon_sym_c_uint] = ACTIONS(3407), + [anon_sym_c_long] = ACTIONS(3407), + [anon_sym_c_ulong] = ACTIONS(3407), + [anon_sym_c_longlong] = ACTIONS(3407), + [anon_sym_c_ulonglong] = ACTIONS(3407), + [anon_sym_c_float] = ACTIONS(3407), + [anon_sym_c_double] = ACTIONS(3407), + [anon_sym_c_longdouble] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_defer] = ACTIONS(3407), + [anon_sym_errdefer] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_expand] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_match] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_DOT] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3407), + [anon_sym_false] = ACTIONS(3407), + [sym_none] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [sym_sink] = ACTIONS(3407), + [sym_integer] = ACTIONS(3407), + [sym_float] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_multiline_string] = ACTIONS(3405), + [sym_character] = ACTIONS(3405), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3405), + }, + [STATE(1536)] = { + [ts_builtin_sym_end] = ACTIONS(3409), [sym_identifier] = ACTIONS(3411), + [anon_sym_import] = ACTIONS(3411), + [anon_sym_test] = ACTIONS(3411), + [anon_sym_hide] = ACTIONS(3411), [anon_sym_func] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3409), [anon_sym_struct] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_DOLLAR] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_DOLLAR] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3409), [anon_sym_void] = ACTIONS(3411), [anon_sym_anyopaque] = ACTIONS(3411), [anon_sym_bool] = ACTIONS(3411), @@ -132852,36 +162999,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3411), [anon_sym_errdefer] = ACTIONS(3411), [anon_sym_if] = ACTIONS(3411), + [anon_sym_else] = ACTIONS(3411), [anon_sym_while] = ACTIONS(3411), [anon_sym_expand] = ACTIONS(3411), [anon_sym_for] = ACTIONS(3411), [anon_sym_match] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3409), [anon_sym_try] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3413), + [anon_sym_DOT] = ACTIONS(3409), [anon_sym_true] = ACTIONS(3411), [anon_sym_false] = ACTIONS(3411), [sym_none] = ACTIONS(3411), [sym_undefined] = ACTIONS(3411), [sym_sink] = ACTIONS(3411), [sym_integer] = ACTIONS(3411), - [sym_float] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [sym_multiline_string] = ACTIONS(3413), - [sym_character] = ACTIONS(3413), + [sym_float] = ACTIONS(3409), + [anon_sym_DQUOTE] = ACTIONS(3409), + [sym_multiline_string] = ACTIONS(3409), + [sym_character] = ACTIONS(3409), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3413), + [sym__newline] = ACTIONS(3409), }, - [STATE(1301)] = { + [STATE(1537)] = { + [ts_builtin_sym_end] = ACTIONS(3413), [sym_identifier] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_test] = ACTIONS(3415), + [anon_sym_hide] = ACTIONS(3415), [anon_sym_func] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3413), [anon_sym_struct] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), [anon_sym_void] = ACTIONS(3415), [anon_sym_anyopaque] = ACTIONS(3415), [anon_sym_bool] = ACTIONS(3415), @@ -132922,36 +163077,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3415), [anon_sym_errdefer] = ACTIONS(3415), [anon_sym_if] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3415), [anon_sym_while] = ACTIONS(3415), [anon_sym_expand] = ACTIONS(3415), [anon_sym_for] = ACTIONS(3415), [anon_sym_match] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), [anon_sym_try] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3413), [anon_sym_true] = ACTIONS(3415), [anon_sym_false] = ACTIONS(3415), [sym_none] = ACTIONS(3415), [sym_undefined] = ACTIONS(3415), [sym_sink] = ACTIONS(3415), [sym_integer] = ACTIONS(3415), - [sym_float] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [sym_multiline_string] = ACTIONS(3417), - [sym_character] = ACTIONS(3417), + [sym_float] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_multiline_string] = ACTIONS(3413), + [sym_character] = ACTIONS(3413), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3417), + [sym__newline] = ACTIONS(3413), }, - [STATE(1302)] = { + [STATE(1538)] = { + [ts_builtin_sym_end] = ACTIONS(3417), [sym_identifier] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_test] = ACTIONS(3419), + [anon_sym_hide] = ACTIONS(3419), [anon_sym_func] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3417), [anon_sym_struct] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_DOLLAR] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_RPAREN] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_DOLLAR] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), [anon_sym_void] = ACTIONS(3419), [anon_sym_anyopaque] = ACTIONS(3419), [anon_sym_bool] = ACTIONS(3419), @@ -132992,36 +163155,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3419), [anon_sym_errdefer] = ACTIONS(3419), [anon_sym_if] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), [anon_sym_while] = ACTIONS(3419), [anon_sym_expand] = ACTIONS(3419), [anon_sym_for] = ACTIONS(3419), [anon_sym_match] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), [anon_sym_try] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3421), + [anon_sym_DOT] = ACTIONS(3417), [anon_sym_true] = ACTIONS(3419), [anon_sym_false] = ACTIONS(3419), [sym_none] = ACTIONS(3419), [sym_undefined] = ACTIONS(3419), [sym_sink] = ACTIONS(3419), [sym_integer] = ACTIONS(3419), - [sym_float] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_multiline_string] = ACTIONS(3421), - [sym_character] = ACTIONS(3421), + [sym_float] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_multiline_string] = ACTIONS(3417), + [sym_character] = ACTIONS(3417), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3421), + [sym__newline] = ACTIONS(3417), }, - [STATE(1303)] = { + [STATE(1539)] = { + [ts_builtin_sym_end] = ACTIONS(3421), [sym_identifier] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_test] = ACTIONS(3423), + [anon_sym_hide] = ACTIONS(3423), [anon_sym_func] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3421), [anon_sym_struct] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_DOLLAR] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), [anon_sym_void] = ACTIONS(3423), [anon_sym_anyopaque] = ACTIONS(3423), [anon_sym_bool] = ACTIONS(3423), @@ -133062,36 +163233,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3423), [anon_sym_errdefer] = ACTIONS(3423), [anon_sym_if] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3423), [anon_sym_while] = ACTIONS(3423), [anon_sym_expand] = ACTIONS(3423), [anon_sym_for] = ACTIONS(3423), [anon_sym_match] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), [anon_sym_try] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3425), + [anon_sym_DOT] = ACTIONS(3421), [anon_sym_true] = ACTIONS(3423), [anon_sym_false] = ACTIONS(3423), [sym_none] = ACTIONS(3423), [sym_undefined] = ACTIONS(3423), [sym_sink] = ACTIONS(3423), [sym_integer] = ACTIONS(3423), - [sym_float] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [sym_multiline_string] = ACTIONS(3425), - [sym_character] = ACTIONS(3425), + [sym_float] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_multiline_string] = ACTIONS(3421), + [sym_character] = ACTIONS(3421), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3425), + [sym__newline] = ACTIONS(3421), }, - [STATE(1304)] = { + [STATE(1540)] = { + [ts_builtin_sym_end] = ACTIONS(3425), [sym_identifier] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_test] = ACTIONS(3427), + [anon_sym_hide] = ACTIONS(3427), [anon_sym_func] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3425), [anon_sym_struct] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_DOLLAR] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_RPAREN] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_DOLLAR] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), [anon_sym_void] = ACTIONS(3427), [anon_sym_anyopaque] = ACTIONS(3427), [anon_sym_bool] = ACTIONS(3427), @@ -133132,19 +163311,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3427), [anon_sym_errdefer] = ACTIONS(3427), [anon_sym_if] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), [anon_sym_while] = ACTIONS(3427), [anon_sym_expand] = ACTIONS(3427), [anon_sym_for] = ACTIONS(3427), [anon_sym_match] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), [anon_sym_try] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_DOT] = ACTIONS(3425), [anon_sym_true] = ACTIONS(3427), [anon_sym_false] = ACTIONS(3427), [sym_none] = ACTIONS(3427), [sym_undefined] = ACTIONS(3427), [sym_sink] = ACTIONS(3427), [sym_integer] = ACTIONS(3427), + [sym_float] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [sym_multiline_string] = ACTIONS(3425), + [sym_character] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3425), + }, + [STATE(1541)] = { + [ts_builtin_sym_end] = ACTIONS(3429), + [sym_identifier] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_test] = ACTIONS(3431), + [anon_sym_hide] = ACTIONS(3431), + [anon_sym_func] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_anyopaque] = ACTIONS(3431), + [anon_sym_bool] = ACTIONS(3431), + [anon_sym_int] = ACTIONS(3431), + [anon_sym_uint] = ACTIONS(3431), + [anon_sym_float] = ACTIONS(3431), + [anon_sym_range] = ACTIONS(3431), + [anon_sym_i8] = ACTIONS(3431), + [anon_sym_i16] = ACTIONS(3431), + [anon_sym_i32] = ACTIONS(3431), + [anon_sym_i64] = ACTIONS(3431), + [anon_sym_u8] = ACTIONS(3431), + [anon_sym_u16] = ACTIONS(3431), + [anon_sym_u32] = ACTIONS(3431), + [anon_sym_u64] = ACTIONS(3431), + [anon_sym_isize] = ACTIONS(3431), + [anon_sym_usize] = ACTIONS(3431), + [anon_sym_f32] = ACTIONS(3431), + [anon_sym_f64] = ACTIONS(3431), + [anon_sym_c_char] = ACTIONS(3431), + [anon_sym_c_schar] = ACTIONS(3431), + [anon_sym_c_uchar] = ACTIONS(3431), + [anon_sym_c_short] = ACTIONS(3431), + [anon_sym_c_ushort] = ACTIONS(3431), + [anon_sym_c_int] = ACTIONS(3431), + [anon_sym_c_uint] = ACTIONS(3431), + [anon_sym_c_long] = ACTIONS(3431), + [anon_sym_c_ulong] = ACTIONS(3431), + [anon_sym_c_longlong] = ACTIONS(3431), + [anon_sym_c_ulonglong] = ACTIONS(3431), + [anon_sym_c_float] = ACTIONS(3431), + [anon_sym_c_double] = ACTIONS(3431), + [anon_sym_c_longdouble] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_defer] = ACTIONS(3431), + [anon_sym_errdefer] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_expand] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_match] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3429), + [anon_sym_true] = ACTIONS(3431), + [anon_sym_false] = ACTIONS(3431), + [sym_none] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [sym_sink] = ACTIONS(3431), + [sym_integer] = ACTIONS(3431), [sym_float] = ACTIONS(3429), [anon_sym_DQUOTE] = ACTIONS(3429), [sym_multiline_string] = ACTIONS(3429), @@ -133152,19 +163411,14062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3429), }, + [STATE(1542)] = { + [ts_builtin_sym_end] = ACTIONS(3433), + [sym_identifier] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_test] = ACTIONS(3435), + [anon_sym_hide] = ACTIONS(3435), + [anon_sym_func] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_struct] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_anyopaque] = ACTIONS(3435), + [anon_sym_bool] = ACTIONS(3435), + [anon_sym_int] = ACTIONS(3435), + [anon_sym_uint] = ACTIONS(3435), + [anon_sym_float] = ACTIONS(3435), + [anon_sym_range] = ACTIONS(3435), + [anon_sym_i8] = ACTIONS(3435), + [anon_sym_i16] = ACTIONS(3435), + [anon_sym_i32] = ACTIONS(3435), + [anon_sym_i64] = ACTIONS(3435), + [anon_sym_u8] = ACTIONS(3435), + [anon_sym_u16] = ACTIONS(3435), + [anon_sym_u32] = ACTIONS(3435), + [anon_sym_u64] = ACTIONS(3435), + [anon_sym_isize] = ACTIONS(3435), + [anon_sym_usize] = ACTIONS(3435), + [anon_sym_f32] = ACTIONS(3435), + [anon_sym_f64] = ACTIONS(3435), + [anon_sym_c_char] = ACTIONS(3435), + [anon_sym_c_schar] = ACTIONS(3435), + [anon_sym_c_uchar] = ACTIONS(3435), + [anon_sym_c_short] = ACTIONS(3435), + [anon_sym_c_ushort] = ACTIONS(3435), + [anon_sym_c_int] = ACTIONS(3435), + [anon_sym_c_uint] = ACTIONS(3435), + [anon_sym_c_long] = ACTIONS(3435), + [anon_sym_c_ulong] = ACTIONS(3435), + [anon_sym_c_longlong] = ACTIONS(3435), + [anon_sym_c_ulonglong] = ACTIONS(3435), + [anon_sym_c_float] = ACTIONS(3435), + [anon_sym_c_double] = ACTIONS(3435), + [anon_sym_c_longdouble] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_defer] = ACTIONS(3435), + [anon_sym_errdefer] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_else] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_expand] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_match] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_DOT] = ACTIONS(3433), + [anon_sym_true] = ACTIONS(3435), + [anon_sym_false] = ACTIONS(3435), + [sym_none] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [sym_sink] = ACTIONS(3435), + [sym_integer] = ACTIONS(3435), + [sym_float] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_multiline_string] = ACTIONS(3433), + [sym_character] = ACTIONS(3433), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3433), + }, + [STATE(1543)] = { + [ts_builtin_sym_end] = ACTIONS(3437), + [sym_identifier] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_test] = ACTIONS(3439), + [anon_sym_hide] = ACTIONS(3439), + [anon_sym_func] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_RPAREN] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_DOLLAR] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_anyopaque] = ACTIONS(3439), + [anon_sym_bool] = ACTIONS(3439), + [anon_sym_int] = ACTIONS(3439), + [anon_sym_uint] = ACTIONS(3439), + [anon_sym_float] = ACTIONS(3439), + [anon_sym_range] = ACTIONS(3439), + [anon_sym_i8] = ACTIONS(3439), + [anon_sym_i16] = ACTIONS(3439), + [anon_sym_i32] = ACTIONS(3439), + [anon_sym_i64] = ACTIONS(3439), + [anon_sym_u8] = ACTIONS(3439), + [anon_sym_u16] = ACTIONS(3439), + [anon_sym_u32] = ACTIONS(3439), + [anon_sym_u64] = ACTIONS(3439), + [anon_sym_isize] = ACTIONS(3439), + [anon_sym_usize] = ACTIONS(3439), + [anon_sym_f32] = ACTIONS(3439), + [anon_sym_f64] = ACTIONS(3439), + [anon_sym_c_char] = ACTIONS(3439), + [anon_sym_c_schar] = ACTIONS(3439), + [anon_sym_c_uchar] = ACTIONS(3439), + [anon_sym_c_short] = ACTIONS(3439), + [anon_sym_c_ushort] = ACTIONS(3439), + [anon_sym_c_int] = ACTIONS(3439), + [anon_sym_c_uint] = ACTIONS(3439), + [anon_sym_c_long] = ACTIONS(3439), + [anon_sym_c_ulong] = ACTIONS(3439), + [anon_sym_c_longlong] = ACTIONS(3439), + [anon_sym_c_ulonglong] = ACTIONS(3439), + [anon_sym_c_float] = ACTIONS(3439), + [anon_sym_c_double] = ACTIONS(3439), + [anon_sym_c_longdouble] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_defer] = ACTIONS(3439), + [anon_sym_errdefer] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_expand] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_match] = ACTIONS(3439), + [anon_sym_AMP] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [sym_none] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [sym_sink] = ACTIONS(3439), + [sym_integer] = ACTIONS(3439), + [sym_float] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [sym_multiline_string] = ACTIONS(3437), + [sym_character] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3437), + }, + [STATE(1544)] = { + [ts_builtin_sym_end] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_test] = ACTIONS(3443), + [anon_sym_hide] = ACTIONS(3443), + [anon_sym_func] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_RPAREN] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_DOLLAR] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_anyopaque] = ACTIONS(3443), + [anon_sym_bool] = ACTIONS(3443), + [anon_sym_int] = ACTIONS(3443), + [anon_sym_uint] = ACTIONS(3443), + [anon_sym_float] = ACTIONS(3443), + [anon_sym_range] = ACTIONS(3443), + [anon_sym_i8] = ACTIONS(3443), + [anon_sym_i16] = ACTIONS(3443), + [anon_sym_i32] = ACTIONS(3443), + [anon_sym_i64] = ACTIONS(3443), + [anon_sym_u8] = ACTIONS(3443), + [anon_sym_u16] = ACTIONS(3443), + [anon_sym_u32] = ACTIONS(3443), + [anon_sym_u64] = ACTIONS(3443), + [anon_sym_isize] = ACTIONS(3443), + [anon_sym_usize] = ACTIONS(3443), + [anon_sym_f32] = ACTIONS(3443), + [anon_sym_f64] = ACTIONS(3443), + [anon_sym_c_char] = ACTIONS(3443), + [anon_sym_c_schar] = ACTIONS(3443), + [anon_sym_c_uchar] = ACTIONS(3443), + [anon_sym_c_short] = ACTIONS(3443), + [anon_sym_c_ushort] = ACTIONS(3443), + [anon_sym_c_int] = ACTIONS(3443), + [anon_sym_c_uint] = ACTIONS(3443), + [anon_sym_c_long] = ACTIONS(3443), + [anon_sym_c_ulong] = ACTIONS(3443), + [anon_sym_c_longlong] = ACTIONS(3443), + [anon_sym_c_ulonglong] = ACTIONS(3443), + [anon_sym_c_float] = ACTIONS(3443), + [anon_sym_c_double] = ACTIONS(3443), + [anon_sym_c_longdouble] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_defer] = ACTIONS(3443), + [anon_sym_errdefer] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_else] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_expand] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_match] = ACTIONS(3443), + [anon_sym_AMP] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_DOT] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(3443), + [anon_sym_false] = ACTIONS(3443), + [sym_none] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [sym_sink] = ACTIONS(3443), + [sym_integer] = ACTIONS(3443), + [sym_float] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_multiline_string] = ACTIONS(3441), + [sym_character] = ACTIONS(3441), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3441), + }, + [STATE(1545)] = { + [ts_builtin_sym_end] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_test] = ACTIONS(3447), + [anon_sym_hide] = ACTIONS(3447), + [anon_sym_func] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_RPAREN] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_DOLLAR] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_anyopaque] = ACTIONS(3447), + [anon_sym_bool] = ACTIONS(3447), + [anon_sym_int] = ACTIONS(3447), + [anon_sym_uint] = ACTIONS(3447), + [anon_sym_float] = ACTIONS(3447), + [anon_sym_range] = ACTIONS(3447), + [anon_sym_i8] = ACTIONS(3447), + [anon_sym_i16] = ACTIONS(3447), + [anon_sym_i32] = ACTIONS(3447), + [anon_sym_i64] = ACTIONS(3447), + [anon_sym_u8] = ACTIONS(3447), + [anon_sym_u16] = ACTIONS(3447), + [anon_sym_u32] = ACTIONS(3447), + [anon_sym_u64] = ACTIONS(3447), + [anon_sym_isize] = ACTIONS(3447), + [anon_sym_usize] = ACTIONS(3447), + [anon_sym_f32] = ACTIONS(3447), + [anon_sym_f64] = ACTIONS(3447), + [anon_sym_c_char] = ACTIONS(3447), + [anon_sym_c_schar] = ACTIONS(3447), + [anon_sym_c_uchar] = ACTIONS(3447), + [anon_sym_c_short] = ACTIONS(3447), + [anon_sym_c_ushort] = ACTIONS(3447), + [anon_sym_c_int] = ACTIONS(3447), + [anon_sym_c_uint] = ACTIONS(3447), + [anon_sym_c_long] = ACTIONS(3447), + [anon_sym_c_ulong] = ACTIONS(3447), + [anon_sym_c_longlong] = ACTIONS(3447), + [anon_sym_c_ulonglong] = ACTIONS(3447), + [anon_sym_c_float] = ACTIONS(3447), + [anon_sym_c_double] = ACTIONS(3447), + [anon_sym_c_longdouble] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_defer] = ACTIONS(3447), + [anon_sym_errdefer] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_else] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_expand] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_match] = ACTIONS(3447), + [anon_sym_AMP] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_DOT] = ACTIONS(3445), + [anon_sym_true] = ACTIONS(3447), + [anon_sym_false] = ACTIONS(3447), + [sym_none] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [sym_sink] = ACTIONS(3447), + [sym_integer] = ACTIONS(3447), + [sym_float] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_multiline_string] = ACTIONS(3445), + [sym_character] = ACTIONS(3445), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3445), + }, + [STATE(1546)] = { + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3451), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_test] = ACTIONS(3451), + [anon_sym_hide] = ACTIONS(3451), + [anon_sym_func] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_RPAREN] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_void] = ACTIONS(3451), + [anon_sym_anyopaque] = ACTIONS(3451), + [anon_sym_bool] = ACTIONS(3451), + [anon_sym_int] = ACTIONS(3451), + [anon_sym_uint] = ACTIONS(3451), + [anon_sym_float] = ACTIONS(3451), + [anon_sym_range] = ACTIONS(3451), + [anon_sym_i8] = ACTIONS(3451), + [anon_sym_i16] = ACTIONS(3451), + [anon_sym_i32] = ACTIONS(3451), + [anon_sym_i64] = ACTIONS(3451), + [anon_sym_u8] = ACTIONS(3451), + [anon_sym_u16] = ACTIONS(3451), + [anon_sym_u32] = ACTIONS(3451), + [anon_sym_u64] = ACTIONS(3451), + [anon_sym_isize] = ACTIONS(3451), + [anon_sym_usize] = ACTIONS(3451), + [anon_sym_f32] = ACTIONS(3451), + [anon_sym_f64] = ACTIONS(3451), + [anon_sym_c_char] = ACTIONS(3451), + [anon_sym_c_schar] = ACTIONS(3451), + [anon_sym_c_uchar] = ACTIONS(3451), + [anon_sym_c_short] = ACTIONS(3451), + [anon_sym_c_ushort] = ACTIONS(3451), + [anon_sym_c_int] = ACTIONS(3451), + [anon_sym_c_uint] = ACTIONS(3451), + [anon_sym_c_long] = ACTIONS(3451), + [anon_sym_c_ulong] = ACTIONS(3451), + [anon_sym_c_longlong] = ACTIONS(3451), + [anon_sym_c_ulonglong] = ACTIONS(3451), + [anon_sym_c_float] = ACTIONS(3451), + [anon_sym_c_double] = ACTIONS(3451), + [anon_sym_c_longdouble] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_defer] = ACTIONS(3451), + [anon_sym_errdefer] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_else] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_expand] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_match] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_DOT] = ACTIONS(3449), + [anon_sym_true] = ACTIONS(3451), + [anon_sym_false] = ACTIONS(3451), + [sym_none] = ACTIONS(3451), + [sym_undefined] = ACTIONS(3451), + [sym_sink] = ACTIONS(3451), + [sym_integer] = ACTIONS(3451), + [sym_float] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_multiline_string] = ACTIONS(3449), + [sym_character] = ACTIONS(3449), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3449), + }, + [STATE(1547)] = { + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3455), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_test] = ACTIONS(3455), + [anon_sym_hide] = ACTIONS(3455), + [anon_sym_func] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_RPAREN] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_DOLLAR] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_void] = ACTIONS(3455), + [anon_sym_anyopaque] = ACTIONS(3455), + [anon_sym_bool] = ACTIONS(3455), + [anon_sym_int] = ACTIONS(3455), + [anon_sym_uint] = ACTIONS(3455), + [anon_sym_float] = ACTIONS(3455), + [anon_sym_range] = ACTIONS(3455), + [anon_sym_i8] = ACTIONS(3455), + [anon_sym_i16] = ACTIONS(3455), + [anon_sym_i32] = ACTIONS(3455), + [anon_sym_i64] = ACTIONS(3455), + [anon_sym_u8] = ACTIONS(3455), + [anon_sym_u16] = ACTIONS(3455), + [anon_sym_u32] = ACTIONS(3455), + [anon_sym_u64] = ACTIONS(3455), + [anon_sym_isize] = ACTIONS(3455), + [anon_sym_usize] = ACTIONS(3455), + [anon_sym_f32] = ACTIONS(3455), + [anon_sym_f64] = ACTIONS(3455), + [anon_sym_c_char] = ACTIONS(3455), + [anon_sym_c_schar] = ACTIONS(3455), + [anon_sym_c_uchar] = ACTIONS(3455), + [anon_sym_c_short] = ACTIONS(3455), + [anon_sym_c_ushort] = ACTIONS(3455), + [anon_sym_c_int] = ACTIONS(3455), + [anon_sym_c_uint] = ACTIONS(3455), + [anon_sym_c_long] = ACTIONS(3455), + [anon_sym_c_ulong] = ACTIONS(3455), + [anon_sym_c_longlong] = ACTIONS(3455), + [anon_sym_c_ulonglong] = ACTIONS(3455), + [anon_sym_c_float] = ACTIONS(3455), + [anon_sym_c_double] = ACTIONS(3455), + [anon_sym_c_longdouble] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_defer] = ACTIONS(3455), + [anon_sym_errdefer] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_expand] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_match] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_true] = ACTIONS(3455), + [anon_sym_false] = ACTIONS(3455), + [sym_none] = ACTIONS(3455), + [sym_undefined] = ACTIONS(3455), + [sym_sink] = ACTIONS(3455), + [sym_integer] = ACTIONS(3455), + [sym_float] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_multiline_string] = ACTIONS(3453), + [sym_character] = ACTIONS(3453), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3453), + }, + [STATE(1548)] = { + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_test] = ACTIONS(3459), + [anon_sym_hide] = ACTIONS(3459), + [anon_sym_func] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3457), + [anon_sym_RPAREN] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_anyopaque] = ACTIONS(3459), + [anon_sym_bool] = ACTIONS(3459), + [anon_sym_int] = ACTIONS(3459), + [anon_sym_uint] = ACTIONS(3459), + [anon_sym_float] = ACTIONS(3459), + [anon_sym_range] = ACTIONS(3459), + [anon_sym_i8] = ACTIONS(3459), + [anon_sym_i16] = ACTIONS(3459), + [anon_sym_i32] = ACTIONS(3459), + [anon_sym_i64] = ACTIONS(3459), + [anon_sym_u8] = ACTIONS(3459), + [anon_sym_u16] = ACTIONS(3459), + [anon_sym_u32] = ACTIONS(3459), + [anon_sym_u64] = ACTIONS(3459), + [anon_sym_isize] = ACTIONS(3459), + [anon_sym_usize] = ACTIONS(3459), + [anon_sym_f32] = ACTIONS(3459), + [anon_sym_f64] = ACTIONS(3459), + [anon_sym_c_char] = ACTIONS(3459), + [anon_sym_c_schar] = ACTIONS(3459), + [anon_sym_c_uchar] = ACTIONS(3459), + [anon_sym_c_short] = ACTIONS(3459), + [anon_sym_c_ushort] = ACTIONS(3459), + [anon_sym_c_int] = ACTIONS(3459), + [anon_sym_c_uint] = ACTIONS(3459), + [anon_sym_c_long] = ACTIONS(3459), + [anon_sym_c_ulong] = ACTIONS(3459), + [anon_sym_c_longlong] = ACTIONS(3459), + [anon_sym_c_ulonglong] = ACTIONS(3459), + [anon_sym_c_float] = ACTIONS(3459), + [anon_sym_c_double] = ACTIONS(3459), + [anon_sym_c_longdouble] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_defer] = ACTIONS(3459), + [anon_sym_errdefer] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_expand] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_match] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(3459), + [anon_sym_false] = ACTIONS(3459), + [sym_none] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [sym_sink] = ACTIONS(3459), + [sym_integer] = ACTIONS(3459), + [sym_float] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_multiline_string] = ACTIONS(3457), + [sym_character] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3457), + }, + [STATE(1549)] = { + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3463), + [anon_sym_import] = ACTIONS(3463), + [anon_sym_test] = ACTIONS(3463), + [anon_sym_hide] = ACTIONS(3463), + [anon_sym_func] = ACTIONS(3463), + [anon_sym_BANG] = ACTIONS(3461), + [anon_sym_struct] = ACTIONS(3463), + [anon_sym_LPAREN] = ACTIONS(3461), + [anon_sym_RPAREN] = ACTIONS(3461), + [anon_sym_LBRACE] = ACTIONS(3461), + [anon_sym_RBRACE] = ACTIONS(3461), + [anon_sym_DASH] = ACTIONS(3461), + [anon_sym_DOLLAR] = ACTIONS(3461), + [anon_sym_LBRACK] = ACTIONS(3461), + [anon_sym_void] = ACTIONS(3463), + [anon_sym_anyopaque] = ACTIONS(3463), + [anon_sym_bool] = ACTIONS(3463), + [anon_sym_int] = ACTIONS(3463), + [anon_sym_uint] = ACTIONS(3463), + [anon_sym_float] = ACTIONS(3463), + [anon_sym_range] = ACTIONS(3463), + [anon_sym_i8] = ACTIONS(3463), + [anon_sym_i16] = ACTIONS(3463), + [anon_sym_i32] = ACTIONS(3463), + [anon_sym_i64] = ACTIONS(3463), + [anon_sym_u8] = ACTIONS(3463), + [anon_sym_u16] = ACTIONS(3463), + [anon_sym_u32] = ACTIONS(3463), + [anon_sym_u64] = ACTIONS(3463), + [anon_sym_isize] = ACTIONS(3463), + [anon_sym_usize] = ACTIONS(3463), + [anon_sym_f32] = ACTIONS(3463), + [anon_sym_f64] = ACTIONS(3463), + [anon_sym_c_char] = ACTIONS(3463), + [anon_sym_c_schar] = ACTIONS(3463), + [anon_sym_c_uchar] = ACTIONS(3463), + [anon_sym_c_short] = ACTIONS(3463), + [anon_sym_c_ushort] = ACTIONS(3463), + [anon_sym_c_int] = ACTIONS(3463), + [anon_sym_c_uint] = ACTIONS(3463), + [anon_sym_c_long] = ACTIONS(3463), + [anon_sym_c_ulong] = ACTIONS(3463), + [anon_sym_c_longlong] = ACTIONS(3463), + [anon_sym_c_ulonglong] = ACTIONS(3463), + [anon_sym_c_float] = ACTIONS(3463), + [anon_sym_c_double] = ACTIONS(3463), + [anon_sym_c_longdouble] = ACTIONS(3463), + [anon_sym_return] = ACTIONS(3463), + [anon_sym_yield] = ACTIONS(3463), + [anon_sym_break] = ACTIONS(3463), + [anon_sym_continue] = ACTIONS(3463), + [anon_sym_defer] = ACTIONS(3463), + [anon_sym_errdefer] = ACTIONS(3463), + [anon_sym_if] = ACTIONS(3463), + [anon_sym_else] = ACTIONS(3463), + [anon_sym_while] = ACTIONS(3463), + [anon_sym_expand] = ACTIONS(3463), + [anon_sym_for] = ACTIONS(3463), + [anon_sym_match] = ACTIONS(3463), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_TILDE] = ACTIONS(3461), + [anon_sym_try] = ACTIONS(3463), + [anon_sym_DOT] = ACTIONS(3461), + [anon_sym_true] = ACTIONS(3463), + [anon_sym_false] = ACTIONS(3463), + [sym_none] = ACTIONS(3463), + [sym_undefined] = ACTIONS(3463), + [sym_sink] = ACTIONS(3463), + [sym_integer] = ACTIONS(3463), + [sym_float] = ACTIONS(3461), + [anon_sym_DQUOTE] = ACTIONS(3461), + [sym_multiline_string] = ACTIONS(3461), + [sym_character] = ACTIONS(3461), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3461), + }, + [STATE(1550)] = { + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3467), + [anon_sym_import] = ACTIONS(3467), + [anon_sym_test] = ACTIONS(3467), + [anon_sym_hide] = ACTIONS(3467), + [anon_sym_func] = ACTIONS(3467), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_struct] = ACTIONS(3467), + [anon_sym_LPAREN] = ACTIONS(3465), + [anon_sym_RPAREN] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3465), + [anon_sym_RBRACE] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_DOLLAR] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3465), + [anon_sym_void] = ACTIONS(3467), + [anon_sym_anyopaque] = ACTIONS(3467), + [anon_sym_bool] = ACTIONS(3467), + [anon_sym_int] = ACTIONS(3467), + [anon_sym_uint] = ACTIONS(3467), + [anon_sym_float] = ACTIONS(3467), + [anon_sym_range] = ACTIONS(3467), + [anon_sym_i8] = ACTIONS(3467), + [anon_sym_i16] = ACTIONS(3467), + [anon_sym_i32] = ACTIONS(3467), + [anon_sym_i64] = ACTIONS(3467), + [anon_sym_u8] = ACTIONS(3467), + [anon_sym_u16] = ACTIONS(3467), + [anon_sym_u32] = ACTIONS(3467), + [anon_sym_u64] = ACTIONS(3467), + [anon_sym_isize] = ACTIONS(3467), + [anon_sym_usize] = ACTIONS(3467), + [anon_sym_f32] = ACTIONS(3467), + [anon_sym_f64] = ACTIONS(3467), + [anon_sym_c_char] = ACTIONS(3467), + [anon_sym_c_schar] = ACTIONS(3467), + [anon_sym_c_uchar] = ACTIONS(3467), + [anon_sym_c_short] = ACTIONS(3467), + [anon_sym_c_ushort] = ACTIONS(3467), + [anon_sym_c_int] = ACTIONS(3467), + [anon_sym_c_uint] = ACTIONS(3467), + [anon_sym_c_long] = ACTIONS(3467), + [anon_sym_c_ulong] = ACTIONS(3467), + [anon_sym_c_longlong] = ACTIONS(3467), + [anon_sym_c_ulonglong] = ACTIONS(3467), + [anon_sym_c_float] = ACTIONS(3467), + [anon_sym_c_double] = ACTIONS(3467), + [anon_sym_c_longdouble] = ACTIONS(3467), + [anon_sym_return] = ACTIONS(3467), + [anon_sym_yield] = ACTIONS(3467), + [anon_sym_break] = ACTIONS(3467), + [anon_sym_continue] = ACTIONS(3467), + [anon_sym_defer] = ACTIONS(3467), + [anon_sym_errdefer] = ACTIONS(3467), + [anon_sym_if] = ACTIONS(3467), + [anon_sym_else] = ACTIONS(3467), + [anon_sym_while] = ACTIONS(3467), + [anon_sym_expand] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3467), + [anon_sym_match] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3465), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_DOT] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(3467), + [anon_sym_false] = ACTIONS(3467), + [sym_none] = ACTIONS(3467), + [sym_undefined] = ACTIONS(3467), + [sym_sink] = ACTIONS(3467), + [sym_integer] = ACTIONS(3467), + [sym_float] = ACTIONS(3465), + [anon_sym_DQUOTE] = ACTIONS(3465), + [sym_multiline_string] = ACTIONS(3465), + [sym_character] = ACTIONS(3465), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3465), + }, + [STATE(1551)] = { + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3471), + [anon_sym_import] = ACTIONS(3471), + [anon_sym_test] = ACTIONS(3471), + [anon_sym_hide] = ACTIONS(3471), + [anon_sym_func] = ACTIONS(3471), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_struct] = ACTIONS(3471), + [anon_sym_LPAREN] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_DOLLAR] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_void] = ACTIONS(3471), + [anon_sym_anyopaque] = ACTIONS(3471), + [anon_sym_bool] = ACTIONS(3471), + [anon_sym_int] = ACTIONS(3471), + [anon_sym_uint] = ACTIONS(3471), + [anon_sym_float] = ACTIONS(3471), + [anon_sym_range] = ACTIONS(3471), + [anon_sym_i8] = ACTIONS(3471), + [anon_sym_i16] = ACTIONS(3471), + [anon_sym_i32] = ACTIONS(3471), + [anon_sym_i64] = ACTIONS(3471), + [anon_sym_u8] = ACTIONS(3471), + [anon_sym_u16] = ACTIONS(3471), + [anon_sym_u32] = ACTIONS(3471), + [anon_sym_u64] = ACTIONS(3471), + [anon_sym_isize] = ACTIONS(3471), + [anon_sym_usize] = ACTIONS(3471), + [anon_sym_f32] = ACTIONS(3471), + [anon_sym_f64] = ACTIONS(3471), + [anon_sym_c_char] = ACTIONS(3471), + [anon_sym_c_schar] = ACTIONS(3471), + [anon_sym_c_uchar] = ACTIONS(3471), + [anon_sym_c_short] = ACTIONS(3471), + [anon_sym_c_ushort] = ACTIONS(3471), + [anon_sym_c_int] = ACTIONS(3471), + [anon_sym_c_uint] = ACTIONS(3471), + [anon_sym_c_long] = ACTIONS(3471), + [anon_sym_c_ulong] = ACTIONS(3471), + [anon_sym_c_longlong] = ACTIONS(3471), + [anon_sym_c_ulonglong] = ACTIONS(3471), + [anon_sym_c_float] = ACTIONS(3471), + [anon_sym_c_double] = ACTIONS(3471), + [anon_sym_c_longdouble] = ACTIONS(3471), + [anon_sym_return] = ACTIONS(3471), + [anon_sym_yield] = ACTIONS(3471), + [anon_sym_break] = ACTIONS(3471), + [anon_sym_continue] = ACTIONS(3471), + [anon_sym_defer] = ACTIONS(3471), + [anon_sym_errdefer] = ACTIONS(3471), + [anon_sym_if] = ACTIONS(3471), + [anon_sym_else] = ACTIONS(3471), + [anon_sym_while] = ACTIONS(3471), + [anon_sym_expand] = ACTIONS(3471), + [anon_sym_for] = ACTIONS(3471), + [anon_sym_match] = ACTIONS(3471), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_try] = ACTIONS(3471), + [anon_sym_DOT] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(3471), + [anon_sym_false] = ACTIONS(3471), + [sym_none] = ACTIONS(3471), + [sym_undefined] = ACTIONS(3471), + [sym_sink] = ACTIONS(3471), + [sym_integer] = ACTIONS(3471), + [sym_float] = ACTIONS(3469), + [anon_sym_DQUOTE] = ACTIONS(3469), + [sym_multiline_string] = ACTIONS(3469), + [sym_character] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3469), + }, + [STATE(1552)] = { + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3475), + [anon_sym_import] = ACTIONS(3475), + [anon_sym_test] = ACTIONS(3475), + [anon_sym_hide] = ACTIONS(3475), + [anon_sym_func] = ACTIONS(3475), + [anon_sym_BANG] = ACTIONS(3473), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_LPAREN] = ACTIONS(3473), + [anon_sym_RPAREN] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_RBRACE] = ACTIONS(3473), + [anon_sym_DASH] = ACTIONS(3473), + [anon_sym_DOLLAR] = ACTIONS(3473), + [anon_sym_LBRACK] = ACTIONS(3473), + [anon_sym_void] = ACTIONS(3475), + [anon_sym_anyopaque] = ACTIONS(3475), + [anon_sym_bool] = ACTIONS(3475), + [anon_sym_int] = ACTIONS(3475), + [anon_sym_uint] = ACTIONS(3475), + [anon_sym_float] = ACTIONS(3475), + [anon_sym_range] = ACTIONS(3475), + [anon_sym_i8] = ACTIONS(3475), + [anon_sym_i16] = ACTIONS(3475), + [anon_sym_i32] = ACTIONS(3475), + [anon_sym_i64] = ACTIONS(3475), + [anon_sym_u8] = ACTIONS(3475), + [anon_sym_u16] = ACTIONS(3475), + [anon_sym_u32] = ACTIONS(3475), + [anon_sym_u64] = ACTIONS(3475), + [anon_sym_isize] = ACTIONS(3475), + [anon_sym_usize] = ACTIONS(3475), + [anon_sym_f32] = ACTIONS(3475), + [anon_sym_f64] = ACTIONS(3475), + [anon_sym_c_char] = ACTIONS(3475), + [anon_sym_c_schar] = ACTIONS(3475), + [anon_sym_c_uchar] = ACTIONS(3475), + [anon_sym_c_short] = ACTIONS(3475), + [anon_sym_c_ushort] = ACTIONS(3475), + [anon_sym_c_int] = ACTIONS(3475), + [anon_sym_c_uint] = ACTIONS(3475), + [anon_sym_c_long] = ACTIONS(3475), + [anon_sym_c_ulong] = ACTIONS(3475), + [anon_sym_c_longlong] = ACTIONS(3475), + [anon_sym_c_ulonglong] = ACTIONS(3475), + [anon_sym_c_float] = ACTIONS(3475), + [anon_sym_c_double] = ACTIONS(3475), + [anon_sym_c_longdouble] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_yield] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_defer] = ACTIONS(3475), + [anon_sym_errdefer] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_expand] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_match] = ACTIONS(3475), + [anon_sym_AMP] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_DOT] = ACTIONS(3473), + [anon_sym_true] = ACTIONS(3475), + [anon_sym_false] = ACTIONS(3475), + [sym_none] = ACTIONS(3475), + [sym_undefined] = ACTIONS(3475), + [sym_sink] = ACTIONS(3475), + [sym_integer] = ACTIONS(3475), + [sym_float] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym_multiline_string] = ACTIONS(3473), + [sym_character] = ACTIONS(3473), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3473), + }, + [STATE(1553)] = { + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3479), + [anon_sym_import] = ACTIONS(3479), + [anon_sym_test] = ACTIONS(3479), + [anon_sym_hide] = ACTIONS(3479), + [anon_sym_func] = ACTIONS(3479), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_LPAREN] = ACTIONS(3477), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_RBRACE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3477), + [anon_sym_DOLLAR] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3477), + [anon_sym_void] = ACTIONS(3479), + [anon_sym_anyopaque] = ACTIONS(3479), + [anon_sym_bool] = ACTIONS(3479), + [anon_sym_int] = ACTIONS(3479), + [anon_sym_uint] = ACTIONS(3479), + [anon_sym_float] = ACTIONS(3479), + [anon_sym_range] = ACTIONS(3479), + [anon_sym_i8] = ACTIONS(3479), + [anon_sym_i16] = ACTIONS(3479), + [anon_sym_i32] = ACTIONS(3479), + [anon_sym_i64] = ACTIONS(3479), + [anon_sym_u8] = ACTIONS(3479), + [anon_sym_u16] = ACTIONS(3479), + [anon_sym_u32] = ACTIONS(3479), + [anon_sym_u64] = ACTIONS(3479), + [anon_sym_isize] = ACTIONS(3479), + [anon_sym_usize] = ACTIONS(3479), + [anon_sym_f32] = ACTIONS(3479), + [anon_sym_f64] = ACTIONS(3479), + [anon_sym_c_char] = ACTIONS(3479), + [anon_sym_c_schar] = ACTIONS(3479), + [anon_sym_c_uchar] = ACTIONS(3479), + [anon_sym_c_short] = ACTIONS(3479), + [anon_sym_c_ushort] = ACTIONS(3479), + [anon_sym_c_int] = ACTIONS(3479), + [anon_sym_c_uint] = ACTIONS(3479), + [anon_sym_c_long] = ACTIONS(3479), + [anon_sym_c_ulong] = ACTIONS(3479), + [anon_sym_c_longlong] = ACTIONS(3479), + [anon_sym_c_ulonglong] = ACTIONS(3479), + [anon_sym_c_float] = ACTIONS(3479), + [anon_sym_c_double] = ACTIONS(3479), + [anon_sym_c_longdouble] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_yield] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_defer] = ACTIONS(3479), + [anon_sym_errdefer] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_else] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_expand] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_match] = ACTIONS(3479), + [anon_sym_AMP] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_DOT] = ACTIONS(3477), + [anon_sym_true] = ACTIONS(3479), + [anon_sym_false] = ACTIONS(3479), + [sym_none] = ACTIONS(3479), + [sym_undefined] = ACTIONS(3479), + [sym_sink] = ACTIONS(3479), + [sym_integer] = ACTIONS(3479), + [sym_float] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_multiline_string] = ACTIONS(3477), + [sym_character] = ACTIONS(3477), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3477), + }, + [STATE(1554)] = { + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3483), + [anon_sym_import] = ACTIONS(3483), + [anon_sym_test] = ACTIONS(3483), + [anon_sym_hide] = ACTIONS(3483), + [anon_sym_func] = ACTIONS(3483), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(3481), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_RBRACE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3481), + [anon_sym_LBRACK] = ACTIONS(3481), + [anon_sym_void] = ACTIONS(3483), + [anon_sym_anyopaque] = ACTIONS(3483), + [anon_sym_bool] = ACTIONS(3483), + [anon_sym_int] = ACTIONS(3483), + [anon_sym_uint] = ACTIONS(3483), + [anon_sym_float] = ACTIONS(3483), + [anon_sym_range] = ACTIONS(3483), + [anon_sym_i8] = ACTIONS(3483), + [anon_sym_i16] = ACTIONS(3483), + [anon_sym_i32] = ACTIONS(3483), + [anon_sym_i64] = ACTIONS(3483), + [anon_sym_u8] = ACTIONS(3483), + [anon_sym_u16] = ACTIONS(3483), + [anon_sym_u32] = ACTIONS(3483), + [anon_sym_u64] = ACTIONS(3483), + [anon_sym_isize] = ACTIONS(3483), + [anon_sym_usize] = ACTIONS(3483), + [anon_sym_f32] = ACTIONS(3483), + [anon_sym_f64] = ACTIONS(3483), + [anon_sym_c_char] = ACTIONS(3483), + [anon_sym_c_schar] = ACTIONS(3483), + [anon_sym_c_uchar] = ACTIONS(3483), + [anon_sym_c_short] = ACTIONS(3483), + [anon_sym_c_ushort] = ACTIONS(3483), + [anon_sym_c_int] = ACTIONS(3483), + [anon_sym_c_uint] = ACTIONS(3483), + [anon_sym_c_long] = ACTIONS(3483), + [anon_sym_c_ulong] = ACTIONS(3483), + [anon_sym_c_longlong] = ACTIONS(3483), + [anon_sym_c_ulonglong] = ACTIONS(3483), + [anon_sym_c_float] = ACTIONS(3483), + [anon_sym_c_double] = ACTIONS(3483), + [anon_sym_c_longdouble] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_yield] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_defer] = ACTIONS(3483), + [anon_sym_errdefer] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_else] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_expand] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_match] = ACTIONS(3483), + [anon_sym_AMP] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_DOT] = ACTIONS(3481), + [anon_sym_true] = ACTIONS(3483), + [anon_sym_false] = ACTIONS(3483), + [sym_none] = ACTIONS(3483), + [sym_undefined] = ACTIONS(3483), + [sym_sink] = ACTIONS(3483), + [sym_integer] = ACTIONS(3483), + [sym_float] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_multiline_string] = ACTIONS(3481), + [sym_character] = ACTIONS(3481), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3481), + }, + [STATE(1555)] = { + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3487), + [anon_sym_import] = ACTIONS(3487), + [anon_sym_test] = ACTIONS(3487), + [anon_sym_hide] = ACTIONS(3487), + [anon_sym_func] = ACTIONS(3487), + [anon_sym_BANG] = ACTIONS(3485), + [anon_sym_struct] = ACTIONS(3487), + [anon_sym_LPAREN] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3485), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_DASH] = ACTIONS(3485), + [anon_sym_DOLLAR] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3485), + [anon_sym_void] = ACTIONS(3487), + [anon_sym_anyopaque] = ACTIONS(3487), + [anon_sym_bool] = ACTIONS(3487), + [anon_sym_int] = ACTIONS(3487), + [anon_sym_uint] = ACTIONS(3487), + [anon_sym_float] = ACTIONS(3487), + [anon_sym_range] = ACTIONS(3487), + [anon_sym_i8] = ACTIONS(3487), + [anon_sym_i16] = ACTIONS(3487), + [anon_sym_i32] = ACTIONS(3487), + [anon_sym_i64] = ACTIONS(3487), + [anon_sym_u8] = ACTIONS(3487), + [anon_sym_u16] = ACTIONS(3487), + [anon_sym_u32] = ACTIONS(3487), + [anon_sym_u64] = ACTIONS(3487), + [anon_sym_isize] = ACTIONS(3487), + [anon_sym_usize] = ACTIONS(3487), + [anon_sym_f32] = ACTIONS(3487), + [anon_sym_f64] = ACTIONS(3487), + [anon_sym_c_char] = ACTIONS(3487), + [anon_sym_c_schar] = ACTIONS(3487), + [anon_sym_c_uchar] = ACTIONS(3487), + [anon_sym_c_short] = ACTIONS(3487), + [anon_sym_c_ushort] = ACTIONS(3487), + [anon_sym_c_int] = ACTIONS(3487), + [anon_sym_c_uint] = ACTIONS(3487), + [anon_sym_c_long] = ACTIONS(3487), + [anon_sym_c_ulong] = ACTIONS(3487), + [anon_sym_c_longlong] = ACTIONS(3487), + [anon_sym_c_ulonglong] = ACTIONS(3487), + [anon_sym_c_float] = ACTIONS(3487), + [anon_sym_c_double] = ACTIONS(3487), + [anon_sym_c_longdouble] = ACTIONS(3487), + [anon_sym_return] = ACTIONS(3487), + [anon_sym_yield] = ACTIONS(3487), + [anon_sym_break] = ACTIONS(3487), + [anon_sym_continue] = ACTIONS(3487), + [anon_sym_defer] = ACTIONS(3487), + [anon_sym_errdefer] = ACTIONS(3487), + [anon_sym_if] = ACTIONS(3487), + [anon_sym_else] = ACTIONS(3487), + [anon_sym_while] = ACTIONS(3487), + [anon_sym_expand] = ACTIONS(3487), + [anon_sym_for] = ACTIONS(3487), + [anon_sym_match] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3485), + [anon_sym_TILDE] = ACTIONS(3485), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_DOT] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3487), + [anon_sym_false] = ACTIONS(3487), + [sym_none] = ACTIONS(3487), + [sym_undefined] = ACTIONS(3487), + [sym_sink] = ACTIONS(3487), + [sym_integer] = ACTIONS(3487), + [sym_float] = ACTIONS(3485), + [anon_sym_DQUOTE] = ACTIONS(3485), + [sym_multiline_string] = ACTIONS(3485), + [sym_character] = ACTIONS(3485), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3485), + }, + [STATE(1556)] = { + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3491), + [anon_sym_import] = ACTIONS(3491), + [anon_sym_test] = ACTIONS(3491), + [anon_sym_hide] = ACTIONS(3491), + [anon_sym_func] = ACTIONS(3491), + [anon_sym_BANG] = ACTIONS(3489), + [anon_sym_struct] = ACTIONS(3491), + [anon_sym_LPAREN] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3489), + [anon_sym_DOLLAR] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3489), + [anon_sym_void] = ACTIONS(3491), + [anon_sym_anyopaque] = ACTIONS(3491), + [anon_sym_bool] = ACTIONS(3491), + [anon_sym_int] = ACTIONS(3491), + [anon_sym_uint] = ACTIONS(3491), + [anon_sym_float] = ACTIONS(3491), + [anon_sym_range] = ACTIONS(3491), + [anon_sym_i8] = ACTIONS(3491), + [anon_sym_i16] = ACTIONS(3491), + [anon_sym_i32] = ACTIONS(3491), + [anon_sym_i64] = ACTIONS(3491), + [anon_sym_u8] = ACTIONS(3491), + [anon_sym_u16] = ACTIONS(3491), + [anon_sym_u32] = ACTIONS(3491), + [anon_sym_u64] = ACTIONS(3491), + [anon_sym_isize] = ACTIONS(3491), + [anon_sym_usize] = ACTIONS(3491), + [anon_sym_f32] = ACTIONS(3491), + [anon_sym_f64] = ACTIONS(3491), + [anon_sym_c_char] = ACTIONS(3491), + [anon_sym_c_schar] = ACTIONS(3491), + [anon_sym_c_uchar] = ACTIONS(3491), + [anon_sym_c_short] = ACTIONS(3491), + [anon_sym_c_ushort] = ACTIONS(3491), + [anon_sym_c_int] = ACTIONS(3491), + [anon_sym_c_uint] = ACTIONS(3491), + [anon_sym_c_long] = ACTIONS(3491), + [anon_sym_c_ulong] = ACTIONS(3491), + [anon_sym_c_longlong] = ACTIONS(3491), + [anon_sym_c_ulonglong] = ACTIONS(3491), + [anon_sym_c_float] = ACTIONS(3491), + [anon_sym_c_double] = ACTIONS(3491), + [anon_sym_c_longdouble] = ACTIONS(3491), + [anon_sym_return] = ACTIONS(3491), + [anon_sym_yield] = ACTIONS(3491), + [anon_sym_break] = ACTIONS(3491), + [anon_sym_continue] = ACTIONS(3491), + [anon_sym_defer] = ACTIONS(3491), + [anon_sym_errdefer] = ACTIONS(3491), + [anon_sym_if] = ACTIONS(3491), + [anon_sym_else] = ACTIONS(3491), + [anon_sym_while] = ACTIONS(3491), + [anon_sym_expand] = ACTIONS(3491), + [anon_sym_for] = ACTIONS(3491), + [anon_sym_match] = ACTIONS(3491), + [anon_sym_AMP] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_try] = ACTIONS(3491), + [anon_sym_DOT] = ACTIONS(3489), + [anon_sym_true] = ACTIONS(3491), + [anon_sym_false] = ACTIONS(3491), + [sym_none] = ACTIONS(3491), + [sym_undefined] = ACTIONS(3491), + [sym_sink] = ACTIONS(3491), + [sym_integer] = ACTIONS(3491), + [sym_float] = ACTIONS(3489), + [anon_sym_DQUOTE] = ACTIONS(3489), + [sym_multiline_string] = ACTIONS(3489), + [sym_character] = ACTIONS(3489), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3489), + }, + [STATE(1557)] = { + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3495), + [anon_sym_import] = ACTIONS(3495), + [anon_sym_test] = ACTIONS(3495), + [anon_sym_hide] = ACTIONS(3495), + [anon_sym_func] = ACTIONS(3495), + [anon_sym_BANG] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3493), + [anon_sym_RPAREN] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3493), + [anon_sym_RBRACE] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_DOLLAR] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_void] = ACTIONS(3495), + [anon_sym_anyopaque] = ACTIONS(3495), + [anon_sym_bool] = ACTIONS(3495), + [anon_sym_int] = ACTIONS(3495), + [anon_sym_uint] = ACTIONS(3495), + [anon_sym_float] = ACTIONS(3495), + [anon_sym_range] = ACTIONS(3495), + [anon_sym_i8] = ACTIONS(3495), + [anon_sym_i16] = ACTIONS(3495), + [anon_sym_i32] = ACTIONS(3495), + [anon_sym_i64] = ACTIONS(3495), + [anon_sym_u8] = ACTIONS(3495), + [anon_sym_u16] = ACTIONS(3495), + [anon_sym_u32] = ACTIONS(3495), + [anon_sym_u64] = ACTIONS(3495), + [anon_sym_isize] = ACTIONS(3495), + [anon_sym_usize] = ACTIONS(3495), + [anon_sym_f32] = ACTIONS(3495), + [anon_sym_f64] = ACTIONS(3495), + [anon_sym_c_char] = ACTIONS(3495), + [anon_sym_c_schar] = ACTIONS(3495), + [anon_sym_c_uchar] = ACTIONS(3495), + [anon_sym_c_short] = ACTIONS(3495), + [anon_sym_c_ushort] = ACTIONS(3495), + [anon_sym_c_int] = ACTIONS(3495), + [anon_sym_c_uint] = ACTIONS(3495), + [anon_sym_c_long] = ACTIONS(3495), + [anon_sym_c_ulong] = ACTIONS(3495), + [anon_sym_c_longlong] = ACTIONS(3495), + [anon_sym_c_ulonglong] = ACTIONS(3495), + [anon_sym_c_float] = ACTIONS(3495), + [anon_sym_c_double] = ACTIONS(3495), + [anon_sym_c_longdouble] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3495), + [anon_sym_yield] = ACTIONS(3495), + [anon_sym_break] = ACTIONS(3495), + [anon_sym_continue] = ACTIONS(3495), + [anon_sym_defer] = ACTIONS(3495), + [anon_sym_errdefer] = ACTIONS(3495), + [anon_sym_if] = ACTIONS(3495), + [anon_sym_else] = ACTIONS(3495), + [anon_sym_while] = ACTIONS(3495), + [anon_sym_expand] = ACTIONS(3495), + [anon_sym_for] = ACTIONS(3495), + [anon_sym_match] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_TILDE] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_true] = ACTIONS(3495), + [anon_sym_false] = ACTIONS(3495), + [sym_none] = ACTIONS(3495), + [sym_undefined] = ACTIONS(3495), + [sym_sink] = ACTIONS(3495), + [sym_integer] = ACTIONS(3495), + [sym_float] = ACTIONS(3493), + [anon_sym_DQUOTE] = ACTIONS(3493), + [sym_multiline_string] = ACTIONS(3493), + [sym_character] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3493), + }, + [STATE(1558)] = { + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3499), + [anon_sym_import] = ACTIONS(3499), + [anon_sym_test] = ACTIONS(3499), + [anon_sym_hide] = ACTIONS(3499), + [anon_sym_func] = ACTIONS(3499), + [anon_sym_BANG] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_RPAREN] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3497), + [anon_sym_RBRACE] = ACTIONS(3497), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_DOLLAR] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_void] = ACTIONS(3499), + [anon_sym_anyopaque] = ACTIONS(3499), + [anon_sym_bool] = ACTIONS(3499), + [anon_sym_int] = ACTIONS(3499), + [anon_sym_uint] = ACTIONS(3499), + [anon_sym_float] = ACTIONS(3499), + [anon_sym_range] = ACTIONS(3499), + [anon_sym_i8] = ACTIONS(3499), + [anon_sym_i16] = ACTIONS(3499), + [anon_sym_i32] = ACTIONS(3499), + [anon_sym_i64] = ACTIONS(3499), + [anon_sym_u8] = ACTIONS(3499), + [anon_sym_u16] = ACTIONS(3499), + [anon_sym_u32] = ACTIONS(3499), + [anon_sym_u64] = ACTIONS(3499), + [anon_sym_isize] = ACTIONS(3499), + [anon_sym_usize] = ACTIONS(3499), + [anon_sym_f32] = ACTIONS(3499), + [anon_sym_f64] = ACTIONS(3499), + [anon_sym_c_char] = ACTIONS(3499), + [anon_sym_c_schar] = ACTIONS(3499), + [anon_sym_c_uchar] = ACTIONS(3499), + [anon_sym_c_short] = ACTIONS(3499), + [anon_sym_c_ushort] = ACTIONS(3499), + [anon_sym_c_int] = ACTIONS(3499), + [anon_sym_c_uint] = ACTIONS(3499), + [anon_sym_c_long] = ACTIONS(3499), + [anon_sym_c_ulong] = ACTIONS(3499), + [anon_sym_c_longlong] = ACTIONS(3499), + [anon_sym_c_ulonglong] = ACTIONS(3499), + [anon_sym_c_float] = ACTIONS(3499), + [anon_sym_c_double] = ACTIONS(3499), + [anon_sym_c_longdouble] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_yield] = ACTIONS(3499), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3499), + [anon_sym_defer] = ACTIONS(3499), + [anon_sym_errdefer] = ACTIONS(3499), + [anon_sym_if] = ACTIONS(3499), + [anon_sym_else] = ACTIONS(3499), + [anon_sym_while] = ACTIONS(3499), + [anon_sym_expand] = ACTIONS(3499), + [anon_sym_for] = ACTIONS(3499), + [anon_sym_match] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_true] = ACTIONS(3499), + [anon_sym_false] = ACTIONS(3499), + [sym_none] = ACTIONS(3499), + [sym_undefined] = ACTIONS(3499), + [sym_sink] = ACTIONS(3499), + [sym_integer] = ACTIONS(3499), + [sym_float] = ACTIONS(3497), + [anon_sym_DQUOTE] = ACTIONS(3497), + [sym_multiline_string] = ACTIONS(3497), + [sym_character] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3497), + }, + [STATE(1559)] = { + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3503), + [anon_sym_import] = ACTIONS(3503), + [anon_sym_test] = ACTIONS(3503), + [anon_sym_hide] = ACTIONS(3503), + [anon_sym_func] = ACTIONS(3503), + [anon_sym_BANG] = ACTIONS(3501), + [anon_sym_struct] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3501), + [anon_sym_RPAREN] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_DOLLAR] = ACTIONS(3501), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_void] = ACTIONS(3503), + [anon_sym_anyopaque] = ACTIONS(3503), + [anon_sym_bool] = ACTIONS(3503), + [anon_sym_int] = ACTIONS(3503), + [anon_sym_uint] = ACTIONS(3503), + [anon_sym_float] = ACTIONS(3503), + [anon_sym_range] = ACTIONS(3503), + [anon_sym_i8] = ACTIONS(3503), + [anon_sym_i16] = ACTIONS(3503), + [anon_sym_i32] = ACTIONS(3503), + [anon_sym_i64] = ACTIONS(3503), + [anon_sym_u8] = ACTIONS(3503), + [anon_sym_u16] = ACTIONS(3503), + [anon_sym_u32] = ACTIONS(3503), + [anon_sym_u64] = ACTIONS(3503), + [anon_sym_isize] = ACTIONS(3503), + [anon_sym_usize] = ACTIONS(3503), + [anon_sym_f32] = ACTIONS(3503), + [anon_sym_f64] = ACTIONS(3503), + [anon_sym_c_char] = ACTIONS(3503), + [anon_sym_c_schar] = ACTIONS(3503), + [anon_sym_c_uchar] = ACTIONS(3503), + [anon_sym_c_short] = ACTIONS(3503), + [anon_sym_c_ushort] = ACTIONS(3503), + [anon_sym_c_int] = ACTIONS(3503), + [anon_sym_c_uint] = ACTIONS(3503), + [anon_sym_c_long] = ACTIONS(3503), + [anon_sym_c_ulong] = ACTIONS(3503), + [anon_sym_c_longlong] = ACTIONS(3503), + [anon_sym_c_ulonglong] = ACTIONS(3503), + [anon_sym_c_float] = ACTIONS(3503), + [anon_sym_c_double] = ACTIONS(3503), + [anon_sym_c_longdouble] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3503), + [anon_sym_yield] = ACTIONS(3503), + [anon_sym_break] = ACTIONS(3503), + [anon_sym_continue] = ACTIONS(3503), + [anon_sym_defer] = ACTIONS(3503), + [anon_sym_errdefer] = ACTIONS(3503), + [anon_sym_if] = ACTIONS(3503), + [anon_sym_else] = ACTIONS(3503), + [anon_sym_while] = ACTIONS(3503), + [anon_sym_expand] = ACTIONS(3503), + [anon_sym_for] = ACTIONS(3503), + [anon_sym_match] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_TILDE] = ACTIONS(3501), + [anon_sym_try] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_true] = ACTIONS(3503), + [anon_sym_false] = ACTIONS(3503), + [sym_none] = ACTIONS(3503), + [sym_undefined] = ACTIONS(3503), + [sym_sink] = ACTIONS(3503), + [sym_integer] = ACTIONS(3503), + [sym_float] = ACTIONS(3501), + [anon_sym_DQUOTE] = ACTIONS(3501), + [sym_multiline_string] = ACTIONS(3501), + [sym_character] = ACTIONS(3501), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3501), + }, + [STATE(1560)] = { + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3507), + [anon_sym_import] = ACTIONS(3507), + [anon_sym_test] = ACTIONS(3507), + [anon_sym_hide] = ACTIONS(3507), + [anon_sym_func] = ACTIONS(3507), + [anon_sym_BANG] = ACTIONS(3505), + [anon_sym_struct] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3505), + [anon_sym_RPAREN] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3505), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_DOLLAR] = ACTIONS(3505), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_void] = ACTIONS(3507), + [anon_sym_anyopaque] = ACTIONS(3507), + [anon_sym_bool] = ACTIONS(3507), + [anon_sym_int] = ACTIONS(3507), + [anon_sym_uint] = ACTIONS(3507), + [anon_sym_float] = ACTIONS(3507), + [anon_sym_range] = ACTIONS(3507), + [anon_sym_i8] = ACTIONS(3507), + [anon_sym_i16] = ACTIONS(3507), + [anon_sym_i32] = ACTIONS(3507), + [anon_sym_i64] = ACTIONS(3507), + [anon_sym_u8] = ACTIONS(3507), + [anon_sym_u16] = ACTIONS(3507), + [anon_sym_u32] = ACTIONS(3507), + [anon_sym_u64] = ACTIONS(3507), + [anon_sym_isize] = ACTIONS(3507), + [anon_sym_usize] = ACTIONS(3507), + [anon_sym_f32] = ACTIONS(3507), + [anon_sym_f64] = ACTIONS(3507), + [anon_sym_c_char] = ACTIONS(3507), + [anon_sym_c_schar] = ACTIONS(3507), + [anon_sym_c_uchar] = ACTIONS(3507), + [anon_sym_c_short] = ACTIONS(3507), + [anon_sym_c_ushort] = ACTIONS(3507), + [anon_sym_c_int] = ACTIONS(3507), + [anon_sym_c_uint] = ACTIONS(3507), + [anon_sym_c_long] = ACTIONS(3507), + [anon_sym_c_ulong] = ACTIONS(3507), + [anon_sym_c_longlong] = ACTIONS(3507), + [anon_sym_c_ulonglong] = ACTIONS(3507), + [anon_sym_c_float] = ACTIONS(3507), + [anon_sym_c_double] = ACTIONS(3507), + [anon_sym_c_longdouble] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3507), + [anon_sym_yield] = ACTIONS(3507), + [anon_sym_break] = ACTIONS(3507), + [anon_sym_continue] = ACTIONS(3507), + [anon_sym_defer] = ACTIONS(3507), + [anon_sym_errdefer] = ACTIONS(3507), + [anon_sym_if] = ACTIONS(3507), + [anon_sym_else] = ACTIONS(3507), + [anon_sym_while] = ACTIONS(3507), + [anon_sym_expand] = ACTIONS(3507), + [anon_sym_for] = ACTIONS(3507), + [anon_sym_match] = ACTIONS(3507), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_try] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_true] = ACTIONS(3507), + [anon_sym_false] = ACTIONS(3507), + [sym_none] = ACTIONS(3507), + [sym_undefined] = ACTIONS(3507), + [sym_sink] = ACTIONS(3507), + [sym_integer] = ACTIONS(3507), + [sym_float] = ACTIONS(3505), + [anon_sym_DQUOTE] = ACTIONS(3505), + [sym_multiline_string] = ACTIONS(3505), + [sym_character] = ACTIONS(3505), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3505), + }, + [STATE(1561)] = { + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3511), + [anon_sym_import] = ACTIONS(3511), + [anon_sym_test] = ACTIONS(3511), + [anon_sym_hide] = ACTIONS(3511), + [anon_sym_func] = ACTIONS(3511), + [anon_sym_BANG] = ACTIONS(3509), + [anon_sym_struct] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3509), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_void] = ACTIONS(3511), + [anon_sym_anyopaque] = ACTIONS(3511), + [anon_sym_bool] = ACTIONS(3511), + [anon_sym_int] = ACTIONS(3511), + [anon_sym_uint] = ACTIONS(3511), + [anon_sym_float] = ACTIONS(3511), + [anon_sym_range] = ACTIONS(3511), + [anon_sym_i8] = ACTIONS(3511), + [anon_sym_i16] = ACTIONS(3511), + [anon_sym_i32] = ACTIONS(3511), + [anon_sym_i64] = ACTIONS(3511), + [anon_sym_u8] = ACTIONS(3511), + [anon_sym_u16] = ACTIONS(3511), + [anon_sym_u32] = ACTIONS(3511), + [anon_sym_u64] = ACTIONS(3511), + [anon_sym_isize] = ACTIONS(3511), + [anon_sym_usize] = ACTIONS(3511), + [anon_sym_f32] = ACTIONS(3511), + [anon_sym_f64] = ACTIONS(3511), + [anon_sym_c_char] = ACTIONS(3511), + [anon_sym_c_schar] = ACTIONS(3511), + [anon_sym_c_uchar] = ACTIONS(3511), + [anon_sym_c_short] = ACTIONS(3511), + [anon_sym_c_ushort] = ACTIONS(3511), + [anon_sym_c_int] = ACTIONS(3511), + [anon_sym_c_uint] = ACTIONS(3511), + [anon_sym_c_long] = ACTIONS(3511), + [anon_sym_c_ulong] = ACTIONS(3511), + [anon_sym_c_longlong] = ACTIONS(3511), + [anon_sym_c_ulonglong] = ACTIONS(3511), + [anon_sym_c_float] = ACTIONS(3511), + [anon_sym_c_double] = ACTIONS(3511), + [anon_sym_c_longdouble] = ACTIONS(3511), + [anon_sym_return] = ACTIONS(3511), + [anon_sym_yield] = ACTIONS(3511), + [anon_sym_break] = ACTIONS(3511), + [anon_sym_continue] = ACTIONS(3511), + [anon_sym_defer] = ACTIONS(3511), + [anon_sym_errdefer] = ACTIONS(3511), + [anon_sym_if] = ACTIONS(3511), + [anon_sym_else] = ACTIONS(3511), + [anon_sym_while] = ACTIONS(3511), + [anon_sym_expand] = ACTIONS(3511), + [anon_sym_for] = ACTIONS(3511), + [anon_sym_match] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_TILDE] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(3511), + [anon_sym_false] = ACTIONS(3511), + [sym_none] = ACTIONS(3511), + [sym_undefined] = ACTIONS(3511), + [sym_sink] = ACTIONS(3511), + [sym_integer] = ACTIONS(3511), + [sym_float] = ACTIONS(3509), + [anon_sym_DQUOTE] = ACTIONS(3509), + [sym_multiline_string] = ACTIONS(3509), + [sym_character] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3509), + }, + [STATE(1562)] = { + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3515), + [anon_sym_import] = ACTIONS(3515), + [anon_sym_test] = ACTIONS(3515), + [anon_sym_hide] = ACTIONS(3515), + [anon_sym_func] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3513), + [anon_sym_struct] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3513), + [anon_sym_RPAREN] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3513), + [anon_sym_RBRACE] = ACTIONS(3513), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3513), + [anon_sym_void] = ACTIONS(3515), + [anon_sym_anyopaque] = ACTIONS(3515), + [anon_sym_bool] = ACTIONS(3515), + [anon_sym_int] = ACTIONS(3515), + [anon_sym_uint] = ACTIONS(3515), + [anon_sym_float] = ACTIONS(3515), + [anon_sym_range] = ACTIONS(3515), + [anon_sym_i8] = ACTIONS(3515), + [anon_sym_i16] = ACTIONS(3515), + [anon_sym_i32] = ACTIONS(3515), + [anon_sym_i64] = ACTIONS(3515), + [anon_sym_u8] = ACTIONS(3515), + [anon_sym_u16] = ACTIONS(3515), + [anon_sym_u32] = ACTIONS(3515), + [anon_sym_u64] = ACTIONS(3515), + [anon_sym_isize] = ACTIONS(3515), + [anon_sym_usize] = ACTIONS(3515), + [anon_sym_f32] = ACTIONS(3515), + [anon_sym_f64] = ACTIONS(3515), + [anon_sym_c_char] = ACTIONS(3515), + [anon_sym_c_schar] = ACTIONS(3515), + [anon_sym_c_uchar] = ACTIONS(3515), + [anon_sym_c_short] = ACTIONS(3515), + [anon_sym_c_ushort] = ACTIONS(3515), + [anon_sym_c_int] = ACTIONS(3515), + [anon_sym_c_uint] = ACTIONS(3515), + [anon_sym_c_long] = ACTIONS(3515), + [anon_sym_c_ulong] = ACTIONS(3515), + [anon_sym_c_longlong] = ACTIONS(3515), + [anon_sym_c_ulonglong] = ACTIONS(3515), + [anon_sym_c_float] = ACTIONS(3515), + [anon_sym_c_double] = ACTIONS(3515), + [anon_sym_c_longdouble] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3515), + [anon_sym_yield] = ACTIONS(3515), + [anon_sym_break] = ACTIONS(3515), + [anon_sym_continue] = ACTIONS(3515), + [anon_sym_defer] = ACTIONS(3515), + [anon_sym_errdefer] = ACTIONS(3515), + [anon_sym_if] = ACTIONS(3515), + [anon_sym_else] = ACTIONS(3515), + [anon_sym_while] = ACTIONS(3515), + [anon_sym_expand] = ACTIONS(3515), + [anon_sym_for] = ACTIONS(3515), + [anon_sym_match] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3513), + [anon_sym_TILDE] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [sym_none] = ACTIONS(3515), + [sym_undefined] = ACTIONS(3515), + [sym_sink] = ACTIONS(3515), + [sym_integer] = ACTIONS(3515), + [sym_float] = ACTIONS(3513), + [anon_sym_DQUOTE] = ACTIONS(3513), + [sym_multiline_string] = ACTIONS(3513), + [sym_character] = ACTIONS(3513), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3513), + }, + [STATE(1563)] = { + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3519), + [anon_sym_import] = ACTIONS(3519), + [anon_sym_test] = ACTIONS(3519), + [anon_sym_hide] = ACTIONS(3519), + [anon_sym_func] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3517), + [anon_sym_struct] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_RPAREN] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3517), + [anon_sym_RBRACE] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_DOLLAR] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3517), + [anon_sym_void] = ACTIONS(3519), + [anon_sym_anyopaque] = ACTIONS(3519), + [anon_sym_bool] = ACTIONS(3519), + [anon_sym_int] = ACTIONS(3519), + [anon_sym_uint] = ACTIONS(3519), + [anon_sym_float] = ACTIONS(3519), + [anon_sym_range] = ACTIONS(3519), + [anon_sym_i8] = ACTIONS(3519), + [anon_sym_i16] = ACTIONS(3519), + [anon_sym_i32] = ACTIONS(3519), + [anon_sym_i64] = ACTIONS(3519), + [anon_sym_u8] = ACTIONS(3519), + [anon_sym_u16] = ACTIONS(3519), + [anon_sym_u32] = ACTIONS(3519), + [anon_sym_u64] = ACTIONS(3519), + [anon_sym_isize] = ACTIONS(3519), + [anon_sym_usize] = ACTIONS(3519), + [anon_sym_f32] = ACTIONS(3519), + [anon_sym_f64] = ACTIONS(3519), + [anon_sym_c_char] = ACTIONS(3519), + [anon_sym_c_schar] = ACTIONS(3519), + [anon_sym_c_uchar] = ACTIONS(3519), + [anon_sym_c_short] = ACTIONS(3519), + [anon_sym_c_ushort] = ACTIONS(3519), + [anon_sym_c_int] = ACTIONS(3519), + [anon_sym_c_uint] = ACTIONS(3519), + [anon_sym_c_long] = ACTIONS(3519), + [anon_sym_c_ulong] = ACTIONS(3519), + [anon_sym_c_longlong] = ACTIONS(3519), + [anon_sym_c_ulonglong] = ACTIONS(3519), + [anon_sym_c_float] = ACTIONS(3519), + [anon_sym_c_double] = ACTIONS(3519), + [anon_sym_c_longdouble] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3519), + [anon_sym_yield] = ACTIONS(3519), + [anon_sym_break] = ACTIONS(3519), + [anon_sym_continue] = ACTIONS(3519), + [anon_sym_defer] = ACTIONS(3519), + [anon_sym_errdefer] = ACTIONS(3519), + [anon_sym_if] = ACTIONS(3519), + [anon_sym_else] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), + [anon_sym_expand] = ACTIONS(3519), + [anon_sym_for] = ACTIONS(3519), + [anon_sym_match] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3517), + [anon_sym_TILDE] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3519), + [anon_sym_DOT] = ACTIONS(3517), + [anon_sym_true] = ACTIONS(3519), + [anon_sym_false] = ACTIONS(3519), + [sym_none] = ACTIONS(3519), + [sym_undefined] = ACTIONS(3519), + [sym_sink] = ACTIONS(3519), + [sym_integer] = ACTIONS(3519), + [sym_float] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(3517), + [sym_multiline_string] = ACTIONS(3517), + [sym_character] = ACTIONS(3517), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3517), + }, + [STATE(1564)] = { + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3523), + [anon_sym_import] = ACTIONS(3523), + [anon_sym_test] = ACTIONS(3523), + [anon_sym_hide] = ACTIONS(3523), + [anon_sym_func] = ACTIONS(3523), + [anon_sym_BANG] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3521), + [anon_sym_RPAREN] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(3521), + [anon_sym_LBRACK] = ACTIONS(3521), + [anon_sym_void] = ACTIONS(3523), + [anon_sym_anyopaque] = ACTIONS(3523), + [anon_sym_bool] = ACTIONS(3523), + [anon_sym_int] = ACTIONS(3523), + [anon_sym_uint] = ACTIONS(3523), + [anon_sym_float] = ACTIONS(3523), + [anon_sym_range] = ACTIONS(3523), + [anon_sym_i8] = ACTIONS(3523), + [anon_sym_i16] = ACTIONS(3523), + [anon_sym_i32] = ACTIONS(3523), + [anon_sym_i64] = ACTIONS(3523), + [anon_sym_u8] = ACTIONS(3523), + [anon_sym_u16] = ACTIONS(3523), + [anon_sym_u32] = ACTIONS(3523), + [anon_sym_u64] = ACTIONS(3523), + [anon_sym_isize] = ACTIONS(3523), + [anon_sym_usize] = ACTIONS(3523), + [anon_sym_f32] = ACTIONS(3523), + [anon_sym_f64] = ACTIONS(3523), + [anon_sym_c_char] = ACTIONS(3523), + [anon_sym_c_schar] = ACTIONS(3523), + [anon_sym_c_uchar] = ACTIONS(3523), + [anon_sym_c_short] = ACTIONS(3523), + [anon_sym_c_ushort] = ACTIONS(3523), + [anon_sym_c_int] = ACTIONS(3523), + [anon_sym_c_uint] = ACTIONS(3523), + [anon_sym_c_long] = ACTIONS(3523), + [anon_sym_c_ulong] = ACTIONS(3523), + [anon_sym_c_longlong] = ACTIONS(3523), + [anon_sym_c_ulonglong] = ACTIONS(3523), + [anon_sym_c_float] = ACTIONS(3523), + [anon_sym_c_double] = ACTIONS(3523), + [anon_sym_c_longdouble] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3523), + [anon_sym_yield] = ACTIONS(3523), + [anon_sym_break] = ACTIONS(3523), + [anon_sym_continue] = ACTIONS(3523), + [anon_sym_defer] = ACTIONS(3523), + [anon_sym_errdefer] = ACTIONS(3523), + [anon_sym_if] = ACTIONS(3523), + [anon_sym_else] = ACTIONS(3523), + [anon_sym_while] = ACTIONS(3523), + [anon_sym_expand] = ACTIONS(3523), + [anon_sym_for] = ACTIONS(3523), + [anon_sym_match] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_TILDE] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3523), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_true] = ACTIONS(3523), + [anon_sym_false] = ACTIONS(3523), + [sym_none] = ACTIONS(3523), + [sym_undefined] = ACTIONS(3523), + [sym_sink] = ACTIONS(3523), + [sym_integer] = ACTIONS(3523), + [sym_float] = ACTIONS(3521), + [anon_sym_DQUOTE] = ACTIONS(3521), + [sym_multiline_string] = ACTIONS(3521), + [sym_character] = ACTIONS(3521), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3521), + }, + [STATE(1565)] = { + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3527), + [anon_sym_import] = ACTIONS(3527), + [anon_sym_test] = ACTIONS(3527), + [anon_sym_hide] = ACTIONS(3527), + [anon_sym_func] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3525), + [anon_sym_struct] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3525), + [anon_sym_RBRACE] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_DOLLAR] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3525), + [anon_sym_void] = ACTIONS(3527), + [anon_sym_anyopaque] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_int] = ACTIONS(3527), + [anon_sym_uint] = ACTIONS(3527), + [anon_sym_float] = ACTIONS(3527), + [anon_sym_range] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_c_char] = ACTIONS(3527), + [anon_sym_c_schar] = ACTIONS(3527), + [anon_sym_c_uchar] = ACTIONS(3527), + [anon_sym_c_short] = ACTIONS(3527), + [anon_sym_c_ushort] = ACTIONS(3527), + [anon_sym_c_int] = ACTIONS(3527), + [anon_sym_c_uint] = ACTIONS(3527), + [anon_sym_c_long] = ACTIONS(3527), + [anon_sym_c_ulong] = ACTIONS(3527), + [anon_sym_c_longlong] = ACTIONS(3527), + [anon_sym_c_ulonglong] = ACTIONS(3527), + [anon_sym_c_float] = ACTIONS(3527), + [anon_sym_c_double] = ACTIONS(3527), + [anon_sym_c_longdouble] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3527), + [anon_sym_yield] = ACTIONS(3527), + [anon_sym_break] = ACTIONS(3527), + [anon_sym_continue] = ACTIONS(3527), + [anon_sym_defer] = ACTIONS(3527), + [anon_sym_errdefer] = ACTIONS(3527), + [anon_sym_if] = ACTIONS(3527), + [anon_sym_else] = ACTIONS(3527), + [anon_sym_while] = ACTIONS(3527), + [anon_sym_expand] = ACTIONS(3527), + [anon_sym_for] = ACTIONS(3527), + [anon_sym_match] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_TILDE] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3527), + [anon_sym_DOT] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3527), + [anon_sym_false] = ACTIONS(3527), + [sym_none] = ACTIONS(3527), + [sym_undefined] = ACTIONS(3527), + [sym_sink] = ACTIONS(3527), + [sym_integer] = ACTIONS(3527), + [sym_float] = ACTIONS(3525), + [anon_sym_DQUOTE] = ACTIONS(3525), + [sym_multiline_string] = ACTIONS(3525), + [sym_character] = ACTIONS(3525), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3525), + }, + [STATE(1566)] = { + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3531), + [anon_sym_import] = ACTIONS(3531), + [anon_sym_test] = ACTIONS(3531), + [anon_sym_hide] = ACTIONS(3531), + [anon_sym_func] = ACTIONS(3531), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_struct] = ACTIONS(3531), + [anon_sym_LPAREN] = ACTIONS(3529), + [anon_sym_RPAREN] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3529), + [anon_sym_RBRACE] = ACTIONS(3529), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3529), + [anon_sym_void] = ACTIONS(3531), + [anon_sym_anyopaque] = ACTIONS(3531), + [anon_sym_bool] = ACTIONS(3531), + [anon_sym_int] = ACTIONS(3531), + [anon_sym_uint] = ACTIONS(3531), + [anon_sym_float] = ACTIONS(3531), + [anon_sym_range] = ACTIONS(3531), + [anon_sym_i8] = ACTIONS(3531), + [anon_sym_i16] = ACTIONS(3531), + [anon_sym_i32] = ACTIONS(3531), + [anon_sym_i64] = ACTIONS(3531), + [anon_sym_u8] = ACTIONS(3531), + [anon_sym_u16] = ACTIONS(3531), + [anon_sym_u32] = ACTIONS(3531), + [anon_sym_u64] = ACTIONS(3531), + [anon_sym_isize] = ACTIONS(3531), + [anon_sym_usize] = ACTIONS(3531), + [anon_sym_f32] = ACTIONS(3531), + [anon_sym_f64] = ACTIONS(3531), + [anon_sym_c_char] = ACTIONS(3531), + [anon_sym_c_schar] = ACTIONS(3531), + [anon_sym_c_uchar] = ACTIONS(3531), + [anon_sym_c_short] = ACTIONS(3531), + [anon_sym_c_ushort] = ACTIONS(3531), + [anon_sym_c_int] = ACTIONS(3531), + [anon_sym_c_uint] = ACTIONS(3531), + [anon_sym_c_long] = ACTIONS(3531), + [anon_sym_c_ulong] = ACTIONS(3531), + [anon_sym_c_longlong] = ACTIONS(3531), + [anon_sym_c_ulonglong] = ACTIONS(3531), + [anon_sym_c_float] = ACTIONS(3531), + [anon_sym_c_double] = ACTIONS(3531), + [anon_sym_c_longdouble] = ACTIONS(3531), + [anon_sym_return] = ACTIONS(3531), + [anon_sym_yield] = ACTIONS(3531), + [anon_sym_break] = ACTIONS(3531), + [anon_sym_continue] = ACTIONS(3531), + [anon_sym_defer] = ACTIONS(3531), + [anon_sym_errdefer] = ACTIONS(3531), + [anon_sym_if] = ACTIONS(3531), + [anon_sym_else] = ACTIONS(3531), + [anon_sym_while] = ACTIONS(3531), + [anon_sym_expand] = ACTIONS(3531), + [anon_sym_for] = ACTIONS(3531), + [anon_sym_match] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3529), + [anon_sym_TILDE] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3531), + [anon_sym_DOT] = ACTIONS(3529), + [anon_sym_true] = ACTIONS(3531), + [anon_sym_false] = ACTIONS(3531), + [sym_none] = ACTIONS(3531), + [sym_undefined] = ACTIONS(3531), + [sym_sink] = ACTIONS(3531), + [sym_integer] = ACTIONS(3531), + [sym_float] = ACTIONS(3529), + [anon_sym_DQUOTE] = ACTIONS(3529), + [sym_multiline_string] = ACTIONS(3529), + [sym_character] = ACTIONS(3529), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3529), + }, + [STATE(1567)] = { + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3535), + [anon_sym_import] = ACTIONS(3535), + [anon_sym_test] = ACTIONS(3535), + [anon_sym_hide] = ACTIONS(3535), + [anon_sym_func] = ACTIONS(3535), + [anon_sym_BANG] = ACTIONS(3533), + [anon_sym_struct] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3533), + [anon_sym_RPAREN] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3533), + [anon_sym_RBRACE] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_DOLLAR] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3533), + [anon_sym_void] = ACTIONS(3535), + [anon_sym_anyopaque] = ACTIONS(3535), + [anon_sym_bool] = ACTIONS(3535), + [anon_sym_int] = ACTIONS(3535), + [anon_sym_uint] = ACTIONS(3535), + [anon_sym_float] = ACTIONS(3535), + [anon_sym_range] = ACTIONS(3535), + [anon_sym_i8] = ACTIONS(3535), + [anon_sym_i16] = ACTIONS(3535), + [anon_sym_i32] = ACTIONS(3535), + [anon_sym_i64] = ACTIONS(3535), + [anon_sym_u8] = ACTIONS(3535), + [anon_sym_u16] = ACTIONS(3535), + [anon_sym_u32] = ACTIONS(3535), + [anon_sym_u64] = ACTIONS(3535), + [anon_sym_isize] = ACTIONS(3535), + [anon_sym_usize] = ACTIONS(3535), + [anon_sym_f32] = ACTIONS(3535), + [anon_sym_f64] = ACTIONS(3535), + [anon_sym_c_char] = ACTIONS(3535), + [anon_sym_c_schar] = ACTIONS(3535), + [anon_sym_c_uchar] = ACTIONS(3535), + [anon_sym_c_short] = ACTIONS(3535), + [anon_sym_c_ushort] = ACTIONS(3535), + [anon_sym_c_int] = ACTIONS(3535), + [anon_sym_c_uint] = ACTIONS(3535), + [anon_sym_c_long] = ACTIONS(3535), + [anon_sym_c_ulong] = ACTIONS(3535), + [anon_sym_c_longlong] = ACTIONS(3535), + [anon_sym_c_ulonglong] = ACTIONS(3535), + [anon_sym_c_float] = ACTIONS(3535), + [anon_sym_c_double] = ACTIONS(3535), + [anon_sym_c_longdouble] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3535), + [anon_sym_yield] = ACTIONS(3535), + [anon_sym_break] = ACTIONS(3535), + [anon_sym_continue] = ACTIONS(3535), + [anon_sym_defer] = ACTIONS(3535), + [anon_sym_errdefer] = ACTIONS(3535), + [anon_sym_if] = ACTIONS(3535), + [anon_sym_else] = ACTIONS(3535), + [anon_sym_while] = ACTIONS(3535), + [anon_sym_expand] = ACTIONS(3535), + [anon_sym_for] = ACTIONS(3535), + [anon_sym_match] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3533), + [anon_sym_TILDE] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3535), + [anon_sym_DOT] = ACTIONS(3533), + [anon_sym_true] = ACTIONS(3535), + [anon_sym_false] = ACTIONS(3535), + [sym_none] = ACTIONS(3535), + [sym_undefined] = ACTIONS(3535), + [sym_sink] = ACTIONS(3535), + [sym_integer] = ACTIONS(3535), + [sym_float] = ACTIONS(3533), + [anon_sym_DQUOTE] = ACTIONS(3533), + [sym_multiline_string] = ACTIONS(3533), + [sym_character] = ACTIONS(3533), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3533), + }, + [STATE(1568)] = { + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3539), + [anon_sym_import] = ACTIONS(3539), + [anon_sym_test] = ACTIONS(3539), + [anon_sym_hide] = ACTIONS(3539), + [anon_sym_func] = ACTIONS(3539), + [anon_sym_BANG] = ACTIONS(3537), + [anon_sym_struct] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3537), + [anon_sym_RPAREN] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3537), + [anon_sym_RBRACE] = ACTIONS(3537), + [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_DOLLAR] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3537), + [anon_sym_void] = ACTIONS(3539), + [anon_sym_anyopaque] = ACTIONS(3539), + [anon_sym_bool] = ACTIONS(3539), + [anon_sym_int] = ACTIONS(3539), + [anon_sym_uint] = ACTIONS(3539), + [anon_sym_float] = ACTIONS(3539), + [anon_sym_range] = ACTIONS(3539), + [anon_sym_i8] = ACTIONS(3539), + [anon_sym_i16] = ACTIONS(3539), + [anon_sym_i32] = ACTIONS(3539), + [anon_sym_i64] = ACTIONS(3539), + [anon_sym_u8] = ACTIONS(3539), + [anon_sym_u16] = ACTIONS(3539), + [anon_sym_u32] = ACTIONS(3539), + [anon_sym_u64] = ACTIONS(3539), + [anon_sym_isize] = ACTIONS(3539), + [anon_sym_usize] = ACTIONS(3539), + [anon_sym_f32] = ACTIONS(3539), + [anon_sym_f64] = ACTIONS(3539), + [anon_sym_c_char] = ACTIONS(3539), + [anon_sym_c_schar] = ACTIONS(3539), + [anon_sym_c_uchar] = ACTIONS(3539), + [anon_sym_c_short] = ACTIONS(3539), + [anon_sym_c_ushort] = ACTIONS(3539), + [anon_sym_c_int] = ACTIONS(3539), + [anon_sym_c_uint] = ACTIONS(3539), + [anon_sym_c_long] = ACTIONS(3539), + [anon_sym_c_ulong] = ACTIONS(3539), + [anon_sym_c_longlong] = ACTIONS(3539), + [anon_sym_c_ulonglong] = ACTIONS(3539), + [anon_sym_c_float] = ACTIONS(3539), + [anon_sym_c_double] = ACTIONS(3539), + [anon_sym_c_longdouble] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3539), + [anon_sym_yield] = ACTIONS(3539), + [anon_sym_break] = ACTIONS(3539), + [anon_sym_continue] = ACTIONS(3539), + [anon_sym_defer] = ACTIONS(3539), + [anon_sym_errdefer] = ACTIONS(3539), + [anon_sym_if] = ACTIONS(3539), + [anon_sym_else] = ACTIONS(3539), + [anon_sym_while] = ACTIONS(3539), + [anon_sym_expand] = ACTIONS(3539), + [anon_sym_for] = ACTIONS(3539), + [anon_sym_match] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3537), + [anon_sym_TILDE] = ACTIONS(3537), + [anon_sym_try] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3537), + [anon_sym_true] = ACTIONS(3539), + [anon_sym_false] = ACTIONS(3539), + [sym_none] = ACTIONS(3539), + [sym_undefined] = ACTIONS(3539), + [sym_sink] = ACTIONS(3539), + [sym_integer] = ACTIONS(3539), + [sym_float] = ACTIONS(3537), + [anon_sym_DQUOTE] = ACTIONS(3537), + [sym_multiline_string] = ACTIONS(3537), + [sym_character] = ACTIONS(3537), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3537), + }, + [STATE(1569)] = { + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3543), + [anon_sym_import] = ACTIONS(3543), + [anon_sym_test] = ACTIONS(3543), + [anon_sym_hide] = ACTIONS(3543), + [anon_sym_func] = ACTIONS(3543), + [anon_sym_BANG] = ACTIONS(3541), + [anon_sym_struct] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3541), + [anon_sym_RPAREN] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3541), + [anon_sym_RBRACE] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_DOLLAR] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3541), + [anon_sym_void] = ACTIONS(3543), + [anon_sym_anyopaque] = ACTIONS(3543), + [anon_sym_bool] = ACTIONS(3543), + [anon_sym_int] = ACTIONS(3543), + [anon_sym_uint] = ACTIONS(3543), + [anon_sym_float] = ACTIONS(3543), + [anon_sym_range] = ACTIONS(3543), + [anon_sym_i8] = ACTIONS(3543), + [anon_sym_i16] = ACTIONS(3543), + [anon_sym_i32] = ACTIONS(3543), + [anon_sym_i64] = ACTIONS(3543), + [anon_sym_u8] = ACTIONS(3543), + [anon_sym_u16] = ACTIONS(3543), + [anon_sym_u32] = ACTIONS(3543), + [anon_sym_u64] = ACTIONS(3543), + [anon_sym_isize] = ACTIONS(3543), + [anon_sym_usize] = ACTIONS(3543), + [anon_sym_f32] = ACTIONS(3543), + [anon_sym_f64] = ACTIONS(3543), + [anon_sym_c_char] = ACTIONS(3543), + [anon_sym_c_schar] = ACTIONS(3543), + [anon_sym_c_uchar] = ACTIONS(3543), + [anon_sym_c_short] = ACTIONS(3543), + [anon_sym_c_ushort] = ACTIONS(3543), + [anon_sym_c_int] = ACTIONS(3543), + [anon_sym_c_uint] = ACTIONS(3543), + [anon_sym_c_long] = ACTIONS(3543), + [anon_sym_c_ulong] = ACTIONS(3543), + [anon_sym_c_longlong] = ACTIONS(3543), + [anon_sym_c_ulonglong] = ACTIONS(3543), + [anon_sym_c_float] = ACTIONS(3543), + [anon_sym_c_double] = ACTIONS(3543), + [anon_sym_c_longdouble] = ACTIONS(3543), + [anon_sym_return] = ACTIONS(3543), + [anon_sym_yield] = ACTIONS(3543), + [anon_sym_break] = ACTIONS(3543), + [anon_sym_continue] = ACTIONS(3543), + [anon_sym_defer] = ACTIONS(3543), + [anon_sym_errdefer] = ACTIONS(3543), + [anon_sym_if] = ACTIONS(3543), + [anon_sym_else] = ACTIONS(3543), + [anon_sym_while] = ACTIONS(3543), + [anon_sym_expand] = ACTIONS(3543), + [anon_sym_for] = ACTIONS(3543), + [anon_sym_match] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_TILDE] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3543), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_true] = ACTIONS(3543), + [anon_sym_false] = ACTIONS(3543), + [sym_none] = ACTIONS(3543), + [sym_undefined] = ACTIONS(3543), + [sym_sink] = ACTIONS(3543), + [sym_integer] = ACTIONS(3543), + [sym_float] = ACTIONS(3541), + [anon_sym_DQUOTE] = ACTIONS(3541), + [sym_multiline_string] = ACTIONS(3541), + [sym_character] = ACTIONS(3541), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3541), + }, + [STATE(1570)] = { + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3547), + [anon_sym_import] = ACTIONS(3547), + [anon_sym_test] = ACTIONS(3547), + [anon_sym_hide] = ACTIONS(3547), + [anon_sym_func] = ACTIONS(3547), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_struct] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3545), + [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3545), + [anon_sym_RBRACE] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_DOLLAR] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3545), + [anon_sym_void] = ACTIONS(3547), + [anon_sym_anyopaque] = ACTIONS(3547), + [anon_sym_bool] = ACTIONS(3547), + [anon_sym_int] = ACTIONS(3547), + [anon_sym_uint] = ACTIONS(3547), + [anon_sym_float] = ACTIONS(3547), + [anon_sym_range] = ACTIONS(3547), + [anon_sym_i8] = ACTIONS(3547), + [anon_sym_i16] = ACTIONS(3547), + [anon_sym_i32] = ACTIONS(3547), + [anon_sym_i64] = ACTIONS(3547), + [anon_sym_u8] = ACTIONS(3547), + [anon_sym_u16] = ACTIONS(3547), + [anon_sym_u32] = ACTIONS(3547), + [anon_sym_u64] = ACTIONS(3547), + [anon_sym_isize] = ACTIONS(3547), + [anon_sym_usize] = ACTIONS(3547), + [anon_sym_f32] = ACTIONS(3547), + [anon_sym_f64] = ACTIONS(3547), + [anon_sym_c_char] = ACTIONS(3547), + [anon_sym_c_schar] = ACTIONS(3547), + [anon_sym_c_uchar] = ACTIONS(3547), + [anon_sym_c_short] = ACTIONS(3547), + [anon_sym_c_ushort] = ACTIONS(3547), + [anon_sym_c_int] = ACTIONS(3547), + [anon_sym_c_uint] = ACTIONS(3547), + [anon_sym_c_long] = ACTIONS(3547), + [anon_sym_c_ulong] = ACTIONS(3547), + [anon_sym_c_longlong] = ACTIONS(3547), + [anon_sym_c_ulonglong] = ACTIONS(3547), + [anon_sym_c_float] = ACTIONS(3547), + [anon_sym_c_double] = ACTIONS(3547), + [anon_sym_c_longdouble] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3547), + [anon_sym_yield] = ACTIONS(3547), + [anon_sym_break] = ACTIONS(3547), + [anon_sym_continue] = ACTIONS(3547), + [anon_sym_defer] = ACTIONS(3547), + [anon_sym_errdefer] = ACTIONS(3547), + [anon_sym_if] = ACTIONS(3547), + [anon_sym_else] = ACTIONS(3547), + [anon_sym_while] = ACTIONS(3547), + [anon_sym_expand] = ACTIONS(3547), + [anon_sym_for] = ACTIONS(3547), + [anon_sym_match] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3547), + [anon_sym_DOT] = ACTIONS(3545), + [anon_sym_true] = ACTIONS(3547), + [anon_sym_false] = ACTIONS(3547), + [sym_none] = ACTIONS(3547), + [sym_undefined] = ACTIONS(3547), + [sym_sink] = ACTIONS(3547), + [sym_integer] = ACTIONS(3547), + [sym_float] = ACTIONS(3545), + [anon_sym_DQUOTE] = ACTIONS(3545), + [sym_multiline_string] = ACTIONS(3545), + [sym_character] = ACTIONS(3545), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3545), + }, + [STATE(1571)] = { + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3551), + [anon_sym_import] = ACTIONS(3551), + [anon_sym_test] = ACTIONS(3551), + [anon_sym_hide] = ACTIONS(3551), + [anon_sym_func] = ACTIONS(3551), + [anon_sym_BANG] = ACTIONS(3549), + [anon_sym_struct] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(3549), + [anon_sym_RBRACE] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_DOLLAR] = ACTIONS(3549), + [anon_sym_LBRACK] = ACTIONS(3549), + [anon_sym_void] = ACTIONS(3551), + [anon_sym_anyopaque] = ACTIONS(3551), + [anon_sym_bool] = ACTIONS(3551), + [anon_sym_int] = ACTIONS(3551), + [anon_sym_uint] = ACTIONS(3551), + [anon_sym_float] = ACTIONS(3551), + [anon_sym_range] = ACTIONS(3551), + [anon_sym_i8] = ACTIONS(3551), + [anon_sym_i16] = ACTIONS(3551), + [anon_sym_i32] = ACTIONS(3551), + [anon_sym_i64] = ACTIONS(3551), + [anon_sym_u8] = ACTIONS(3551), + [anon_sym_u16] = ACTIONS(3551), + [anon_sym_u32] = ACTIONS(3551), + [anon_sym_u64] = ACTIONS(3551), + [anon_sym_isize] = ACTIONS(3551), + [anon_sym_usize] = ACTIONS(3551), + [anon_sym_f32] = ACTIONS(3551), + [anon_sym_f64] = ACTIONS(3551), + [anon_sym_c_char] = ACTIONS(3551), + [anon_sym_c_schar] = ACTIONS(3551), + [anon_sym_c_uchar] = ACTIONS(3551), + [anon_sym_c_short] = ACTIONS(3551), + [anon_sym_c_ushort] = ACTIONS(3551), + [anon_sym_c_int] = ACTIONS(3551), + [anon_sym_c_uint] = ACTIONS(3551), + [anon_sym_c_long] = ACTIONS(3551), + [anon_sym_c_ulong] = ACTIONS(3551), + [anon_sym_c_longlong] = ACTIONS(3551), + [anon_sym_c_ulonglong] = ACTIONS(3551), + [anon_sym_c_float] = ACTIONS(3551), + [anon_sym_c_double] = ACTIONS(3551), + [anon_sym_c_longdouble] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3551), + [anon_sym_yield] = ACTIONS(3551), + [anon_sym_break] = ACTIONS(3551), + [anon_sym_continue] = ACTIONS(3551), + [anon_sym_defer] = ACTIONS(3551), + [anon_sym_errdefer] = ACTIONS(3551), + [anon_sym_if] = ACTIONS(3551), + [anon_sym_else] = ACTIONS(3551), + [anon_sym_while] = ACTIONS(3551), + [anon_sym_expand] = ACTIONS(3551), + [anon_sym_for] = ACTIONS(3551), + [anon_sym_match] = ACTIONS(3551), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3551), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_true] = ACTIONS(3551), + [anon_sym_false] = ACTIONS(3551), + [sym_none] = ACTIONS(3551), + [sym_undefined] = ACTIONS(3551), + [sym_sink] = ACTIONS(3551), + [sym_integer] = ACTIONS(3551), + [sym_float] = ACTIONS(3549), + [anon_sym_DQUOTE] = ACTIONS(3549), + [sym_multiline_string] = ACTIONS(3549), + [sym_character] = ACTIONS(3549), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3549), + }, + [STATE(1572)] = { + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3555), + [anon_sym_import] = ACTIONS(3555), + [anon_sym_test] = ACTIONS(3555), + [anon_sym_hide] = ACTIONS(3555), + [anon_sym_func] = ACTIONS(3555), + [anon_sym_BANG] = ACTIONS(3553), + [anon_sym_struct] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_RPAREN] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3553), + [anon_sym_RBRACE] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3553), + [anon_sym_DOLLAR] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_void] = ACTIONS(3555), + [anon_sym_anyopaque] = ACTIONS(3555), + [anon_sym_bool] = ACTIONS(3555), + [anon_sym_int] = ACTIONS(3555), + [anon_sym_uint] = ACTIONS(3555), + [anon_sym_float] = ACTIONS(3555), + [anon_sym_range] = ACTIONS(3555), + [anon_sym_i8] = ACTIONS(3555), + [anon_sym_i16] = ACTIONS(3555), + [anon_sym_i32] = ACTIONS(3555), + [anon_sym_i64] = ACTIONS(3555), + [anon_sym_u8] = ACTIONS(3555), + [anon_sym_u16] = ACTIONS(3555), + [anon_sym_u32] = ACTIONS(3555), + [anon_sym_u64] = ACTIONS(3555), + [anon_sym_isize] = ACTIONS(3555), + [anon_sym_usize] = ACTIONS(3555), + [anon_sym_f32] = ACTIONS(3555), + [anon_sym_f64] = ACTIONS(3555), + [anon_sym_c_char] = ACTIONS(3555), + [anon_sym_c_schar] = ACTIONS(3555), + [anon_sym_c_uchar] = ACTIONS(3555), + [anon_sym_c_short] = ACTIONS(3555), + [anon_sym_c_ushort] = ACTIONS(3555), + [anon_sym_c_int] = ACTIONS(3555), + [anon_sym_c_uint] = ACTIONS(3555), + [anon_sym_c_long] = ACTIONS(3555), + [anon_sym_c_ulong] = ACTIONS(3555), + [anon_sym_c_longlong] = ACTIONS(3555), + [anon_sym_c_ulonglong] = ACTIONS(3555), + [anon_sym_c_float] = ACTIONS(3555), + [anon_sym_c_double] = ACTIONS(3555), + [anon_sym_c_longdouble] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3555), + [anon_sym_yield] = ACTIONS(3555), + [anon_sym_break] = ACTIONS(3555), + [anon_sym_continue] = ACTIONS(3555), + [anon_sym_defer] = ACTIONS(3555), + [anon_sym_errdefer] = ACTIONS(3555), + [anon_sym_if] = ACTIONS(3555), + [anon_sym_else] = ACTIONS(3555), + [anon_sym_while] = ACTIONS(3555), + [anon_sym_expand] = ACTIONS(3555), + [anon_sym_for] = ACTIONS(3555), + [anon_sym_match] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3553), + [anon_sym_TILDE] = ACTIONS(3553), + [anon_sym_try] = ACTIONS(3555), + [anon_sym_DOT] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(3555), + [anon_sym_false] = ACTIONS(3555), + [sym_none] = ACTIONS(3555), + [sym_undefined] = ACTIONS(3555), + [sym_sink] = ACTIONS(3555), + [sym_integer] = ACTIONS(3555), + [sym_float] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3553), + [sym_multiline_string] = ACTIONS(3553), + [sym_character] = ACTIONS(3553), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3553), + }, + [STATE(1573)] = { + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3559), + [anon_sym_import] = ACTIONS(3559), + [anon_sym_test] = ACTIONS(3559), + [anon_sym_hide] = ACTIONS(3559), + [anon_sym_func] = ACTIONS(3559), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_struct] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3557), + [anon_sym_RPAREN] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3557), + [anon_sym_RBRACE] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_DOLLAR] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3557), + [anon_sym_void] = ACTIONS(3559), + [anon_sym_anyopaque] = ACTIONS(3559), + [anon_sym_bool] = ACTIONS(3559), + [anon_sym_int] = ACTIONS(3559), + [anon_sym_uint] = ACTIONS(3559), + [anon_sym_float] = ACTIONS(3559), + [anon_sym_range] = ACTIONS(3559), + [anon_sym_i8] = ACTIONS(3559), + [anon_sym_i16] = ACTIONS(3559), + [anon_sym_i32] = ACTIONS(3559), + [anon_sym_i64] = ACTIONS(3559), + [anon_sym_u8] = ACTIONS(3559), + [anon_sym_u16] = ACTIONS(3559), + [anon_sym_u32] = ACTIONS(3559), + [anon_sym_u64] = ACTIONS(3559), + [anon_sym_isize] = ACTIONS(3559), + [anon_sym_usize] = ACTIONS(3559), + [anon_sym_f32] = ACTIONS(3559), + [anon_sym_f64] = ACTIONS(3559), + [anon_sym_c_char] = ACTIONS(3559), + [anon_sym_c_schar] = ACTIONS(3559), + [anon_sym_c_uchar] = ACTIONS(3559), + [anon_sym_c_short] = ACTIONS(3559), + [anon_sym_c_ushort] = ACTIONS(3559), + [anon_sym_c_int] = ACTIONS(3559), + [anon_sym_c_uint] = ACTIONS(3559), + [anon_sym_c_long] = ACTIONS(3559), + [anon_sym_c_ulong] = ACTIONS(3559), + [anon_sym_c_longlong] = ACTIONS(3559), + [anon_sym_c_ulonglong] = ACTIONS(3559), + [anon_sym_c_float] = ACTIONS(3559), + [anon_sym_c_double] = ACTIONS(3559), + [anon_sym_c_longdouble] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3559), + [anon_sym_yield] = ACTIONS(3559), + [anon_sym_break] = ACTIONS(3559), + [anon_sym_continue] = ACTIONS(3559), + [anon_sym_defer] = ACTIONS(3559), + [anon_sym_errdefer] = ACTIONS(3559), + [anon_sym_if] = ACTIONS(3559), + [anon_sym_else] = ACTIONS(3559), + [anon_sym_while] = ACTIONS(3559), + [anon_sym_expand] = ACTIONS(3559), + [anon_sym_for] = ACTIONS(3559), + [anon_sym_match] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3557), + [anon_sym_try] = ACTIONS(3559), + [anon_sym_DOT] = ACTIONS(3557), + [anon_sym_true] = ACTIONS(3559), + [anon_sym_false] = ACTIONS(3559), + [sym_none] = ACTIONS(3559), + [sym_undefined] = ACTIONS(3559), + [sym_sink] = ACTIONS(3559), + [sym_integer] = ACTIONS(3559), + [sym_float] = ACTIONS(3557), + [anon_sym_DQUOTE] = ACTIONS(3557), + [sym_multiline_string] = ACTIONS(3557), + [sym_character] = ACTIONS(3557), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3557), + }, + [STATE(1574)] = { + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3563), + [anon_sym_import] = ACTIONS(3563), + [anon_sym_test] = ACTIONS(3563), + [anon_sym_hide] = ACTIONS(3563), + [anon_sym_func] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3561), + [anon_sym_struct] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3561), + [anon_sym_RPAREN] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3561), + [anon_sym_RBRACE] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_DOLLAR] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3561), + [anon_sym_void] = ACTIONS(3563), + [anon_sym_anyopaque] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_int] = ACTIONS(3563), + [anon_sym_uint] = ACTIONS(3563), + [anon_sym_float] = ACTIONS(3563), + [anon_sym_range] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_c_char] = ACTIONS(3563), + [anon_sym_c_schar] = ACTIONS(3563), + [anon_sym_c_uchar] = ACTIONS(3563), + [anon_sym_c_short] = ACTIONS(3563), + [anon_sym_c_ushort] = ACTIONS(3563), + [anon_sym_c_int] = ACTIONS(3563), + [anon_sym_c_uint] = ACTIONS(3563), + [anon_sym_c_long] = ACTIONS(3563), + [anon_sym_c_ulong] = ACTIONS(3563), + [anon_sym_c_longlong] = ACTIONS(3563), + [anon_sym_c_ulonglong] = ACTIONS(3563), + [anon_sym_c_float] = ACTIONS(3563), + [anon_sym_c_double] = ACTIONS(3563), + [anon_sym_c_longdouble] = ACTIONS(3563), + [anon_sym_return] = ACTIONS(3563), + [anon_sym_yield] = ACTIONS(3563), + [anon_sym_break] = ACTIONS(3563), + [anon_sym_continue] = ACTIONS(3563), + [anon_sym_defer] = ACTIONS(3563), + [anon_sym_errdefer] = ACTIONS(3563), + [anon_sym_if] = ACTIONS(3563), + [anon_sym_else] = ACTIONS(3563), + [anon_sym_while] = ACTIONS(3563), + [anon_sym_expand] = ACTIONS(3563), + [anon_sym_for] = ACTIONS(3563), + [anon_sym_match] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3561), + [anon_sym_TILDE] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3563), + [anon_sym_DOT] = ACTIONS(3561), + [anon_sym_true] = ACTIONS(3563), + [anon_sym_false] = ACTIONS(3563), + [sym_none] = ACTIONS(3563), + [sym_undefined] = ACTIONS(3563), + [sym_sink] = ACTIONS(3563), + [sym_integer] = ACTIONS(3563), + [sym_float] = ACTIONS(3561), + [anon_sym_DQUOTE] = ACTIONS(3561), + [sym_multiline_string] = ACTIONS(3561), + [sym_character] = ACTIONS(3561), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3561), + }, + [STATE(1575)] = { + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3567), + [anon_sym_import] = ACTIONS(3567), + [anon_sym_test] = ACTIONS(3567), + [anon_sym_hide] = ACTIONS(3567), + [anon_sym_func] = ACTIONS(3567), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_struct] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(3565), + [anon_sym_RPAREN] = ACTIONS(3565), + [anon_sym_LBRACE] = ACTIONS(3565), + [anon_sym_RBRACE] = ACTIONS(3565), + [anon_sym_DASH] = ACTIONS(3565), + [anon_sym_DOLLAR] = ACTIONS(3565), + [anon_sym_LBRACK] = ACTIONS(3565), + [anon_sym_void] = ACTIONS(3567), + [anon_sym_anyopaque] = ACTIONS(3567), + [anon_sym_bool] = ACTIONS(3567), + [anon_sym_int] = ACTIONS(3567), + [anon_sym_uint] = ACTIONS(3567), + [anon_sym_float] = ACTIONS(3567), + [anon_sym_range] = ACTIONS(3567), + [anon_sym_i8] = ACTIONS(3567), + [anon_sym_i16] = ACTIONS(3567), + [anon_sym_i32] = ACTIONS(3567), + [anon_sym_i64] = ACTIONS(3567), + [anon_sym_u8] = ACTIONS(3567), + [anon_sym_u16] = ACTIONS(3567), + [anon_sym_u32] = ACTIONS(3567), + [anon_sym_u64] = ACTIONS(3567), + [anon_sym_isize] = ACTIONS(3567), + [anon_sym_usize] = ACTIONS(3567), + [anon_sym_f32] = ACTIONS(3567), + [anon_sym_f64] = ACTIONS(3567), + [anon_sym_c_char] = ACTIONS(3567), + [anon_sym_c_schar] = ACTIONS(3567), + [anon_sym_c_uchar] = ACTIONS(3567), + [anon_sym_c_short] = ACTIONS(3567), + [anon_sym_c_ushort] = ACTIONS(3567), + [anon_sym_c_int] = ACTIONS(3567), + [anon_sym_c_uint] = ACTIONS(3567), + [anon_sym_c_long] = ACTIONS(3567), + [anon_sym_c_ulong] = ACTIONS(3567), + [anon_sym_c_longlong] = ACTIONS(3567), + [anon_sym_c_ulonglong] = ACTIONS(3567), + [anon_sym_c_float] = ACTIONS(3567), + [anon_sym_c_double] = ACTIONS(3567), + [anon_sym_c_longdouble] = ACTIONS(3567), + [anon_sym_return] = ACTIONS(3567), + [anon_sym_yield] = ACTIONS(3567), + [anon_sym_break] = ACTIONS(3567), + [anon_sym_continue] = ACTIONS(3567), + [anon_sym_defer] = ACTIONS(3567), + [anon_sym_errdefer] = ACTIONS(3567), + [anon_sym_if] = ACTIONS(3567), + [anon_sym_else] = ACTIONS(3567), + [anon_sym_while] = ACTIONS(3567), + [anon_sym_expand] = ACTIONS(3567), + [anon_sym_for] = ACTIONS(3567), + [anon_sym_match] = ACTIONS(3567), + [anon_sym_AMP] = ACTIONS(3565), + [anon_sym_TILDE] = ACTIONS(3565), + [anon_sym_try] = ACTIONS(3567), + [anon_sym_DOT] = ACTIONS(3565), + [anon_sym_true] = ACTIONS(3567), + [anon_sym_false] = ACTIONS(3567), + [sym_none] = ACTIONS(3567), + [sym_undefined] = ACTIONS(3567), + [sym_sink] = ACTIONS(3567), + [sym_integer] = ACTIONS(3567), + [sym_float] = ACTIONS(3565), + [anon_sym_DQUOTE] = ACTIONS(3565), + [sym_multiline_string] = ACTIONS(3565), + [sym_character] = ACTIONS(3565), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3565), + }, + [STATE(1576)] = { + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3571), + [anon_sym_import] = ACTIONS(3571), + [anon_sym_test] = ACTIONS(3571), + [anon_sym_hide] = ACTIONS(3571), + [anon_sym_func] = ACTIONS(3571), + [anon_sym_BANG] = ACTIONS(3569), + [anon_sym_struct] = ACTIONS(3571), + [anon_sym_LPAREN] = ACTIONS(3569), + [anon_sym_RPAREN] = ACTIONS(3569), + [anon_sym_LBRACE] = ACTIONS(3569), + [anon_sym_RBRACE] = ACTIONS(3569), + [anon_sym_DASH] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3569), + [anon_sym_LBRACK] = ACTIONS(3569), + [anon_sym_void] = ACTIONS(3571), + [anon_sym_anyopaque] = ACTIONS(3571), + [anon_sym_bool] = ACTIONS(3571), + [anon_sym_int] = ACTIONS(3571), + [anon_sym_uint] = ACTIONS(3571), + [anon_sym_float] = ACTIONS(3571), + [anon_sym_range] = ACTIONS(3571), + [anon_sym_i8] = ACTIONS(3571), + [anon_sym_i16] = ACTIONS(3571), + [anon_sym_i32] = ACTIONS(3571), + [anon_sym_i64] = ACTIONS(3571), + [anon_sym_u8] = ACTIONS(3571), + [anon_sym_u16] = ACTIONS(3571), + [anon_sym_u32] = ACTIONS(3571), + [anon_sym_u64] = ACTIONS(3571), + [anon_sym_isize] = ACTIONS(3571), + [anon_sym_usize] = ACTIONS(3571), + [anon_sym_f32] = ACTIONS(3571), + [anon_sym_f64] = ACTIONS(3571), + [anon_sym_c_char] = ACTIONS(3571), + [anon_sym_c_schar] = ACTIONS(3571), + [anon_sym_c_uchar] = ACTIONS(3571), + [anon_sym_c_short] = ACTIONS(3571), + [anon_sym_c_ushort] = ACTIONS(3571), + [anon_sym_c_int] = ACTIONS(3571), + [anon_sym_c_uint] = ACTIONS(3571), + [anon_sym_c_long] = ACTIONS(3571), + [anon_sym_c_ulong] = ACTIONS(3571), + [anon_sym_c_longlong] = ACTIONS(3571), + [anon_sym_c_ulonglong] = ACTIONS(3571), + [anon_sym_c_float] = ACTIONS(3571), + [anon_sym_c_double] = ACTIONS(3571), + [anon_sym_c_longdouble] = ACTIONS(3571), + [anon_sym_return] = ACTIONS(3571), + [anon_sym_yield] = ACTIONS(3571), + [anon_sym_break] = ACTIONS(3571), + [anon_sym_continue] = ACTIONS(3571), + [anon_sym_defer] = ACTIONS(3571), + [anon_sym_errdefer] = ACTIONS(3571), + [anon_sym_if] = ACTIONS(3571), + [anon_sym_else] = ACTIONS(3571), + [anon_sym_while] = ACTIONS(3571), + [anon_sym_expand] = ACTIONS(3571), + [anon_sym_for] = ACTIONS(3571), + [anon_sym_match] = ACTIONS(3571), + [anon_sym_AMP] = ACTIONS(3569), + [anon_sym_TILDE] = ACTIONS(3569), + [anon_sym_try] = ACTIONS(3571), + [anon_sym_DOT] = ACTIONS(3569), + [anon_sym_true] = ACTIONS(3571), + [anon_sym_false] = ACTIONS(3571), + [sym_none] = ACTIONS(3571), + [sym_undefined] = ACTIONS(3571), + [sym_sink] = ACTIONS(3571), + [sym_integer] = ACTIONS(3571), + [sym_float] = ACTIONS(3569), + [anon_sym_DQUOTE] = ACTIONS(3569), + [sym_multiline_string] = ACTIONS(3569), + [sym_character] = ACTIONS(3569), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3569), + }, + [STATE(1577)] = { + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3575), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_test] = ACTIONS(3575), + [anon_sym_hide] = ACTIONS(3575), + [anon_sym_func] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3573), + [anon_sym_struct] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3573), + [anon_sym_RPAREN] = ACTIONS(3573), + [anon_sym_LBRACE] = ACTIONS(3573), + [anon_sym_RBRACE] = ACTIONS(3573), + [anon_sym_DASH] = ACTIONS(3573), + [anon_sym_DOLLAR] = ACTIONS(3573), + [anon_sym_LBRACK] = ACTIONS(3573), + [anon_sym_void] = ACTIONS(3575), + [anon_sym_anyopaque] = ACTIONS(3575), + [anon_sym_bool] = ACTIONS(3575), + [anon_sym_int] = ACTIONS(3575), + [anon_sym_uint] = ACTIONS(3575), + [anon_sym_float] = ACTIONS(3575), + [anon_sym_range] = ACTIONS(3575), + [anon_sym_i8] = ACTIONS(3575), + [anon_sym_i16] = ACTIONS(3575), + [anon_sym_i32] = ACTIONS(3575), + [anon_sym_i64] = ACTIONS(3575), + [anon_sym_u8] = ACTIONS(3575), + [anon_sym_u16] = ACTIONS(3575), + [anon_sym_u32] = ACTIONS(3575), + [anon_sym_u64] = ACTIONS(3575), + [anon_sym_isize] = ACTIONS(3575), + [anon_sym_usize] = ACTIONS(3575), + [anon_sym_f32] = ACTIONS(3575), + [anon_sym_f64] = ACTIONS(3575), + [anon_sym_c_char] = ACTIONS(3575), + [anon_sym_c_schar] = ACTIONS(3575), + [anon_sym_c_uchar] = ACTIONS(3575), + [anon_sym_c_short] = ACTIONS(3575), + [anon_sym_c_ushort] = ACTIONS(3575), + [anon_sym_c_int] = ACTIONS(3575), + [anon_sym_c_uint] = ACTIONS(3575), + [anon_sym_c_long] = ACTIONS(3575), + [anon_sym_c_ulong] = ACTIONS(3575), + [anon_sym_c_longlong] = ACTIONS(3575), + [anon_sym_c_ulonglong] = ACTIONS(3575), + [anon_sym_c_float] = ACTIONS(3575), + [anon_sym_c_double] = ACTIONS(3575), + [anon_sym_c_longdouble] = ACTIONS(3575), + [anon_sym_return] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_break] = ACTIONS(3575), + [anon_sym_continue] = ACTIONS(3575), + [anon_sym_defer] = ACTIONS(3575), + [anon_sym_errdefer] = ACTIONS(3575), + [anon_sym_if] = ACTIONS(3575), + [anon_sym_else] = ACTIONS(3575), + [anon_sym_while] = ACTIONS(3575), + [anon_sym_expand] = ACTIONS(3575), + [anon_sym_for] = ACTIONS(3575), + [anon_sym_match] = ACTIONS(3575), + [anon_sym_AMP] = ACTIONS(3573), + [anon_sym_TILDE] = ACTIONS(3573), + [anon_sym_try] = ACTIONS(3575), + [anon_sym_DOT] = ACTIONS(3573), + [anon_sym_true] = ACTIONS(3575), + [anon_sym_false] = ACTIONS(3575), + [sym_none] = ACTIONS(3575), + [sym_undefined] = ACTIONS(3575), + [sym_sink] = ACTIONS(3575), + [sym_integer] = ACTIONS(3575), + [sym_float] = ACTIONS(3573), + [anon_sym_DQUOTE] = ACTIONS(3573), + [sym_multiline_string] = ACTIONS(3573), + [sym_character] = ACTIONS(3573), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3573), + }, + [STATE(1578)] = { + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3579), + [anon_sym_import] = ACTIONS(3579), + [anon_sym_test] = ACTIONS(3579), + [anon_sym_hide] = ACTIONS(3579), + [anon_sym_func] = ACTIONS(3579), + [anon_sym_BANG] = ACTIONS(3577), + [anon_sym_struct] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(3577), + [anon_sym_RPAREN] = ACTIONS(3577), + [anon_sym_LBRACE] = ACTIONS(3577), + [anon_sym_RBRACE] = ACTIONS(3577), + [anon_sym_DASH] = ACTIONS(3577), + [anon_sym_DOLLAR] = ACTIONS(3577), + [anon_sym_LBRACK] = ACTIONS(3577), + [anon_sym_void] = ACTIONS(3579), + [anon_sym_anyopaque] = ACTIONS(3579), + [anon_sym_bool] = ACTIONS(3579), + [anon_sym_int] = ACTIONS(3579), + [anon_sym_uint] = ACTIONS(3579), + [anon_sym_float] = ACTIONS(3579), + [anon_sym_range] = ACTIONS(3579), + [anon_sym_i8] = ACTIONS(3579), + [anon_sym_i16] = ACTIONS(3579), + [anon_sym_i32] = ACTIONS(3579), + [anon_sym_i64] = ACTIONS(3579), + [anon_sym_u8] = ACTIONS(3579), + [anon_sym_u16] = ACTIONS(3579), + [anon_sym_u32] = ACTIONS(3579), + [anon_sym_u64] = ACTIONS(3579), + [anon_sym_isize] = ACTIONS(3579), + [anon_sym_usize] = ACTIONS(3579), + [anon_sym_f32] = ACTIONS(3579), + [anon_sym_f64] = ACTIONS(3579), + [anon_sym_c_char] = ACTIONS(3579), + [anon_sym_c_schar] = ACTIONS(3579), + [anon_sym_c_uchar] = ACTIONS(3579), + [anon_sym_c_short] = ACTIONS(3579), + [anon_sym_c_ushort] = ACTIONS(3579), + [anon_sym_c_int] = ACTIONS(3579), + [anon_sym_c_uint] = ACTIONS(3579), + [anon_sym_c_long] = ACTIONS(3579), + [anon_sym_c_ulong] = ACTIONS(3579), + [anon_sym_c_longlong] = ACTIONS(3579), + [anon_sym_c_ulonglong] = ACTIONS(3579), + [anon_sym_c_float] = ACTIONS(3579), + [anon_sym_c_double] = ACTIONS(3579), + [anon_sym_c_longdouble] = ACTIONS(3579), + [anon_sym_return] = ACTIONS(3579), + [anon_sym_yield] = ACTIONS(3579), + [anon_sym_break] = ACTIONS(3579), + [anon_sym_continue] = ACTIONS(3579), + [anon_sym_defer] = ACTIONS(3579), + [anon_sym_errdefer] = ACTIONS(3579), + [anon_sym_if] = ACTIONS(3579), + [anon_sym_else] = ACTIONS(3579), + [anon_sym_while] = ACTIONS(3579), + [anon_sym_expand] = ACTIONS(3579), + [anon_sym_for] = ACTIONS(3579), + [anon_sym_match] = ACTIONS(3579), + [anon_sym_AMP] = ACTIONS(3577), + [anon_sym_TILDE] = ACTIONS(3577), + [anon_sym_try] = ACTIONS(3579), + [anon_sym_DOT] = ACTIONS(3577), + [anon_sym_true] = ACTIONS(3579), + [anon_sym_false] = ACTIONS(3579), + [sym_none] = ACTIONS(3579), + [sym_undefined] = ACTIONS(3579), + [sym_sink] = ACTIONS(3579), + [sym_integer] = ACTIONS(3579), + [sym_float] = ACTIONS(3577), + [anon_sym_DQUOTE] = ACTIONS(3577), + [sym_multiline_string] = ACTIONS(3577), + [sym_character] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3577), + }, + [STATE(1579)] = { + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3583), + [anon_sym_import] = ACTIONS(3583), + [anon_sym_test] = ACTIONS(3583), + [anon_sym_hide] = ACTIONS(3583), + [anon_sym_func] = ACTIONS(3583), + [anon_sym_BANG] = ACTIONS(3581), + [anon_sym_struct] = ACTIONS(3583), + [anon_sym_LPAREN] = ACTIONS(3581), + [anon_sym_RPAREN] = ACTIONS(3581), + [anon_sym_LBRACE] = ACTIONS(3581), + [anon_sym_RBRACE] = ACTIONS(3581), + [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3581), + [anon_sym_LBRACK] = ACTIONS(3581), + [anon_sym_void] = ACTIONS(3583), + [anon_sym_anyopaque] = ACTIONS(3583), + [anon_sym_bool] = ACTIONS(3583), + [anon_sym_int] = ACTIONS(3583), + [anon_sym_uint] = ACTIONS(3583), + [anon_sym_float] = ACTIONS(3583), + [anon_sym_range] = ACTIONS(3583), + [anon_sym_i8] = ACTIONS(3583), + [anon_sym_i16] = ACTIONS(3583), + [anon_sym_i32] = ACTIONS(3583), + [anon_sym_i64] = ACTIONS(3583), + [anon_sym_u8] = ACTIONS(3583), + [anon_sym_u16] = ACTIONS(3583), + [anon_sym_u32] = ACTIONS(3583), + [anon_sym_u64] = ACTIONS(3583), + [anon_sym_isize] = ACTIONS(3583), + [anon_sym_usize] = ACTIONS(3583), + [anon_sym_f32] = ACTIONS(3583), + [anon_sym_f64] = ACTIONS(3583), + [anon_sym_c_char] = ACTIONS(3583), + [anon_sym_c_schar] = ACTIONS(3583), + [anon_sym_c_uchar] = ACTIONS(3583), + [anon_sym_c_short] = ACTIONS(3583), + [anon_sym_c_ushort] = ACTIONS(3583), + [anon_sym_c_int] = ACTIONS(3583), + [anon_sym_c_uint] = ACTIONS(3583), + [anon_sym_c_long] = ACTIONS(3583), + [anon_sym_c_ulong] = ACTIONS(3583), + [anon_sym_c_longlong] = ACTIONS(3583), + [anon_sym_c_ulonglong] = ACTIONS(3583), + [anon_sym_c_float] = ACTIONS(3583), + [anon_sym_c_double] = ACTIONS(3583), + [anon_sym_c_longdouble] = ACTIONS(3583), + [anon_sym_return] = ACTIONS(3583), + [anon_sym_yield] = ACTIONS(3583), + [anon_sym_break] = ACTIONS(3583), + [anon_sym_continue] = ACTIONS(3583), + [anon_sym_defer] = ACTIONS(3583), + [anon_sym_errdefer] = ACTIONS(3583), + [anon_sym_if] = ACTIONS(3583), + [anon_sym_else] = ACTIONS(3583), + [anon_sym_while] = ACTIONS(3583), + [anon_sym_expand] = ACTIONS(3583), + [anon_sym_for] = ACTIONS(3583), + [anon_sym_match] = ACTIONS(3583), + [anon_sym_AMP] = ACTIONS(3581), + [anon_sym_TILDE] = ACTIONS(3581), + [anon_sym_try] = ACTIONS(3583), + [anon_sym_DOT] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(3583), + [anon_sym_false] = ACTIONS(3583), + [sym_none] = ACTIONS(3583), + [sym_undefined] = ACTIONS(3583), + [sym_sink] = ACTIONS(3583), + [sym_integer] = ACTIONS(3583), + [sym_float] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(3581), + [sym_multiline_string] = ACTIONS(3581), + [sym_character] = ACTIONS(3581), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3581), + }, + [STATE(1580)] = { + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3587), + [anon_sym_import] = ACTIONS(3587), + [anon_sym_test] = ACTIONS(3587), + [anon_sym_hide] = ACTIONS(3587), + [anon_sym_func] = ACTIONS(3587), + [anon_sym_BANG] = ACTIONS(3585), + [anon_sym_struct] = ACTIONS(3587), + [anon_sym_LPAREN] = ACTIONS(3585), + [anon_sym_RPAREN] = ACTIONS(3585), + [anon_sym_LBRACE] = ACTIONS(3585), + [anon_sym_RBRACE] = ACTIONS(3585), + [anon_sym_DASH] = ACTIONS(3585), + [anon_sym_DOLLAR] = ACTIONS(3585), + [anon_sym_LBRACK] = ACTIONS(3585), + [anon_sym_void] = ACTIONS(3587), + [anon_sym_anyopaque] = ACTIONS(3587), + [anon_sym_bool] = ACTIONS(3587), + [anon_sym_int] = ACTIONS(3587), + [anon_sym_uint] = ACTIONS(3587), + [anon_sym_float] = ACTIONS(3587), + [anon_sym_range] = ACTIONS(3587), + [anon_sym_i8] = ACTIONS(3587), + [anon_sym_i16] = ACTIONS(3587), + [anon_sym_i32] = ACTIONS(3587), + [anon_sym_i64] = ACTIONS(3587), + [anon_sym_u8] = ACTIONS(3587), + [anon_sym_u16] = ACTIONS(3587), + [anon_sym_u32] = ACTIONS(3587), + [anon_sym_u64] = ACTIONS(3587), + [anon_sym_isize] = ACTIONS(3587), + [anon_sym_usize] = ACTIONS(3587), + [anon_sym_f32] = ACTIONS(3587), + [anon_sym_f64] = ACTIONS(3587), + [anon_sym_c_char] = ACTIONS(3587), + [anon_sym_c_schar] = ACTIONS(3587), + [anon_sym_c_uchar] = ACTIONS(3587), + [anon_sym_c_short] = ACTIONS(3587), + [anon_sym_c_ushort] = ACTIONS(3587), + [anon_sym_c_int] = ACTIONS(3587), + [anon_sym_c_uint] = ACTIONS(3587), + [anon_sym_c_long] = ACTIONS(3587), + [anon_sym_c_ulong] = ACTIONS(3587), + [anon_sym_c_longlong] = ACTIONS(3587), + [anon_sym_c_ulonglong] = ACTIONS(3587), + [anon_sym_c_float] = ACTIONS(3587), + [anon_sym_c_double] = ACTIONS(3587), + [anon_sym_c_longdouble] = ACTIONS(3587), + [anon_sym_return] = ACTIONS(3587), + [anon_sym_yield] = ACTIONS(3587), + [anon_sym_break] = ACTIONS(3587), + [anon_sym_continue] = ACTIONS(3587), + [anon_sym_defer] = ACTIONS(3587), + [anon_sym_errdefer] = ACTIONS(3587), + [anon_sym_if] = ACTIONS(3587), + [anon_sym_else] = ACTIONS(3587), + [anon_sym_while] = ACTIONS(3587), + [anon_sym_expand] = ACTIONS(3587), + [anon_sym_for] = ACTIONS(3587), + [anon_sym_match] = ACTIONS(3587), + [anon_sym_AMP] = ACTIONS(3585), + [anon_sym_TILDE] = ACTIONS(3585), + [anon_sym_try] = ACTIONS(3587), + [anon_sym_DOT] = ACTIONS(3585), + [anon_sym_true] = ACTIONS(3587), + [anon_sym_false] = ACTIONS(3587), + [sym_none] = ACTIONS(3587), + [sym_undefined] = ACTIONS(3587), + [sym_sink] = ACTIONS(3587), + [sym_integer] = ACTIONS(3587), + [sym_float] = ACTIONS(3585), + [anon_sym_DQUOTE] = ACTIONS(3585), + [sym_multiline_string] = ACTIONS(3585), + [sym_character] = ACTIONS(3585), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3585), + }, + [STATE(1581)] = { + [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3591), + [anon_sym_import] = ACTIONS(3591), + [anon_sym_test] = ACTIONS(3591), + [anon_sym_hide] = ACTIONS(3591), + [anon_sym_func] = ACTIONS(3591), + [anon_sym_BANG] = ACTIONS(3589), + [anon_sym_struct] = ACTIONS(3591), + [anon_sym_LPAREN] = ACTIONS(3589), + [anon_sym_RPAREN] = ACTIONS(3589), + [anon_sym_LBRACE] = ACTIONS(3589), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_DASH] = ACTIONS(3589), + [anon_sym_DOLLAR] = ACTIONS(3589), + [anon_sym_LBRACK] = ACTIONS(3589), + [anon_sym_void] = ACTIONS(3591), + [anon_sym_anyopaque] = ACTIONS(3591), + [anon_sym_bool] = ACTIONS(3591), + [anon_sym_int] = ACTIONS(3591), + [anon_sym_uint] = ACTIONS(3591), + [anon_sym_float] = ACTIONS(3591), + [anon_sym_range] = ACTIONS(3591), + [anon_sym_i8] = ACTIONS(3591), + [anon_sym_i16] = ACTIONS(3591), + [anon_sym_i32] = ACTIONS(3591), + [anon_sym_i64] = ACTIONS(3591), + [anon_sym_u8] = ACTIONS(3591), + [anon_sym_u16] = ACTIONS(3591), + [anon_sym_u32] = ACTIONS(3591), + [anon_sym_u64] = ACTIONS(3591), + [anon_sym_isize] = ACTIONS(3591), + [anon_sym_usize] = ACTIONS(3591), + [anon_sym_f32] = ACTIONS(3591), + [anon_sym_f64] = ACTIONS(3591), + [anon_sym_c_char] = ACTIONS(3591), + [anon_sym_c_schar] = ACTIONS(3591), + [anon_sym_c_uchar] = ACTIONS(3591), + [anon_sym_c_short] = ACTIONS(3591), + [anon_sym_c_ushort] = ACTIONS(3591), + [anon_sym_c_int] = ACTIONS(3591), + [anon_sym_c_uint] = ACTIONS(3591), + [anon_sym_c_long] = ACTIONS(3591), + [anon_sym_c_ulong] = ACTIONS(3591), + [anon_sym_c_longlong] = ACTIONS(3591), + [anon_sym_c_ulonglong] = ACTIONS(3591), + [anon_sym_c_float] = ACTIONS(3591), + [anon_sym_c_double] = ACTIONS(3591), + [anon_sym_c_longdouble] = ACTIONS(3591), + [anon_sym_return] = ACTIONS(3591), + [anon_sym_yield] = ACTIONS(3591), + [anon_sym_break] = ACTIONS(3591), + [anon_sym_continue] = ACTIONS(3591), + [anon_sym_defer] = ACTIONS(3591), + [anon_sym_errdefer] = ACTIONS(3591), + [anon_sym_if] = ACTIONS(3591), + [anon_sym_else] = ACTIONS(3591), + [anon_sym_while] = ACTIONS(3591), + [anon_sym_expand] = ACTIONS(3591), + [anon_sym_for] = ACTIONS(3591), + [anon_sym_match] = ACTIONS(3591), + [anon_sym_AMP] = ACTIONS(3589), + [anon_sym_TILDE] = ACTIONS(3589), + [anon_sym_try] = ACTIONS(3591), + [anon_sym_DOT] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(3591), + [anon_sym_false] = ACTIONS(3591), + [sym_none] = ACTIONS(3591), + [sym_undefined] = ACTIONS(3591), + [sym_sink] = ACTIONS(3591), + [sym_integer] = ACTIONS(3591), + [sym_float] = ACTIONS(3589), + [anon_sym_DQUOTE] = ACTIONS(3589), + [sym_multiline_string] = ACTIONS(3589), + [sym_character] = ACTIONS(3589), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3589), + }, + [STATE(1582)] = { + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3595), + [anon_sym_import] = ACTIONS(3595), + [anon_sym_test] = ACTIONS(3595), + [anon_sym_hide] = ACTIONS(3595), + [anon_sym_func] = ACTIONS(3595), + [anon_sym_BANG] = ACTIONS(3593), + [anon_sym_struct] = ACTIONS(3595), + [anon_sym_LPAREN] = ACTIONS(3593), + [anon_sym_RPAREN] = ACTIONS(3593), + [anon_sym_LBRACE] = ACTIONS(3593), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym_DASH] = ACTIONS(3593), + [anon_sym_DOLLAR] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(3593), + [anon_sym_void] = ACTIONS(3595), + [anon_sym_anyopaque] = ACTIONS(3595), + [anon_sym_bool] = ACTIONS(3595), + [anon_sym_int] = ACTIONS(3595), + [anon_sym_uint] = ACTIONS(3595), + [anon_sym_float] = ACTIONS(3595), + [anon_sym_range] = ACTIONS(3595), + [anon_sym_i8] = ACTIONS(3595), + [anon_sym_i16] = ACTIONS(3595), + [anon_sym_i32] = ACTIONS(3595), + [anon_sym_i64] = ACTIONS(3595), + [anon_sym_u8] = ACTIONS(3595), + [anon_sym_u16] = ACTIONS(3595), + [anon_sym_u32] = ACTIONS(3595), + [anon_sym_u64] = ACTIONS(3595), + [anon_sym_isize] = ACTIONS(3595), + [anon_sym_usize] = ACTIONS(3595), + [anon_sym_f32] = ACTIONS(3595), + [anon_sym_f64] = ACTIONS(3595), + [anon_sym_c_char] = ACTIONS(3595), + [anon_sym_c_schar] = ACTIONS(3595), + [anon_sym_c_uchar] = ACTIONS(3595), + [anon_sym_c_short] = ACTIONS(3595), + [anon_sym_c_ushort] = ACTIONS(3595), + [anon_sym_c_int] = ACTIONS(3595), + [anon_sym_c_uint] = ACTIONS(3595), + [anon_sym_c_long] = ACTIONS(3595), + [anon_sym_c_ulong] = ACTIONS(3595), + [anon_sym_c_longlong] = ACTIONS(3595), + [anon_sym_c_ulonglong] = ACTIONS(3595), + [anon_sym_c_float] = ACTIONS(3595), + [anon_sym_c_double] = ACTIONS(3595), + [anon_sym_c_longdouble] = ACTIONS(3595), + [anon_sym_return] = ACTIONS(3595), + [anon_sym_yield] = ACTIONS(3595), + [anon_sym_break] = ACTIONS(3595), + [anon_sym_continue] = ACTIONS(3595), + [anon_sym_defer] = ACTIONS(3595), + [anon_sym_errdefer] = ACTIONS(3595), + [anon_sym_if] = ACTIONS(3595), + [anon_sym_else] = ACTIONS(3595), + [anon_sym_while] = ACTIONS(3595), + [anon_sym_expand] = ACTIONS(3595), + [anon_sym_for] = ACTIONS(3595), + [anon_sym_match] = ACTIONS(3595), + [anon_sym_AMP] = ACTIONS(3593), + [anon_sym_TILDE] = ACTIONS(3593), + [anon_sym_try] = ACTIONS(3595), + [anon_sym_DOT] = ACTIONS(3593), + [anon_sym_true] = ACTIONS(3595), + [anon_sym_false] = ACTIONS(3595), + [sym_none] = ACTIONS(3595), + [sym_undefined] = ACTIONS(3595), + [sym_sink] = ACTIONS(3595), + [sym_integer] = ACTIONS(3595), + [sym_float] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(3593), + [sym_multiline_string] = ACTIONS(3593), + [sym_character] = ACTIONS(3593), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3593), + }, + [STATE(1583)] = { + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3599), + [anon_sym_import] = ACTIONS(3599), + [anon_sym_test] = ACTIONS(3599), + [anon_sym_hide] = ACTIONS(3599), + [anon_sym_func] = ACTIONS(3599), + [anon_sym_BANG] = ACTIONS(3597), + [anon_sym_struct] = ACTIONS(3599), + [anon_sym_LPAREN] = ACTIONS(3597), + [anon_sym_RPAREN] = ACTIONS(3597), + [anon_sym_LBRACE] = ACTIONS(3597), + [anon_sym_RBRACE] = ACTIONS(3597), + [anon_sym_DASH] = ACTIONS(3597), + [anon_sym_DOLLAR] = ACTIONS(3597), + [anon_sym_LBRACK] = ACTIONS(3597), + [anon_sym_void] = ACTIONS(3599), + [anon_sym_anyopaque] = ACTIONS(3599), + [anon_sym_bool] = ACTIONS(3599), + [anon_sym_int] = ACTIONS(3599), + [anon_sym_uint] = ACTIONS(3599), + [anon_sym_float] = ACTIONS(3599), + [anon_sym_range] = ACTIONS(3599), + [anon_sym_i8] = ACTIONS(3599), + [anon_sym_i16] = ACTIONS(3599), + [anon_sym_i32] = ACTIONS(3599), + [anon_sym_i64] = ACTIONS(3599), + [anon_sym_u8] = ACTIONS(3599), + [anon_sym_u16] = ACTIONS(3599), + [anon_sym_u32] = ACTIONS(3599), + [anon_sym_u64] = ACTIONS(3599), + [anon_sym_isize] = ACTIONS(3599), + [anon_sym_usize] = ACTIONS(3599), + [anon_sym_f32] = ACTIONS(3599), + [anon_sym_f64] = ACTIONS(3599), + [anon_sym_c_char] = ACTIONS(3599), + [anon_sym_c_schar] = ACTIONS(3599), + [anon_sym_c_uchar] = ACTIONS(3599), + [anon_sym_c_short] = ACTIONS(3599), + [anon_sym_c_ushort] = ACTIONS(3599), + [anon_sym_c_int] = ACTIONS(3599), + [anon_sym_c_uint] = ACTIONS(3599), + [anon_sym_c_long] = ACTIONS(3599), + [anon_sym_c_ulong] = ACTIONS(3599), + [anon_sym_c_longlong] = ACTIONS(3599), + [anon_sym_c_ulonglong] = ACTIONS(3599), + [anon_sym_c_float] = ACTIONS(3599), + [anon_sym_c_double] = ACTIONS(3599), + [anon_sym_c_longdouble] = ACTIONS(3599), + [anon_sym_return] = ACTIONS(3599), + [anon_sym_yield] = ACTIONS(3599), + [anon_sym_break] = ACTIONS(3599), + [anon_sym_continue] = ACTIONS(3599), + [anon_sym_defer] = ACTIONS(3599), + [anon_sym_errdefer] = ACTIONS(3599), + [anon_sym_if] = ACTIONS(3599), + [anon_sym_else] = ACTIONS(3599), + [anon_sym_while] = ACTIONS(3599), + [anon_sym_expand] = ACTIONS(3599), + [anon_sym_for] = ACTIONS(3599), + [anon_sym_match] = ACTIONS(3599), + [anon_sym_AMP] = ACTIONS(3597), + [anon_sym_TILDE] = ACTIONS(3597), + [anon_sym_try] = ACTIONS(3599), + [anon_sym_DOT] = ACTIONS(3597), + [anon_sym_true] = ACTIONS(3599), + [anon_sym_false] = ACTIONS(3599), + [sym_none] = ACTIONS(3599), + [sym_undefined] = ACTIONS(3599), + [sym_sink] = ACTIONS(3599), + [sym_integer] = ACTIONS(3599), + [sym_float] = ACTIONS(3597), + [anon_sym_DQUOTE] = ACTIONS(3597), + [sym_multiline_string] = ACTIONS(3597), + [sym_character] = ACTIONS(3597), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3597), + }, + [STATE(1584)] = { + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3603), + [anon_sym_import] = ACTIONS(3603), + [anon_sym_test] = ACTIONS(3603), + [anon_sym_hide] = ACTIONS(3603), + [anon_sym_func] = ACTIONS(3603), + [anon_sym_BANG] = ACTIONS(3601), + [anon_sym_struct] = ACTIONS(3603), + [anon_sym_LPAREN] = ACTIONS(3601), + [anon_sym_RPAREN] = ACTIONS(3601), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_DASH] = ACTIONS(3601), + [anon_sym_DOLLAR] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(3601), + [anon_sym_void] = ACTIONS(3603), + [anon_sym_anyopaque] = ACTIONS(3603), + [anon_sym_bool] = ACTIONS(3603), + [anon_sym_int] = ACTIONS(3603), + [anon_sym_uint] = ACTIONS(3603), + [anon_sym_float] = ACTIONS(3603), + [anon_sym_range] = ACTIONS(3603), + [anon_sym_i8] = ACTIONS(3603), + [anon_sym_i16] = ACTIONS(3603), + [anon_sym_i32] = ACTIONS(3603), + [anon_sym_i64] = ACTIONS(3603), + [anon_sym_u8] = ACTIONS(3603), + [anon_sym_u16] = ACTIONS(3603), + [anon_sym_u32] = ACTIONS(3603), + [anon_sym_u64] = ACTIONS(3603), + [anon_sym_isize] = ACTIONS(3603), + [anon_sym_usize] = ACTIONS(3603), + [anon_sym_f32] = ACTIONS(3603), + [anon_sym_f64] = ACTIONS(3603), + [anon_sym_c_char] = ACTIONS(3603), + [anon_sym_c_schar] = ACTIONS(3603), + [anon_sym_c_uchar] = ACTIONS(3603), + [anon_sym_c_short] = ACTIONS(3603), + [anon_sym_c_ushort] = ACTIONS(3603), + [anon_sym_c_int] = ACTIONS(3603), + [anon_sym_c_uint] = ACTIONS(3603), + [anon_sym_c_long] = ACTIONS(3603), + [anon_sym_c_ulong] = ACTIONS(3603), + [anon_sym_c_longlong] = ACTIONS(3603), + [anon_sym_c_ulonglong] = ACTIONS(3603), + [anon_sym_c_float] = ACTIONS(3603), + [anon_sym_c_double] = ACTIONS(3603), + [anon_sym_c_longdouble] = ACTIONS(3603), + [anon_sym_return] = ACTIONS(3603), + [anon_sym_yield] = ACTIONS(3603), + [anon_sym_break] = ACTIONS(3603), + [anon_sym_continue] = ACTIONS(3603), + [anon_sym_defer] = ACTIONS(3603), + [anon_sym_errdefer] = ACTIONS(3603), + [anon_sym_if] = ACTIONS(3603), + [anon_sym_else] = ACTIONS(3603), + [anon_sym_while] = ACTIONS(3603), + [anon_sym_expand] = ACTIONS(3603), + [anon_sym_for] = ACTIONS(3603), + [anon_sym_match] = ACTIONS(3603), + [anon_sym_AMP] = ACTIONS(3601), + [anon_sym_TILDE] = ACTIONS(3601), + [anon_sym_try] = ACTIONS(3603), + [anon_sym_DOT] = ACTIONS(3601), + [anon_sym_true] = ACTIONS(3603), + [anon_sym_false] = ACTIONS(3603), + [sym_none] = ACTIONS(3603), + [sym_undefined] = ACTIONS(3603), + [sym_sink] = ACTIONS(3603), + [sym_integer] = ACTIONS(3603), + [sym_float] = ACTIONS(3601), + [anon_sym_DQUOTE] = ACTIONS(3601), + [sym_multiline_string] = ACTIONS(3601), + [sym_character] = ACTIONS(3601), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3601), + }, + [STATE(1585)] = { + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3607), + [anon_sym_import] = ACTIONS(3607), + [anon_sym_test] = ACTIONS(3607), + [anon_sym_hide] = ACTIONS(3607), + [anon_sym_func] = ACTIONS(3607), + [anon_sym_BANG] = ACTIONS(3605), + [anon_sym_struct] = ACTIONS(3607), + [anon_sym_LPAREN] = ACTIONS(3605), + [anon_sym_RPAREN] = ACTIONS(3605), + [anon_sym_LBRACE] = ACTIONS(3605), + [anon_sym_RBRACE] = ACTIONS(3605), + [anon_sym_DASH] = ACTIONS(3605), + [anon_sym_DOLLAR] = ACTIONS(3605), + [anon_sym_LBRACK] = ACTIONS(3605), + [anon_sym_void] = ACTIONS(3607), + [anon_sym_anyopaque] = ACTIONS(3607), + [anon_sym_bool] = ACTIONS(3607), + [anon_sym_int] = ACTIONS(3607), + [anon_sym_uint] = ACTIONS(3607), + [anon_sym_float] = ACTIONS(3607), + [anon_sym_range] = ACTIONS(3607), + [anon_sym_i8] = ACTIONS(3607), + [anon_sym_i16] = ACTIONS(3607), + [anon_sym_i32] = ACTIONS(3607), + [anon_sym_i64] = ACTIONS(3607), + [anon_sym_u8] = ACTIONS(3607), + [anon_sym_u16] = ACTIONS(3607), + [anon_sym_u32] = ACTIONS(3607), + [anon_sym_u64] = ACTIONS(3607), + [anon_sym_isize] = ACTIONS(3607), + [anon_sym_usize] = ACTIONS(3607), + [anon_sym_f32] = ACTIONS(3607), + [anon_sym_f64] = ACTIONS(3607), + [anon_sym_c_char] = ACTIONS(3607), + [anon_sym_c_schar] = ACTIONS(3607), + [anon_sym_c_uchar] = ACTIONS(3607), + [anon_sym_c_short] = ACTIONS(3607), + [anon_sym_c_ushort] = ACTIONS(3607), + [anon_sym_c_int] = ACTIONS(3607), + [anon_sym_c_uint] = ACTIONS(3607), + [anon_sym_c_long] = ACTIONS(3607), + [anon_sym_c_ulong] = ACTIONS(3607), + [anon_sym_c_longlong] = ACTIONS(3607), + [anon_sym_c_ulonglong] = ACTIONS(3607), + [anon_sym_c_float] = ACTIONS(3607), + [anon_sym_c_double] = ACTIONS(3607), + [anon_sym_c_longdouble] = ACTIONS(3607), + [anon_sym_return] = ACTIONS(3607), + [anon_sym_yield] = ACTIONS(3607), + [anon_sym_break] = ACTIONS(3607), + [anon_sym_continue] = ACTIONS(3607), + [anon_sym_defer] = ACTIONS(3607), + [anon_sym_errdefer] = ACTIONS(3607), + [anon_sym_if] = ACTIONS(3607), + [anon_sym_else] = ACTIONS(3607), + [anon_sym_while] = ACTIONS(3607), + [anon_sym_expand] = ACTIONS(3607), + [anon_sym_for] = ACTIONS(3607), + [anon_sym_match] = ACTIONS(3607), + [anon_sym_AMP] = ACTIONS(3605), + [anon_sym_TILDE] = ACTIONS(3605), + [anon_sym_try] = ACTIONS(3607), + [anon_sym_DOT] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(3607), + [anon_sym_false] = ACTIONS(3607), + [sym_none] = ACTIONS(3607), + [sym_undefined] = ACTIONS(3607), + [sym_sink] = ACTIONS(3607), + [sym_integer] = ACTIONS(3607), + [sym_float] = ACTIONS(3605), + [anon_sym_DQUOTE] = ACTIONS(3605), + [sym_multiline_string] = ACTIONS(3605), + [sym_character] = ACTIONS(3605), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3605), + }, + [STATE(1586)] = { + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3611), + [anon_sym_import] = ACTIONS(3611), + [anon_sym_test] = ACTIONS(3611), + [anon_sym_hide] = ACTIONS(3611), + [anon_sym_func] = ACTIONS(3611), + [anon_sym_BANG] = ACTIONS(3609), + [anon_sym_struct] = ACTIONS(3611), + [anon_sym_LPAREN] = ACTIONS(3609), + [anon_sym_RPAREN] = ACTIONS(3609), + [anon_sym_LBRACE] = ACTIONS(3609), + [anon_sym_RBRACE] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [anon_sym_DOLLAR] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3609), + [anon_sym_void] = ACTIONS(3611), + [anon_sym_anyopaque] = ACTIONS(3611), + [anon_sym_bool] = ACTIONS(3611), + [anon_sym_int] = ACTIONS(3611), + [anon_sym_uint] = ACTIONS(3611), + [anon_sym_float] = ACTIONS(3611), + [anon_sym_range] = ACTIONS(3611), + [anon_sym_i8] = ACTIONS(3611), + [anon_sym_i16] = ACTIONS(3611), + [anon_sym_i32] = ACTIONS(3611), + [anon_sym_i64] = ACTIONS(3611), + [anon_sym_u8] = ACTIONS(3611), + [anon_sym_u16] = ACTIONS(3611), + [anon_sym_u32] = ACTIONS(3611), + [anon_sym_u64] = ACTIONS(3611), + [anon_sym_isize] = ACTIONS(3611), + [anon_sym_usize] = ACTIONS(3611), + [anon_sym_f32] = ACTIONS(3611), + [anon_sym_f64] = ACTIONS(3611), + [anon_sym_c_char] = ACTIONS(3611), + [anon_sym_c_schar] = ACTIONS(3611), + [anon_sym_c_uchar] = ACTIONS(3611), + [anon_sym_c_short] = ACTIONS(3611), + [anon_sym_c_ushort] = ACTIONS(3611), + [anon_sym_c_int] = ACTIONS(3611), + [anon_sym_c_uint] = ACTIONS(3611), + [anon_sym_c_long] = ACTIONS(3611), + [anon_sym_c_ulong] = ACTIONS(3611), + [anon_sym_c_longlong] = ACTIONS(3611), + [anon_sym_c_ulonglong] = ACTIONS(3611), + [anon_sym_c_float] = ACTIONS(3611), + [anon_sym_c_double] = ACTIONS(3611), + [anon_sym_c_longdouble] = ACTIONS(3611), + [anon_sym_return] = ACTIONS(3611), + [anon_sym_yield] = ACTIONS(3611), + [anon_sym_break] = ACTIONS(3611), + [anon_sym_continue] = ACTIONS(3611), + [anon_sym_defer] = ACTIONS(3611), + [anon_sym_errdefer] = ACTIONS(3611), + [anon_sym_if] = ACTIONS(3611), + [anon_sym_else] = ACTIONS(3611), + [anon_sym_while] = ACTIONS(3611), + [anon_sym_expand] = ACTIONS(3611), + [anon_sym_for] = ACTIONS(3611), + [anon_sym_match] = ACTIONS(3611), + [anon_sym_AMP] = ACTIONS(3609), + [anon_sym_TILDE] = ACTIONS(3609), + [anon_sym_try] = ACTIONS(3611), + [anon_sym_DOT] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(3611), + [anon_sym_false] = ACTIONS(3611), + [sym_none] = ACTIONS(3611), + [sym_undefined] = ACTIONS(3611), + [sym_sink] = ACTIONS(3611), + [sym_integer] = ACTIONS(3611), + [sym_float] = ACTIONS(3609), + [anon_sym_DQUOTE] = ACTIONS(3609), + [sym_multiline_string] = ACTIONS(3609), + [sym_character] = ACTIONS(3609), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3609), + }, + [STATE(1587)] = { + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3615), + [anon_sym_import] = ACTIONS(3615), + [anon_sym_test] = ACTIONS(3615), + [anon_sym_hide] = ACTIONS(3615), + [anon_sym_func] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3613), + [anon_sym_struct] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(3613), + [anon_sym_RPAREN] = ACTIONS(3613), + [anon_sym_LBRACE] = ACTIONS(3613), + [anon_sym_RBRACE] = ACTIONS(3613), + [anon_sym_DASH] = ACTIONS(3613), + [anon_sym_DOLLAR] = ACTIONS(3613), + [anon_sym_LBRACK] = ACTIONS(3613), + [anon_sym_void] = ACTIONS(3615), + [anon_sym_anyopaque] = ACTIONS(3615), + [anon_sym_bool] = ACTIONS(3615), + [anon_sym_int] = ACTIONS(3615), + [anon_sym_uint] = ACTIONS(3615), + [anon_sym_float] = ACTIONS(3615), + [anon_sym_range] = ACTIONS(3615), + [anon_sym_i8] = ACTIONS(3615), + [anon_sym_i16] = ACTIONS(3615), + [anon_sym_i32] = ACTIONS(3615), + [anon_sym_i64] = ACTIONS(3615), + [anon_sym_u8] = ACTIONS(3615), + [anon_sym_u16] = ACTIONS(3615), + [anon_sym_u32] = ACTIONS(3615), + [anon_sym_u64] = ACTIONS(3615), + [anon_sym_isize] = ACTIONS(3615), + [anon_sym_usize] = ACTIONS(3615), + [anon_sym_f32] = ACTIONS(3615), + [anon_sym_f64] = ACTIONS(3615), + [anon_sym_c_char] = ACTIONS(3615), + [anon_sym_c_schar] = ACTIONS(3615), + [anon_sym_c_uchar] = ACTIONS(3615), + [anon_sym_c_short] = ACTIONS(3615), + [anon_sym_c_ushort] = ACTIONS(3615), + [anon_sym_c_int] = ACTIONS(3615), + [anon_sym_c_uint] = ACTIONS(3615), + [anon_sym_c_long] = ACTIONS(3615), + [anon_sym_c_ulong] = ACTIONS(3615), + [anon_sym_c_longlong] = ACTIONS(3615), + [anon_sym_c_ulonglong] = ACTIONS(3615), + [anon_sym_c_float] = ACTIONS(3615), + [anon_sym_c_double] = ACTIONS(3615), + [anon_sym_c_longdouble] = ACTIONS(3615), + [anon_sym_return] = ACTIONS(3615), + [anon_sym_yield] = ACTIONS(3615), + [anon_sym_break] = ACTIONS(3615), + [anon_sym_continue] = ACTIONS(3615), + [anon_sym_defer] = ACTIONS(3615), + [anon_sym_errdefer] = ACTIONS(3615), + [anon_sym_if] = ACTIONS(3615), + [anon_sym_else] = ACTIONS(3615), + [anon_sym_while] = ACTIONS(3615), + [anon_sym_expand] = ACTIONS(3615), + [anon_sym_for] = ACTIONS(3615), + [anon_sym_match] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3613), + [anon_sym_TILDE] = ACTIONS(3613), + [anon_sym_try] = ACTIONS(3615), + [anon_sym_DOT] = ACTIONS(3613), + [anon_sym_true] = ACTIONS(3615), + [anon_sym_false] = ACTIONS(3615), + [sym_none] = ACTIONS(3615), + [sym_undefined] = ACTIONS(3615), + [sym_sink] = ACTIONS(3615), + [sym_integer] = ACTIONS(3615), + [sym_float] = ACTIONS(3613), + [anon_sym_DQUOTE] = ACTIONS(3613), + [sym_multiline_string] = ACTIONS(3613), + [sym_character] = ACTIONS(3613), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3613), + }, + [STATE(1588)] = { + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3619), + [anon_sym_import] = ACTIONS(3619), + [anon_sym_test] = ACTIONS(3619), + [anon_sym_hide] = ACTIONS(3619), + [anon_sym_func] = ACTIONS(3619), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_struct] = ACTIONS(3619), + [anon_sym_LPAREN] = ACTIONS(3617), + [anon_sym_RPAREN] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3617), + [anon_sym_RBRACE] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_DOLLAR] = ACTIONS(3617), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_void] = ACTIONS(3619), + [anon_sym_anyopaque] = ACTIONS(3619), + [anon_sym_bool] = ACTIONS(3619), + [anon_sym_int] = ACTIONS(3619), + [anon_sym_uint] = ACTIONS(3619), + [anon_sym_float] = ACTIONS(3619), + [anon_sym_range] = ACTIONS(3619), + [anon_sym_i8] = ACTIONS(3619), + [anon_sym_i16] = ACTIONS(3619), + [anon_sym_i32] = ACTIONS(3619), + [anon_sym_i64] = ACTIONS(3619), + [anon_sym_u8] = ACTIONS(3619), + [anon_sym_u16] = ACTIONS(3619), + [anon_sym_u32] = ACTIONS(3619), + [anon_sym_u64] = ACTIONS(3619), + [anon_sym_isize] = ACTIONS(3619), + [anon_sym_usize] = ACTIONS(3619), + [anon_sym_f32] = ACTIONS(3619), + [anon_sym_f64] = ACTIONS(3619), + [anon_sym_c_char] = ACTIONS(3619), + [anon_sym_c_schar] = ACTIONS(3619), + [anon_sym_c_uchar] = ACTIONS(3619), + [anon_sym_c_short] = ACTIONS(3619), + [anon_sym_c_ushort] = ACTIONS(3619), + [anon_sym_c_int] = ACTIONS(3619), + [anon_sym_c_uint] = ACTIONS(3619), + [anon_sym_c_long] = ACTIONS(3619), + [anon_sym_c_ulong] = ACTIONS(3619), + [anon_sym_c_longlong] = ACTIONS(3619), + [anon_sym_c_ulonglong] = ACTIONS(3619), + [anon_sym_c_float] = ACTIONS(3619), + [anon_sym_c_double] = ACTIONS(3619), + [anon_sym_c_longdouble] = ACTIONS(3619), + [anon_sym_return] = ACTIONS(3619), + [anon_sym_yield] = ACTIONS(3619), + [anon_sym_break] = ACTIONS(3619), + [anon_sym_continue] = ACTIONS(3619), + [anon_sym_defer] = ACTIONS(3619), + [anon_sym_errdefer] = ACTIONS(3619), + [anon_sym_if] = ACTIONS(3619), + [anon_sym_else] = ACTIONS(3619), + [anon_sym_while] = ACTIONS(3619), + [anon_sym_expand] = ACTIONS(3619), + [anon_sym_for] = ACTIONS(3619), + [anon_sym_match] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3617), + [anon_sym_try] = ACTIONS(3619), + [anon_sym_DOT] = ACTIONS(3617), + [anon_sym_true] = ACTIONS(3619), + [anon_sym_false] = ACTIONS(3619), + [sym_none] = ACTIONS(3619), + [sym_undefined] = ACTIONS(3619), + [sym_sink] = ACTIONS(3619), + [sym_integer] = ACTIONS(3619), + [sym_float] = ACTIONS(3617), + [anon_sym_DQUOTE] = ACTIONS(3617), + [sym_multiline_string] = ACTIONS(3617), + [sym_character] = ACTIONS(3617), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3617), + }, + [STATE(1589)] = { + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3623), + [anon_sym_import] = ACTIONS(3623), + [anon_sym_test] = ACTIONS(3623), + [anon_sym_hide] = ACTIONS(3623), + [anon_sym_func] = ACTIONS(3623), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_struct] = ACTIONS(3623), + [anon_sym_LPAREN] = ACTIONS(3621), + [anon_sym_RPAREN] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3621), + [anon_sym_RBRACE] = ACTIONS(3621), + [anon_sym_DASH] = ACTIONS(3621), + [anon_sym_DOLLAR] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_void] = ACTIONS(3623), + [anon_sym_anyopaque] = ACTIONS(3623), + [anon_sym_bool] = ACTIONS(3623), + [anon_sym_int] = ACTIONS(3623), + [anon_sym_uint] = ACTIONS(3623), + [anon_sym_float] = ACTIONS(3623), + [anon_sym_range] = ACTIONS(3623), + [anon_sym_i8] = ACTIONS(3623), + [anon_sym_i16] = ACTIONS(3623), + [anon_sym_i32] = ACTIONS(3623), + [anon_sym_i64] = ACTIONS(3623), + [anon_sym_u8] = ACTIONS(3623), + [anon_sym_u16] = ACTIONS(3623), + [anon_sym_u32] = ACTIONS(3623), + [anon_sym_u64] = ACTIONS(3623), + [anon_sym_isize] = ACTIONS(3623), + [anon_sym_usize] = ACTIONS(3623), + [anon_sym_f32] = ACTIONS(3623), + [anon_sym_f64] = ACTIONS(3623), + [anon_sym_c_char] = ACTIONS(3623), + [anon_sym_c_schar] = ACTIONS(3623), + [anon_sym_c_uchar] = ACTIONS(3623), + [anon_sym_c_short] = ACTIONS(3623), + [anon_sym_c_ushort] = ACTIONS(3623), + [anon_sym_c_int] = ACTIONS(3623), + [anon_sym_c_uint] = ACTIONS(3623), + [anon_sym_c_long] = ACTIONS(3623), + [anon_sym_c_ulong] = ACTIONS(3623), + [anon_sym_c_longlong] = ACTIONS(3623), + [anon_sym_c_ulonglong] = ACTIONS(3623), + [anon_sym_c_float] = ACTIONS(3623), + [anon_sym_c_double] = ACTIONS(3623), + [anon_sym_c_longdouble] = ACTIONS(3623), + [anon_sym_return] = ACTIONS(3623), + [anon_sym_yield] = ACTIONS(3623), + [anon_sym_break] = ACTIONS(3623), + [anon_sym_continue] = ACTIONS(3623), + [anon_sym_defer] = ACTIONS(3623), + [anon_sym_errdefer] = ACTIONS(3623), + [anon_sym_if] = ACTIONS(3623), + [anon_sym_else] = ACTIONS(3623), + [anon_sym_while] = ACTIONS(3623), + [anon_sym_expand] = ACTIONS(3623), + [anon_sym_for] = ACTIONS(3623), + [anon_sym_match] = ACTIONS(3623), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3621), + [anon_sym_try] = ACTIONS(3623), + [anon_sym_DOT] = ACTIONS(3621), + [anon_sym_true] = ACTIONS(3623), + [anon_sym_false] = ACTIONS(3623), + [sym_none] = ACTIONS(3623), + [sym_undefined] = ACTIONS(3623), + [sym_sink] = ACTIONS(3623), + [sym_integer] = ACTIONS(3623), + [sym_float] = ACTIONS(3621), + [anon_sym_DQUOTE] = ACTIONS(3621), + [sym_multiline_string] = ACTIONS(3621), + [sym_character] = ACTIONS(3621), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3621), + }, + [STATE(1590)] = { + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3627), + [anon_sym_import] = ACTIONS(3627), + [anon_sym_test] = ACTIONS(3627), + [anon_sym_hide] = ACTIONS(3627), + [anon_sym_func] = ACTIONS(3627), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_struct] = ACTIONS(3627), + [anon_sym_LPAREN] = ACTIONS(3625), + [anon_sym_RPAREN] = ACTIONS(3625), + [anon_sym_LBRACE] = ACTIONS(3625), + [anon_sym_RBRACE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3625), + [anon_sym_DOLLAR] = ACTIONS(3625), + [anon_sym_LBRACK] = ACTIONS(3625), + [anon_sym_void] = ACTIONS(3627), + [anon_sym_anyopaque] = ACTIONS(3627), + [anon_sym_bool] = ACTIONS(3627), + [anon_sym_int] = ACTIONS(3627), + [anon_sym_uint] = ACTIONS(3627), + [anon_sym_float] = ACTIONS(3627), + [anon_sym_range] = ACTIONS(3627), + [anon_sym_i8] = ACTIONS(3627), + [anon_sym_i16] = ACTIONS(3627), + [anon_sym_i32] = ACTIONS(3627), + [anon_sym_i64] = ACTIONS(3627), + [anon_sym_u8] = ACTIONS(3627), + [anon_sym_u16] = ACTIONS(3627), + [anon_sym_u32] = ACTIONS(3627), + [anon_sym_u64] = ACTIONS(3627), + [anon_sym_isize] = ACTIONS(3627), + [anon_sym_usize] = ACTIONS(3627), + [anon_sym_f32] = ACTIONS(3627), + [anon_sym_f64] = ACTIONS(3627), + [anon_sym_c_char] = ACTIONS(3627), + [anon_sym_c_schar] = ACTIONS(3627), + [anon_sym_c_uchar] = ACTIONS(3627), + [anon_sym_c_short] = ACTIONS(3627), + [anon_sym_c_ushort] = ACTIONS(3627), + [anon_sym_c_int] = ACTIONS(3627), + [anon_sym_c_uint] = ACTIONS(3627), + [anon_sym_c_long] = ACTIONS(3627), + [anon_sym_c_ulong] = ACTIONS(3627), + [anon_sym_c_longlong] = ACTIONS(3627), + [anon_sym_c_ulonglong] = ACTIONS(3627), + [anon_sym_c_float] = ACTIONS(3627), + [anon_sym_c_double] = ACTIONS(3627), + [anon_sym_c_longdouble] = ACTIONS(3627), + [anon_sym_return] = ACTIONS(3627), + [anon_sym_yield] = ACTIONS(3627), + [anon_sym_break] = ACTIONS(3627), + [anon_sym_continue] = ACTIONS(3627), + [anon_sym_defer] = ACTIONS(3627), + [anon_sym_errdefer] = ACTIONS(3627), + [anon_sym_if] = ACTIONS(3627), + [anon_sym_else] = ACTIONS(3627), + [anon_sym_while] = ACTIONS(3627), + [anon_sym_expand] = ACTIONS(3627), + [anon_sym_for] = ACTIONS(3627), + [anon_sym_match] = ACTIONS(3627), + [anon_sym_AMP] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_try] = ACTIONS(3627), + [anon_sym_DOT] = ACTIONS(3625), + [anon_sym_true] = ACTIONS(3627), + [anon_sym_false] = ACTIONS(3627), + [sym_none] = ACTIONS(3627), + [sym_undefined] = ACTIONS(3627), + [sym_sink] = ACTIONS(3627), + [sym_integer] = ACTIONS(3627), + [sym_float] = ACTIONS(3625), + [anon_sym_DQUOTE] = ACTIONS(3625), + [sym_multiline_string] = ACTIONS(3625), + [sym_character] = ACTIONS(3625), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3625), + }, + [STATE(1591)] = { + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3631), + [anon_sym_import] = ACTIONS(3631), + [anon_sym_test] = ACTIONS(3631), + [anon_sym_hide] = ACTIONS(3631), + [anon_sym_func] = ACTIONS(3631), + [anon_sym_BANG] = ACTIONS(3629), + [anon_sym_struct] = ACTIONS(3631), + [anon_sym_LPAREN] = ACTIONS(3629), + [anon_sym_RPAREN] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3629), + [anon_sym_RBRACE] = ACTIONS(3629), + [anon_sym_DASH] = ACTIONS(3629), + [anon_sym_DOLLAR] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(3629), + [anon_sym_void] = ACTIONS(3631), + [anon_sym_anyopaque] = ACTIONS(3631), + [anon_sym_bool] = ACTIONS(3631), + [anon_sym_int] = ACTIONS(3631), + [anon_sym_uint] = ACTIONS(3631), + [anon_sym_float] = ACTIONS(3631), + [anon_sym_range] = ACTIONS(3631), + [anon_sym_i8] = ACTIONS(3631), + [anon_sym_i16] = ACTIONS(3631), + [anon_sym_i32] = ACTIONS(3631), + [anon_sym_i64] = ACTIONS(3631), + [anon_sym_u8] = ACTIONS(3631), + [anon_sym_u16] = ACTIONS(3631), + [anon_sym_u32] = ACTIONS(3631), + [anon_sym_u64] = ACTIONS(3631), + [anon_sym_isize] = ACTIONS(3631), + [anon_sym_usize] = ACTIONS(3631), + [anon_sym_f32] = ACTIONS(3631), + [anon_sym_f64] = ACTIONS(3631), + [anon_sym_c_char] = ACTIONS(3631), + [anon_sym_c_schar] = ACTIONS(3631), + [anon_sym_c_uchar] = ACTIONS(3631), + [anon_sym_c_short] = ACTIONS(3631), + [anon_sym_c_ushort] = ACTIONS(3631), + [anon_sym_c_int] = ACTIONS(3631), + [anon_sym_c_uint] = ACTIONS(3631), + [anon_sym_c_long] = ACTIONS(3631), + [anon_sym_c_ulong] = ACTIONS(3631), + [anon_sym_c_longlong] = ACTIONS(3631), + [anon_sym_c_ulonglong] = ACTIONS(3631), + [anon_sym_c_float] = ACTIONS(3631), + [anon_sym_c_double] = ACTIONS(3631), + [anon_sym_c_longdouble] = ACTIONS(3631), + [anon_sym_return] = ACTIONS(3631), + [anon_sym_yield] = ACTIONS(3631), + [anon_sym_break] = ACTIONS(3631), + [anon_sym_continue] = ACTIONS(3631), + [anon_sym_defer] = ACTIONS(3631), + [anon_sym_errdefer] = ACTIONS(3631), + [anon_sym_if] = ACTIONS(3631), + [anon_sym_else] = ACTIONS(3631), + [anon_sym_while] = ACTIONS(3631), + [anon_sym_expand] = ACTIONS(3631), + [anon_sym_for] = ACTIONS(3631), + [anon_sym_match] = ACTIONS(3631), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_TILDE] = ACTIONS(3629), + [anon_sym_try] = ACTIONS(3631), + [anon_sym_DOT] = ACTIONS(3629), + [anon_sym_true] = ACTIONS(3631), + [anon_sym_false] = ACTIONS(3631), + [sym_none] = ACTIONS(3631), + [sym_undefined] = ACTIONS(3631), + [sym_sink] = ACTIONS(3631), + [sym_integer] = ACTIONS(3631), + [sym_float] = ACTIONS(3629), + [anon_sym_DQUOTE] = ACTIONS(3629), + [sym_multiline_string] = ACTIONS(3629), + [sym_character] = ACTIONS(3629), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3629), + }, + [STATE(1592)] = { + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3635), + [anon_sym_import] = ACTIONS(3635), + [anon_sym_test] = ACTIONS(3635), + [anon_sym_hide] = ACTIONS(3635), + [anon_sym_func] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3633), + [anon_sym_struct] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(3633), + [anon_sym_RPAREN] = ACTIONS(3633), + [anon_sym_LBRACE] = ACTIONS(3633), + [anon_sym_RBRACE] = ACTIONS(3633), + [anon_sym_DASH] = ACTIONS(3633), + [anon_sym_DOLLAR] = ACTIONS(3633), + [anon_sym_LBRACK] = ACTIONS(3633), + [anon_sym_void] = ACTIONS(3635), + [anon_sym_anyopaque] = ACTIONS(3635), + [anon_sym_bool] = ACTIONS(3635), + [anon_sym_int] = ACTIONS(3635), + [anon_sym_uint] = ACTIONS(3635), + [anon_sym_float] = ACTIONS(3635), + [anon_sym_range] = ACTIONS(3635), + [anon_sym_i8] = ACTIONS(3635), + [anon_sym_i16] = ACTIONS(3635), + [anon_sym_i32] = ACTIONS(3635), + [anon_sym_i64] = ACTIONS(3635), + [anon_sym_u8] = ACTIONS(3635), + [anon_sym_u16] = ACTIONS(3635), + [anon_sym_u32] = ACTIONS(3635), + [anon_sym_u64] = ACTIONS(3635), + [anon_sym_isize] = ACTIONS(3635), + [anon_sym_usize] = ACTIONS(3635), + [anon_sym_f32] = ACTIONS(3635), + [anon_sym_f64] = ACTIONS(3635), + [anon_sym_c_char] = ACTIONS(3635), + [anon_sym_c_schar] = ACTIONS(3635), + [anon_sym_c_uchar] = ACTIONS(3635), + [anon_sym_c_short] = ACTIONS(3635), + [anon_sym_c_ushort] = ACTIONS(3635), + [anon_sym_c_int] = ACTIONS(3635), + [anon_sym_c_uint] = ACTIONS(3635), + [anon_sym_c_long] = ACTIONS(3635), + [anon_sym_c_ulong] = ACTIONS(3635), + [anon_sym_c_longlong] = ACTIONS(3635), + [anon_sym_c_ulonglong] = ACTIONS(3635), + [anon_sym_c_float] = ACTIONS(3635), + [anon_sym_c_double] = ACTIONS(3635), + [anon_sym_c_longdouble] = ACTIONS(3635), + [anon_sym_return] = ACTIONS(3635), + [anon_sym_yield] = ACTIONS(3635), + [anon_sym_break] = ACTIONS(3635), + [anon_sym_continue] = ACTIONS(3635), + [anon_sym_defer] = ACTIONS(3635), + [anon_sym_errdefer] = ACTIONS(3635), + [anon_sym_if] = ACTIONS(3635), + [anon_sym_else] = ACTIONS(3635), + [anon_sym_while] = ACTIONS(3635), + [anon_sym_expand] = ACTIONS(3635), + [anon_sym_for] = ACTIONS(3635), + [anon_sym_match] = ACTIONS(3635), + [anon_sym_AMP] = ACTIONS(3633), + [anon_sym_TILDE] = ACTIONS(3633), + [anon_sym_try] = ACTIONS(3635), + [anon_sym_DOT] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(3635), + [anon_sym_false] = ACTIONS(3635), + [sym_none] = ACTIONS(3635), + [sym_undefined] = ACTIONS(3635), + [sym_sink] = ACTIONS(3635), + [sym_integer] = ACTIONS(3635), + [sym_float] = ACTIONS(3633), + [anon_sym_DQUOTE] = ACTIONS(3633), + [sym_multiline_string] = ACTIONS(3633), + [sym_character] = ACTIONS(3633), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3633), + }, + [STATE(1593)] = { + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3639), + [anon_sym_import] = ACTIONS(3639), + [anon_sym_test] = ACTIONS(3639), + [anon_sym_hide] = ACTIONS(3639), + [anon_sym_func] = ACTIONS(3639), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_struct] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3637), + [anon_sym_RPAREN] = ACTIONS(3637), + [anon_sym_LBRACE] = ACTIONS(3637), + [anon_sym_RBRACE] = ACTIONS(3637), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_DOLLAR] = ACTIONS(3637), + [anon_sym_LBRACK] = ACTIONS(3637), + [anon_sym_void] = ACTIONS(3639), + [anon_sym_anyopaque] = ACTIONS(3639), + [anon_sym_bool] = ACTIONS(3639), + [anon_sym_int] = ACTIONS(3639), + [anon_sym_uint] = ACTIONS(3639), + [anon_sym_float] = ACTIONS(3639), + [anon_sym_range] = ACTIONS(3639), + [anon_sym_i8] = ACTIONS(3639), + [anon_sym_i16] = ACTIONS(3639), + [anon_sym_i32] = ACTIONS(3639), + [anon_sym_i64] = ACTIONS(3639), + [anon_sym_u8] = ACTIONS(3639), + [anon_sym_u16] = ACTIONS(3639), + [anon_sym_u32] = ACTIONS(3639), + [anon_sym_u64] = ACTIONS(3639), + [anon_sym_isize] = ACTIONS(3639), + [anon_sym_usize] = ACTIONS(3639), + [anon_sym_f32] = ACTIONS(3639), + [anon_sym_f64] = ACTIONS(3639), + [anon_sym_c_char] = ACTIONS(3639), + [anon_sym_c_schar] = ACTIONS(3639), + [anon_sym_c_uchar] = ACTIONS(3639), + [anon_sym_c_short] = ACTIONS(3639), + [anon_sym_c_ushort] = ACTIONS(3639), + [anon_sym_c_int] = ACTIONS(3639), + [anon_sym_c_uint] = ACTIONS(3639), + [anon_sym_c_long] = ACTIONS(3639), + [anon_sym_c_ulong] = ACTIONS(3639), + [anon_sym_c_longlong] = ACTIONS(3639), + [anon_sym_c_ulonglong] = ACTIONS(3639), + [anon_sym_c_float] = ACTIONS(3639), + [anon_sym_c_double] = ACTIONS(3639), + [anon_sym_c_longdouble] = ACTIONS(3639), + [anon_sym_return] = ACTIONS(3639), + [anon_sym_yield] = ACTIONS(3639), + [anon_sym_break] = ACTIONS(3639), + [anon_sym_continue] = ACTIONS(3639), + [anon_sym_defer] = ACTIONS(3639), + [anon_sym_errdefer] = ACTIONS(3639), + [anon_sym_if] = ACTIONS(3639), + [anon_sym_else] = ACTIONS(3639), + [anon_sym_while] = ACTIONS(3639), + [anon_sym_expand] = ACTIONS(3639), + [anon_sym_for] = ACTIONS(3639), + [anon_sym_match] = ACTIONS(3639), + [anon_sym_AMP] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3637), + [anon_sym_try] = ACTIONS(3639), + [anon_sym_DOT] = ACTIONS(3637), + [anon_sym_true] = ACTIONS(3639), + [anon_sym_false] = ACTIONS(3639), + [sym_none] = ACTIONS(3639), + [sym_undefined] = ACTIONS(3639), + [sym_sink] = ACTIONS(3639), + [sym_integer] = ACTIONS(3639), + [sym_float] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(3637), + [sym_multiline_string] = ACTIONS(3637), + [sym_character] = ACTIONS(3637), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3637), + }, + [STATE(1594)] = { + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3643), + [anon_sym_import] = ACTIONS(3643), + [anon_sym_test] = ACTIONS(3643), + [anon_sym_hide] = ACTIONS(3643), + [anon_sym_func] = ACTIONS(3643), + [anon_sym_BANG] = ACTIONS(3641), + [anon_sym_struct] = ACTIONS(3643), + [anon_sym_LPAREN] = ACTIONS(3641), + [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_LBRACE] = ACTIONS(3641), + [anon_sym_RBRACE] = ACTIONS(3641), + [anon_sym_DASH] = ACTIONS(3641), + [anon_sym_DOLLAR] = ACTIONS(3641), + [anon_sym_LBRACK] = ACTIONS(3641), + [anon_sym_void] = ACTIONS(3643), + [anon_sym_anyopaque] = ACTIONS(3643), + [anon_sym_bool] = ACTIONS(3643), + [anon_sym_int] = ACTIONS(3643), + [anon_sym_uint] = ACTIONS(3643), + [anon_sym_float] = ACTIONS(3643), + [anon_sym_range] = ACTIONS(3643), + [anon_sym_i8] = ACTIONS(3643), + [anon_sym_i16] = ACTIONS(3643), + [anon_sym_i32] = ACTIONS(3643), + [anon_sym_i64] = ACTIONS(3643), + [anon_sym_u8] = ACTIONS(3643), + [anon_sym_u16] = ACTIONS(3643), + [anon_sym_u32] = ACTIONS(3643), + [anon_sym_u64] = ACTIONS(3643), + [anon_sym_isize] = ACTIONS(3643), + [anon_sym_usize] = ACTIONS(3643), + [anon_sym_f32] = ACTIONS(3643), + [anon_sym_f64] = ACTIONS(3643), + [anon_sym_c_char] = ACTIONS(3643), + [anon_sym_c_schar] = ACTIONS(3643), + [anon_sym_c_uchar] = ACTIONS(3643), + [anon_sym_c_short] = ACTIONS(3643), + [anon_sym_c_ushort] = ACTIONS(3643), + [anon_sym_c_int] = ACTIONS(3643), + [anon_sym_c_uint] = ACTIONS(3643), + [anon_sym_c_long] = ACTIONS(3643), + [anon_sym_c_ulong] = ACTIONS(3643), + [anon_sym_c_longlong] = ACTIONS(3643), + [anon_sym_c_ulonglong] = ACTIONS(3643), + [anon_sym_c_float] = ACTIONS(3643), + [anon_sym_c_double] = ACTIONS(3643), + [anon_sym_c_longdouble] = ACTIONS(3643), + [anon_sym_return] = ACTIONS(3643), + [anon_sym_yield] = ACTIONS(3643), + [anon_sym_break] = ACTIONS(3643), + [anon_sym_continue] = ACTIONS(3643), + [anon_sym_defer] = ACTIONS(3643), + [anon_sym_errdefer] = ACTIONS(3643), + [anon_sym_if] = ACTIONS(3643), + [anon_sym_else] = ACTIONS(3643), + [anon_sym_while] = ACTIONS(3643), + [anon_sym_expand] = ACTIONS(3643), + [anon_sym_for] = ACTIONS(3643), + [anon_sym_match] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3641), + [anon_sym_try] = ACTIONS(3643), + [anon_sym_DOT] = ACTIONS(3641), + [anon_sym_true] = ACTIONS(3643), + [anon_sym_false] = ACTIONS(3643), + [sym_none] = ACTIONS(3643), + [sym_undefined] = ACTIONS(3643), + [sym_sink] = ACTIONS(3643), + [sym_integer] = ACTIONS(3643), + [sym_float] = ACTIONS(3641), + [anon_sym_DQUOTE] = ACTIONS(3641), + [sym_multiline_string] = ACTIONS(3641), + [sym_character] = ACTIONS(3641), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3641), + }, + [STATE(1595)] = { + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3647), + [anon_sym_import] = ACTIONS(3647), + [anon_sym_test] = ACTIONS(3647), + [anon_sym_hide] = ACTIONS(3647), + [anon_sym_func] = ACTIONS(3647), + [anon_sym_BANG] = ACTIONS(3645), + [anon_sym_struct] = ACTIONS(3647), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_DASH] = ACTIONS(3645), + [anon_sym_DOLLAR] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3645), + [anon_sym_void] = ACTIONS(3647), + [anon_sym_anyopaque] = ACTIONS(3647), + [anon_sym_bool] = ACTIONS(3647), + [anon_sym_int] = ACTIONS(3647), + [anon_sym_uint] = ACTIONS(3647), + [anon_sym_float] = ACTIONS(3647), + [anon_sym_range] = ACTIONS(3647), + [anon_sym_i8] = ACTIONS(3647), + [anon_sym_i16] = ACTIONS(3647), + [anon_sym_i32] = ACTIONS(3647), + [anon_sym_i64] = ACTIONS(3647), + [anon_sym_u8] = ACTIONS(3647), + [anon_sym_u16] = ACTIONS(3647), + [anon_sym_u32] = ACTIONS(3647), + [anon_sym_u64] = ACTIONS(3647), + [anon_sym_isize] = ACTIONS(3647), + [anon_sym_usize] = ACTIONS(3647), + [anon_sym_f32] = ACTIONS(3647), + [anon_sym_f64] = ACTIONS(3647), + [anon_sym_c_char] = ACTIONS(3647), + [anon_sym_c_schar] = ACTIONS(3647), + [anon_sym_c_uchar] = ACTIONS(3647), + [anon_sym_c_short] = ACTIONS(3647), + [anon_sym_c_ushort] = ACTIONS(3647), + [anon_sym_c_int] = ACTIONS(3647), + [anon_sym_c_uint] = ACTIONS(3647), + [anon_sym_c_long] = ACTIONS(3647), + [anon_sym_c_ulong] = ACTIONS(3647), + [anon_sym_c_longlong] = ACTIONS(3647), + [anon_sym_c_ulonglong] = ACTIONS(3647), + [anon_sym_c_float] = ACTIONS(3647), + [anon_sym_c_double] = ACTIONS(3647), + [anon_sym_c_longdouble] = ACTIONS(3647), + [anon_sym_return] = ACTIONS(3647), + [anon_sym_yield] = ACTIONS(3647), + [anon_sym_break] = ACTIONS(3647), + [anon_sym_continue] = ACTIONS(3647), + [anon_sym_defer] = ACTIONS(3647), + [anon_sym_errdefer] = ACTIONS(3647), + [anon_sym_if] = ACTIONS(3647), + [anon_sym_else] = ACTIONS(3647), + [anon_sym_while] = ACTIONS(3647), + [anon_sym_expand] = ACTIONS(3647), + [anon_sym_for] = ACTIONS(3647), + [anon_sym_match] = ACTIONS(3647), + [anon_sym_AMP] = ACTIONS(3645), + [anon_sym_TILDE] = ACTIONS(3645), + [anon_sym_try] = ACTIONS(3647), + [anon_sym_DOT] = ACTIONS(3645), + [anon_sym_true] = ACTIONS(3647), + [anon_sym_false] = ACTIONS(3647), + [sym_none] = ACTIONS(3647), + [sym_undefined] = ACTIONS(3647), + [sym_sink] = ACTIONS(3647), + [sym_integer] = ACTIONS(3647), + [sym_float] = ACTIONS(3645), + [anon_sym_DQUOTE] = ACTIONS(3645), + [sym_multiline_string] = ACTIONS(3645), + [sym_character] = ACTIONS(3645), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3645), + }, + [STATE(1596)] = { + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3651), + [anon_sym_import] = ACTIONS(3651), + [anon_sym_test] = ACTIONS(3651), + [anon_sym_hide] = ACTIONS(3651), + [anon_sym_func] = ACTIONS(3651), + [anon_sym_BANG] = ACTIONS(3649), + [anon_sym_struct] = ACTIONS(3651), + [anon_sym_LPAREN] = ACTIONS(3649), + [anon_sym_RPAREN] = ACTIONS(3649), + [anon_sym_LBRACE] = ACTIONS(3649), + [anon_sym_RBRACE] = ACTIONS(3649), + [anon_sym_DASH] = ACTIONS(3649), + [anon_sym_DOLLAR] = ACTIONS(3649), + [anon_sym_LBRACK] = ACTIONS(3649), + [anon_sym_void] = ACTIONS(3651), + [anon_sym_anyopaque] = ACTIONS(3651), + [anon_sym_bool] = ACTIONS(3651), + [anon_sym_int] = ACTIONS(3651), + [anon_sym_uint] = ACTIONS(3651), + [anon_sym_float] = ACTIONS(3651), + [anon_sym_range] = ACTIONS(3651), + [anon_sym_i8] = ACTIONS(3651), + [anon_sym_i16] = ACTIONS(3651), + [anon_sym_i32] = ACTIONS(3651), + [anon_sym_i64] = ACTIONS(3651), + [anon_sym_u8] = ACTIONS(3651), + [anon_sym_u16] = ACTIONS(3651), + [anon_sym_u32] = ACTIONS(3651), + [anon_sym_u64] = ACTIONS(3651), + [anon_sym_isize] = ACTIONS(3651), + [anon_sym_usize] = ACTIONS(3651), + [anon_sym_f32] = ACTIONS(3651), + [anon_sym_f64] = ACTIONS(3651), + [anon_sym_c_char] = ACTIONS(3651), + [anon_sym_c_schar] = ACTIONS(3651), + [anon_sym_c_uchar] = ACTIONS(3651), + [anon_sym_c_short] = ACTIONS(3651), + [anon_sym_c_ushort] = ACTIONS(3651), + [anon_sym_c_int] = ACTIONS(3651), + [anon_sym_c_uint] = ACTIONS(3651), + [anon_sym_c_long] = ACTIONS(3651), + [anon_sym_c_ulong] = ACTIONS(3651), + [anon_sym_c_longlong] = ACTIONS(3651), + [anon_sym_c_ulonglong] = ACTIONS(3651), + [anon_sym_c_float] = ACTIONS(3651), + [anon_sym_c_double] = ACTIONS(3651), + [anon_sym_c_longdouble] = ACTIONS(3651), + [anon_sym_return] = ACTIONS(3651), + [anon_sym_yield] = ACTIONS(3651), + [anon_sym_break] = ACTIONS(3651), + [anon_sym_continue] = ACTIONS(3651), + [anon_sym_defer] = ACTIONS(3651), + [anon_sym_errdefer] = ACTIONS(3651), + [anon_sym_if] = ACTIONS(3651), + [anon_sym_else] = ACTIONS(3651), + [anon_sym_while] = ACTIONS(3651), + [anon_sym_expand] = ACTIONS(3651), + [anon_sym_for] = ACTIONS(3651), + [anon_sym_match] = ACTIONS(3651), + [anon_sym_AMP] = ACTIONS(3649), + [anon_sym_TILDE] = ACTIONS(3649), + [anon_sym_try] = ACTIONS(3651), + [anon_sym_DOT] = ACTIONS(3649), + [anon_sym_true] = ACTIONS(3651), + [anon_sym_false] = ACTIONS(3651), + [sym_none] = ACTIONS(3651), + [sym_undefined] = ACTIONS(3651), + [sym_sink] = ACTIONS(3651), + [sym_integer] = ACTIONS(3651), + [sym_float] = ACTIONS(3649), + [anon_sym_DQUOTE] = ACTIONS(3649), + [sym_multiline_string] = ACTIONS(3649), + [sym_character] = ACTIONS(3649), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3649), + }, + [STATE(1597)] = { + [ts_builtin_sym_end] = ACTIONS(3653), + [sym_identifier] = ACTIONS(3655), + [anon_sym_import] = ACTIONS(3655), + [anon_sym_test] = ACTIONS(3655), + [anon_sym_hide] = ACTIONS(3655), + [anon_sym_func] = ACTIONS(3655), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_struct] = ACTIONS(3655), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_RPAREN] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3653), + [anon_sym_RBRACE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [anon_sym_DOLLAR] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3653), + [anon_sym_void] = ACTIONS(3655), + [anon_sym_anyopaque] = ACTIONS(3655), + [anon_sym_bool] = ACTIONS(3655), + [anon_sym_int] = ACTIONS(3655), + [anon_sym_uint] = ACTIONS(3655), + [anon_sym_float] = ACTIONS(3655), + [anon_sym_range] = ACTIONS(3655), + [anon_sym_i8] = ACTIONS(3655), + [anon_sym_i16] = ACTIONS(3655), + [anon_sym_i32] = ACTIONS(3655), + [anon_sym_i64] = ACTIONS(3655), + [anon_sym_u8] = ACTIONS(3655), + [anon_sym_u16] = ACTIONS(3655), + [anon_sym_u32] = ACTIONS(3655), + [anon_sym_u64] = ACTIONS(3655), + [anon_sym_isize] = ACTIONS(3655), + [anon_sym_usize] = ACTIONS(3655), + [anon_sym_f32] = ACTIONS(3655), + [anon_sym_f64] = ACTIONS(3655), + [anon_sym_c_char] = ACTIONS(3655), + [anon_sym_c_schar] = ACTIONS(3655), + [anon_sym_c_uchar] = ACTIONS(3655), + [anon_sym_c_short] = ACTIONS(3655), + [anon_sym_c_ushort] = ACTIONS(3655), + [anon_sym_c_int] = ACTIONS(3655), + [anon_sym_c_uint] = ACTIONS(3655), + [anon_sym_c_long] = ACTIONS(3655), + [anon_sym_c_ulong] = ACTIONS(3655), + [anon_sym_c_longlong] = ACTIONS(3655), + [anon_sym_c_ulonglong] = ACTIONS(3655), + [anon_sym_c_float] = ACTIONS(3655), + [anon_sym_c_double] = ACTIONS(3655), + [anon_sym_c_longdouble] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_yield] = ACTIONS(3655), + [anon_sym_break] = ACTIONS(3655), + [anon_sym_continue] = ACTIONS(3655), + [anon_sym_defer] = ACTIONS(3655), + [anon_sym_errdefer] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_else] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_expand] = ACTIONS(3655), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_match] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_DOT] = ACTIONS(3653), + [anon_sym_true] = ACTIONS(3655), + [anon_sym_false] = ACTIONS(3655), + [sym_none] = ACTIONS(3655), + [sym_undefined] = ACTIONS(3655), + [sym_sink] = ACTIONS(3655), + [sym_integer] = ACTIONS(3655), + [sym_float] = ACTIONS(3653), + [anon_sym_DQUOTE] = ACTIONS(3653), + [sym_multiline_string] = ACTIONS(3653), + [sym_character] = ACTIONS(3653), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3653), + }, + [STATE(1598)] = { + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3659), + [anon_sym_import] = ACTIONS(3659), + [anon_sym_test] = ACTIONS(3659), + [anon_sym_hide] = ACTIONS(3659), + [anon_sym_func] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3657), + [anon_sym_struct] = ACTIONS(3659), + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_DASH] = ACTIONS(3657), + [anon_sym_DOLLAR] = ACTIONS(3657), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_void] = ACTIONS(3659), + [anon_sym_anyopaque] = ACTIONS(3659), + [anon_sym_bool] = ACTIONS(3659), + [anon_sym_int] = ACTIONS(3659), + [anon_sym_uint] = ACTIONS(3659), + [anon_sym_float] = ACTIONS(3659), + [anon_sym_range] = ACTIONS(3659), + [anon_sym_i8] = ACTIONS(3659), + [anon_sym_i16] = ACTIONS(3659), + [anon_sym_i32] = ACTIONS(3659), + [anon_sym_i64] = ACTIONS(3659), + [anon_sym_u8] = ACTIONS(3659), + [anon_sym_u16] = ACTIONS(3659), + [anon_sym_u32] = ACTIONS(3659), + [anon_sym_u64] = ACTIONS(3659), + [anon_sym_isize] = ACTIONS(3659), + [anon_sym_usize] = ACTIONS(3659), + [anon_sym_f32] = ACTIONS(3659), + [anon_sym_f64] = ACTIONS(3659), + [anon_sym_c_char] = ACTIONS(3659), + [anon_sym_c_schar] = ACTIONS(3659), + [anon_sym_c_uchar] = ACTIONS(3659), + [anon_sym_c_short] = ACTIONS(3659), + [anon_sym_c_ushort] = ACTIONS(3659), + [anon_sym_c_int] = ACTIONS(3659), + [anon_sym_c_uint] = ACTIONS(3659), + [anon_sym_c_long] = ACTIONS(3659), + [anon_sym_c_ulong] = ACTIONS(3659), + [anon_sym_c_longlong] = ACTIONS(3659), + [anon_sym_c_ulonglong] = ACTIONS(3659), + [anon_sym_c_float] = ACTIONS(3659), + [anon_sym_c_double] = ACTIONS(3659), + [anon_sym_c_longdouble] = ACTIONS(3659), + [anon_sym_return] = ACTIONS(3659), + [anon_sym_yield] = ACTIONS(3659), + [anon_sym_break] = ACTIONS(3659), + [anon_sym_continue] = ACTIONS(3659), + [anon_sym_defer] = ACTIONS(3659), + [anon_sym_errdefer] = ACTIONS(3659), + [anon_sym_if] = ACTIONS(3659), + [anon_sym_else] = ACTIONS(3659), + [anon_sym_while] = ACTIONS(3659), + [anon_sym_expand] = ACTIONS(3659), + [anon_sym_for] = ACTIONS(3659), + [anon_sym_match] = ACTIONS(3659), + [anon_sym_AMP] = ACTIONS(3657), + [anon_sym_TILDE] = ACTIONS(3657), + [anon_sym_try] = ACTIONS(3659), + [anon_sym_DOT] = ACTIONS(3657), + [anon_sym_true] = ACTIONS(3659), + [anon_sym_false] = ACTIONS(3659), + [sym_none] = ACTIONS(3659), + [sym_undefined] = ACTIONS(3659), + [sym_sink] = ACTIONS(3659), + [sym_integer] = ACTIONS(3659), + [sym_float] = ACTIONS(3657), + [anon_sym_DQUOTE] = ACTIONS(3657), + [sym_multiline_string] = ACTIONS(3657), + [sym_character] = ACTIONS(3657), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3657), + }, + [STATE(1599)] = { + [ts_builtin_sym_end] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3663), + [anon_sym_import] = ACTIONS(3663), + [anon_sym_test] = ACTIONS(3663), + [anon_sym_hide] = ACTIONS(3663), + [anon_sym_func] = ACTIONS(3663), + [anon_sym_BANG] = ACTIONS(3661), + [anon_sym_struct] = ACTIONS(3663), + [anon_sym_LPAREN] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACE] = ACTIONS(3661), + [anon_sym_RBRACE] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_DOLLAR] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3661), + [anon_sym_void] = ACTIONS(3663), + [anon_sym_anyopaque] = ACTIONS(3663), + [anon_sym_bool] = ACTIONS(3663), + [anon_sym_int] = ACTIONS(3663), + [anon_sym_uint] = ACTIONS(3663), + [anon_sym_float] = ACTIONS(3663), + [anon_sym_range] = ACTIONS(3663), + [anon_sym_i8] = ACTIONS(3663), + [anon_sym_i16] = ACTIONS(3663), + [anon_sym_i32] = ACTIONS(3663), + [anon_sym_i64] = ACTIONS(3663), + [anon_sym_u8] = ACTIONS(3663), + [anon_sym_u16] = ACTIONS(3663), + [anon_sym_u32] = ACTIONS(3663), + [anon_sym_u64] = ACTIONS(3663), + [anon_sym_isize] = ACTIONS(3663), + [anon_sym_usize] = ACTIONS(3663), + [anon_sym_f32] = ACTIONS(3663), + [anon_sym_f64] = ACTIONS(3663), + [anon_sym_c_char] = ACTIONS(3663), + [anon_sym_c_schar] = ACTIONS(3663), + [anon_sym_c_uchar] = ACTIONS(3663), + [anon_sym_c_short] = ACTIONS(3663), + [anon_sym_c_ushort] = ACTIONS(3663), + [anon_sym_c_int] = ACTIONS(3663), + [anon_sym_c_uint] = ACTIONS(3663), + [anon_sym_c_long] = ACTIONS(3663), + [anon_sym_c_ulong] = ACTIONS(3663), + [anon_sym_c_longlong] = ACTIONS(3663), + [anon_sym_c_ulonglong] = ACTIONS(3663), + [anon_sym_c_float] = ACTIONS(3663), + [anon_sym_c_double] = ACTIONS(3663), + [anon_sym_c_longdouble] = ACTIONS(3663), + [anon_sym_return] = ACTIONS(3663), + [anon_sym_yield] = ACTIONS(3663), + [anon_sym_break] = ACTIONS(3663), + [anon_sym_continue] = ACTIONS(3663), + [anon_sym_defer] = ACTIONS(3663), + [anon_sym_errdefer] = ACTIONS(3663), + [anon_sym_if] = ACTIONS(3663), + [anon_sym_else] = ACTIONS(3663), + [anon_sym_while] = ACTIONS(3663), + [anon_sym_expand] = ACTIONS(3663), + [anon_sym_for] = ACTIONS(3663), + [anon_sym_match] = ACTIONS(3663), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3661), + [anon_sym_try] = ACTIONS(3663), + [anon_sym_DOT] = ACTIONS(3661), + [anon_sym_true] = ACTIONS(3663), + [anon_sym_false] = ACTIONS(3663), + [sym_none] = ACTIONS(3663), + [sym_undefined] = ACTIONS(3663), + [sym_sink] = ACTIONS(3663), + [sym_integer] = ACTIONS(3663), + [sym_float] = ACTIONS(3661), + [anon_sym_DQUOTE] = ACTIONS(3661), + [sym_multiline_string] = ACTIONS(3661), + [sym_character] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3661), + }, + [STATE(1600)] = { + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3667), + [anon_sym_import] = ACTIONS(3667), + [anon_sym_test] = ACTIONS(3667), + [anon_sym_hide] = ACTIONS(3667), + [anon_sym_func] = ACTIONS(3667), + [anon_sym_BANG] = ACTIONS(3665), + [anon_sym_struct] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_DASH] = ACTIONS(3665), + [anon_sym_DOLLAR] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3665), + [anon_sym_void] = ACTIONS(3667), + [anon_sym_anyopaque] = ACTIONS(3667), + [anon_sym_bool] = ACTIONS(3667), + [anon_sym_int] = ACTIONS(3667), + [anon_sym_uint] = ACTIONS(3667), + [anon_sym_float] = ACTIONS(3667), + [anon_sym_range] = ACTIONS(3667), + [anon_sym_i8] = ACTIONS(3667), + [anon_sym_i16] = ACTIONS(3667), + [anon_sym_i32] = ACTIONS(3667), + [anon_sym_i64] = ACTIONS(3667), + [anon_sym_u8] = ACTIONS(3667), + [anon_sym_u16] = ACTIONS(3667), + [anon_sym_u32] = ACTIONS(3667), + [anon_sym_u64] = ACTIONS(3667), + [anon_sym_isize] = ACTIONS(3667), + [anon_sym_usize] = ACTIONS(3667), + [anon_sym_f32] = ACTIONS(3667), + [anon_sym_f64] = ACTIONS(3667), + [anon_sym_c_char] = ACTIONS(3667), + [anon_sym_c_schar] = ACTIONS(3667), + [anon_sym_c_uchar] = ACTIONS(3667), + [anon_sym_c_short] = ACTIONS(3667), + [anon_sym_c_ushort] = ACTIONS(3667), + [anon_sym_c_int] = ACTIONS(3667), + [anon_sym_c_uint] = ACTIONS(3667), + [anon_sym_c_long] = ACTIONS(3667), + [anon_sym_c_ulong] = ACTIONS(3667), + [anon_sym_c_longlong] = ACTIONS(3667), + [anon_sym_c_ulonglong] = ACTIONS(3667), + [anon_sym_c_float] = ACTIONS(3667), + [anon_sym_c_double] = ACTIONS(3667), + [anon_sym_c_longdouble] = ACTIONS(3667), + [anon_sym_return] = ACTIONS(3667), + [anon_sym_yield] = ACTIONS(3667), + [anon_sym_break] = ACTIONS(3667), + [anon_sym_continue] = ACTIONS(3667), + [anon_sym_defer] = ACTIONS(3667), + [anon_sym_errdefer] = ACTIONS(3667), + [anon_sym_if] = ACTIONS(3667), + [anon_sym_else] = ACTIONS(3667), + [anon_sym_while] = ACTIONS(3667), + [anon_sym_expand] = ACTIONS(3667), + [anon_sym_for] = ACTIONS(3667), + [anon_sym_match] = ACTIONS(3667), + [anon_sym_AMP] = ACTIONS(3665), + [anon_sym_TILDE] = ACTIONS(3665), + [anon_sym_try] = ACTIONS(3667), + [anon_sym_DOT] = ACTIONS(3665), + [anon_sym_true] = ACTIONS(3667), + [anon_sym_false] = ACTIONS(3667), + [sym_none] = ACTIONS(3667), + [sym_undefined] = ACTIONS(3667), + [sym_sink] = ACTIONS(3667), + [sym_integer] = ACTIONS(3667), + [sym_float] = ACTIONS(3665), + [anon_sym_DQUOTE] = ACTIONS(3665), + [sym_multiline_string] = ACTIONS(3665), + [sym_character] = ACTIONS(3665), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3665), + }, + [STATE(1601)] = { + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3671), + [anon_sym_import] = ACTIONS(3671), + [anon_sym_test] = ACTIONS(3671), + [anon_sym_hide] = ACTIONS(3671), + [anon_sym_func] = ACTIONS(3671), + [anon_sym_BANG] = ACTIONS(3669), + [anon_sym_struct] = ACTIONS(3671), + [anon_sym_LPAREN] = ACTIONS(3669), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_LBRACE] = ACTIONS(3669), + [anon_sym_RBRACE] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3669), + [anon_sym_DOLLAR] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3669), + [anon_sym_void] = ACTIONS(3671), + [anon_sym_anyopaque] = ACTIONS(3671), + [anon_sym_bool] = ACTIONS(3671), + [anon_sym_int] = ACTIONS(3671), + [anon_sym_uint] = ACTIONS(3671), + [anon_sym_float] = ACTIONS(3671), + [anon_sym_range] = ACTIONS(3671), + [anon_sym_i8] = ACTIONS(3671), + [anon_sym_i16] = ACTIONS(3671), + [anon_sym_i32] = ACTIONS(3671), + [anon_sym_i64] = ACTIONS(3671), + [anon_sym_u8] = ACTIONS(3671), + [anon_sym_u16] = ACTIONS(3671), + [anon_sym_u32] = ACTIONS(3671), + [anon_sym_u64] = ACTIONS(3671), + [anon_sym_isize] = ACTIONS(3671), + [anon_sym_usize] = ACTIONS(3671), + [anon_sym_f32] = ACTIONS(3671), + [anon_sym_f64] = ACTIONS(3671), + [anon_sym_c_char] = ACTIONS(3671), + [anon_sym_c_schar] = ACTIONS(3671), + [anon_sym_c_uchar] = ACTIONS(3671), + [anon_sym_c_short] = ACTIONS(3671), + [anon_sym_c_ushort] = ACTIONS(3671), + [anon_sym_c_int] = ACTIONS(3671), + [anon_sym_c_uint] = ACTIONS(3671), + [anon_sym_c_long] = ACTIONS(3671), + [anon_sym_c_ulong] = ACTIONS(3671), + [anon_sym_c_longlong] = ACTIONS(3671), + [anon_sym_c_ulonglong] = ACTIONS(3671), + [anon_sym_c_float] = ACTIONS(3671), + [anon_sym_c_double] = ACTIONS(3671), + [anon_sym_c_longdouble] = ACTIONS(3671), + [anon_sym_return] = ACTIONS(3671), + [anon_sym_yield] = ACTIONS(3671), + [anon_sym_break] = ACTIONS(3671), + [anon_sym_continue] = ACTIONS(3671), + [anon_sym_defer] = ACTIONS(3671), + [anon_sym_errdefer] = ACTIONS(3671), + [anon_sym_if] = ACTIONS(3671), + [anon_sym_else] = ACTIONS(3671), + [anon_sym_while] = ACTIONS(3671), + [anon_sym_expand] = ACTIONS(3671), + [anon_sym_for] = ACTIONS(3671), + [anon_sym_match] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3669), + [anon_sym_TILDE] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3671), + [anon_sym_DOT] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(3671), + [anon_sym_false] = ACTIONS(3671), + [sym_none] = ACTIONS(3671), + [sym_undefined] = ACTIONS(3671), + [sym_sink] = ACTIONS(3671), + [sym_integer] = ACTIONS(3671), + [sym_float] = ACTIONS(3669), + [anon_sym_DQUOTE] = ACTIONS(3669), + [sym_multiline_string] = ACTIONS(3669), + [sym_character] = ACTIONS(3669), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3669), + }, + [STATE(1602)] = { + [ts_builtin_sym_end] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3675), + [anon_sym_import] = ACTIONS(3675), + [anon_sym_test] = ACTIONS(3675), + [anon_sym_hide] = ACTIONS(3675), + [anon_sym_func] = ACTIONS(3675), + [anon_sym_BANG] = ACTIONS(3673), + [anon_sym_struct] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3673), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_LBRACE] = ACTIONS(3673), + [anon_sym_RBRACE] = ACTIONS(3673), + [anon_sym_DASH] = ACTIONS(3673), + [anon_sym_DOLLAR] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3673), + [anon_sym_void] = ACTIONS(3675), + [anon_sym_anyopaque] = ACTIONS(3675), + [anon_sym_bool] = ACTIONS(3675), + [anon_sym_int] = ACTIONS(3675), + [anon_sym_uint] = ACTIONS(3675), + [anon_sym_float] = ACTIONS(3675), + [anon_sym_range] = ACTIONS(3675), + [anon_sym_i8] = ACTIONS(3675), + [anon_sym_i16] = ACTIONS(3675), + [anon_sym_i32] = ACTIONS(3675), + [anon_sym_i64] = ACTIONS(3675), + [anon_sym_u8] = ACTIONS(3675), + [anon_sym_u16] = ACTIONS(3675), + [anon_sym_u32] = ACTIONS(3675), + [anon_sym_u64] = ACTIONS(3675), + [anon_sym_isize] = ACTIONS(3675), + [anon_sym_usize] = ACTIONS(3675), + [anon_sym_f32] = ACTIONS(3675), + [anon_sym_f64] = ACTIONS(3675), + [anon_sym_c_char] = ACTIONS(3675), + [anon_sym_c_schar] = ACTIONS(3675), + [anon_sym_c_uchar] = ACTIONS(3675), + [anon_sym_c_short] = ACTIONS(3675), + [anon_sym_c_ushort] = ACTIONS(3675), + [anon_sym_c_int] = ACTIONS(3675), + [anon_sym_c_uint] = ACTIONS(3675), + [anon_sym_c_long] = ACTIONS(3675), + [anon_sym_c_ulong] = ACTIONS(3675), + [anon_sym_c_longlong] = ACTIONS(3675), + [anon_sym_c_ulonglong] = ACTIONS(3675), + [anon_sym_c_float] = ACTIONS(3675), + [anon_sym_c_double] = ACTIONS(3675), + [anon_sym_c_longdouble] = ACTIONS(3675), + [anon_sym_return] = ACTIONS(3675), + [anon_sym_yield] = ACTIONS(3675), + [anon_sym_break] = ACTIONS(3675), + [anon_sym_continue] = ACTIONS(3675), + [anon_sym_defer] = ACTIONS(3675), + [anon_sym_errdefer] = ACTIONS(3675), + [anon_sym_if] = ACTIONS(3675), + [anon_sym_else] = ACTIONS(3675), + [anon_sym_while] = ACTIONS(3675), + [anon_sym_expand] = ACTIONS(3675), + [anon_sym_for] = ACTIONS(3675), + [anon_sym_match] = ACTIONS(3675), + [anon_sym_AMP] = ACTIONS(3673), + [anon_sym_TILDE] = ACTIONS(3673), + [anon_sym_try] = ACTIONS(3675), + [anon_sym_DOT] = ACTIONS(3673), + [anon_sym_true] = ACTIONS(3675), + [anon_sym_false] = ACTIONS(3675), + [sym_none] = ACTIONS(3675), + [sym_undefined] = ACTIONS(3675), + [sym_sink] = ACTIONS(3675), + [sym_integer] = ACTIONS(3675), + [sym_float] = ACTIONS(3673), + [anon_sym_DQUOTE] = ACTIONS(3673), + [sym_multiline_string] = ACTIONS(3673), + [sym_character] = ACTIONS(3673), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3673), + }, + [STATE(1603)] = { + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3679), + [anon_sym_import] = ACTIONS(3679), + [anon_sym_test] = ACTIONS(3679), + [anon_sym_hide] = ACTIONS(3679), + [anon_sym_func] = ACTIONS(3679), + [anon_sym_BANG] = ACTIONS(3677), + [anon_sym_struct] = ACTIONS(3679), + [anon_sym_LPAREN] = ACTIONS(3677), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_LBRACE] = ACTIONS(3677), + [anon_sym_RBRACE] = ACTIONS(3677), + [anon_sym_DASH] = ACTIONS(3677), + [anon_sym_DOLLAR] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3677), + [anon_sym_void] = ACTIONS(3679), + [anon_sym_anyopaque] = ACTIONS(3679), + [anon_sym_bool] = ACTIONS(3679), + [anon_sym_int] = ACTIONS(3679), + [anon_sym_uint] = ACTIONS(3679), + [anon_sym_float] = ACTIONS(3679), + [anon_sym_range] = ACTIONS(3679), + [anon_sym_i8] = ACTIONS(3679), + [anon_sym_i16] = ACTIONS(3679), + [anon_sym_i32] = ACTIONS(3679), + [anon_sym_i64] = ACTIONS(3679), + [anon_sym_u8] = ACTIONS(3679), + [anon_sym_u16] = ACTIONS(3679), + [anon_sym_u32] = ACTIONS(3679), + [anon_sym_u64] = ACTIONS(3679), + [anon_sym_isize] = ACTIONS(3679), + [anon_sym_usize] = ACTIONS(3679), + [anon_sym_f32] = ACTIONS(3679), + [anon_sym_f64] = ACTIONS(3679), + [anon_sym_c_char] = ACTIONS(3679), + [anon_sym_c_schar] = ACTIONS(3679), + [anon_sym_c_uchar] = ACTIONS(3679), + [anon_sym_c_short] = ACTIONS(3679), + [anon_sym_c_ushort] = ACTIONS(3679), + [anon_sym_c_int] = ACTIONS(3679), + [anon_sym_c_uint] = ACTIONS(3679), + [anon_sym_c_long] = ACTIONS(3679), + [anon_sym_c_ulong] = ACTIONS(3679), + [anon_sym_c_longlong] = ACTIONS(3679), + [anon_sym_c_ulonglong] = ACTIONS(3679), + [anon_sym_c_float] = ACTIONS(3679), + [anon_sym_c_double] = ACTIONS(3679), + [anon_sym_c_longdouble] = ACTIONS(3679), + [anon_sym_return] = ACTIONS(3679), + [anon_sym_yield] = ACTIONS(3679), + [anon_sym_break] = ACTIONS(3679), + [anon_sym_continue] = ACTIONS(3679), + [anon_sym_defer] = ACTIONS(3679), + [anon_sym_errdefer] = ACTIONS(3679), + [anon_sym_if] = ACTIONS(3679), + [anon_sym_else] = ACTIONS(3679), + [anon_sym_while] = ACTIONS(3679), + [anon_sym_expand] = ACTIONS(3679), + [anon_sym_for] = ACTIONS(3679), + [anon_sym_match] = ACTIONS(3679), + [anon_sym_AMP] = ACTIONS(3677), + [anon_sym_TILDE] = ACTIONS(3677), + [anon_sym_try] = ACTIONS(3679), + [anon_sym_DOT] = ACTIONS(3677), + [anon_sym_true] = ACTIONS(3679), + [anon_sym_false] = ACTIONS(3679), + [sym_none] = ACTIONS(3679), + [sym_undefined] = ACTIONS(3679), + [sym_sink] = ACTIONS(3679), + [sym_integer] = ACTIONS(3679), + [sym_float] = ACTIONS(3677), + [anon_sym_DQUOTE] = ACTIONS(3677), + [sym_multiline_string] = ACTIONS(3677), + [sym_character] = ACTIONS(3677), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3677), + }, + [STATE(1604)] = { + [ts_builtin_sym_end] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3683), + [anon_sym_import] = ACTIONS(3683), + [anon_sym_test] = ACTIONS(3683), + [anon_sym_hide] = ACTIONS(3683), + [anon_sym_func] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(3681), + [anon_sym_struct] = ACTIONS(3683), + [anon_sym_LPAREN] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LBRACE] = ACTIONS(3681), + [anon_sym_RBRACE] = ACTIONS(3681), + [anon_sym_DASH] = ACTIONS(3681), + [anon_sym_DOLLAR] = ACTIONS(3681), + [anon_sym_LBRACK] = ACTIONS(3681), + [anon_sym_void] = ACTIONS(3683), + [anon_sym_anyopaque] = ACTIONS(3683), + [anon_sym_bool] = ACTIONS(3683), + [anon_sym_int] = ACTIONS(3683), + [anon_sym_uint] = ACTIONS(3683), + [anon_sym_float] = ACTIONS(3683), + [anon_sym_range] = ACTIONS(3683), + [anon_sym_i8] = ACTIONS(3683), + [anon_sym_i16] = ACTIONS(3683), + [anon_sym_i32] = ACTIONS(3683), + [anon_sym_i64] = ACTIONS(3683), + [anon_sym_u8] = ACTIONS(3683), + [anon_sym_u16] = ACTIONS(3683), + [anon_sym_u32] = ACTIONS(3683), + [anon_sym_u64] = ACTIONS(3683), + [anon_sym_isize] = ACTIONS(3683), + [anon_sym_usize] = ACTIONS(3683), + [anon_sym_f32] = ACTIONS(3683), + [anon_sym_f64] = ACTIONS(3683), + [anon_sym_c_char] = ACTIONS(3683), + [anon_sym_c_schar] = ACTIONS(3683), + [anon_sym_c_uchar] = ACTIONS(3683), + [anon_sym_c_short] = ACTIONS(3683), + [anon_sym_c_ushort] = ACTIONS(3683), + [anon_sym_c_int] = ACTIONS(3683), + [anon_sym_c_uint] = ACTIONS(3683), + [anon_sym_c_long] = ACTIONS(3683), + [anon_sym_c_ulong] = ACTIONS(3683), + [anon_sym_c_longlong] = ACTIONS(3683), + [anon_sym_c_ulonglong] = ACTIONS(3683), + [anon_sym_c_float] = ACTIONS(3683), + [anon_sym_c_double] = ACTIONS(3683), + [anon_sym_c_longdouble] = ACTIONS(3683), + [anon_sym_return] = ACTIONS(3683), + [anon_sym_yield] = ACTIONS(3683), + [anon_sym_break] = ACTIONS(3683), + [anon_sym_continue] = ACTIONS(3683), + [anon_sym_defer] = ACTIONS(3683), + [anon_sym_errdefer] = ACTIONS(3683), + [anon_sym_if] = ACTIONS(3683), + [anon_sym_else] = ACTIONS(3683), + [anon_sym_while] = ACTIONS(3683), + [anon_sym_expand] = ACTIONS(3683), + [anon_sym_for] = ACTIONS(3683), + [anon_sym_match] = ACTIONS(3683), + [anon_sym_AMP] = ACTIONS(3681), + [anon_sym_TILDE] = ACTIONS(3681), + [anon_sym_try] = ACTIONS(3683), + [anon_sym_DOT] = ACTIONS(3681), + [anon_sym_true] = ACTIONS(3683), + [anon_sym_false] = ACTIONS(3683), + [sym_none] = ACTIONS(3683), + [sym_undefined] = ACTIONS(3683), + [sym_sink] = ACTIONS(3683), + [sym_integer] = ACTIONS(3683), + [sym_float] = ACTIONS(3681), + [anon_sym_DQUOTE] = ACTIONS(3681), + [sym_multiline_string] = ACTIONS(3681), + [sym_character] = ACTIONS(3681), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3681), + }, + [STATE(1605)] = { + [ts_builtin_sym_end] = ACTIONS(3685), + [sym_identifier] = ACTIONS(3687), + [anon_sym_import] = ACTIONS(3687), + [anon_sym_test] = ACTIONS(3687), + [anon_sym_hide] = ACTIONS(3687), + [anon_sym_func] = ACTIONS(3687), + [anon_sym_BANG] = ACTIONS(3685), + [anon_sym_struct] = ACTIONS(3687), + [anon_sym_LPAREN] = ACTIONS(3685), + [anon_sym_RPAREN] = ACTIONS(3685), + [anon_sym_LBRACE] = ACTIONS(3685), + [anon_sym_RBRACE] = ACTIONS(3685), + [anon_sym_DASH] = ACTIONS(3685), + [anon_sym_DOLLAR] = ACTIONS(3685), + [anon_sym_LBRACK] = ACTIONS(3685), + [anon_sym_void] = ACTIONS(3687), + [anon_sym_anyopaque] = ACTIONS(3687), + [anon_sym_bool] = ACTIONS(3687), + [anon_sym_int] = ACTIONS(3687), + [anon_sym_uint] = ACTIONS(3687), + [anon_sym_float] = ACTIONS(3687), + [anon_sym_range] = ACTIONS(3687), + [anon_sym_i8] = ACTIONS(3687), + [anon_sym_i16] = ACTIONS(3687), + [anon_sym_i32] = ACTIONS(3687), + [anon_sym_i64] = ACTIONS(3687), + [anon_sym_u8] = ACTIONS(3687), + [anon_sym_u16] = ACTIONS(3687), + [anon_sym_u32] = ACTIONS(3687), + [anon_sym_u64] = ACTIONS(3687), + [anon_sym_isize] = ACTIONS(3687), + [anon_sym_usize] = ACTIONS(3687), + [anon_sym_f32] = ACTIONS(3687), + [anon_sym_f64] = ACTIONS(3687), + [anon_sym_c_char] = ACTIONS(3687), + [anon_sym_c_schar] = ACTIONS(3687), + [anon_sym_c_uchar] = ACTIONS(3687), + [anon_sym_c_short] = ACTIONS(3687), + [anon_sym_c_ushort] = ACTIONS(3687), + [anon_sym_c_int] = ACTIONS(3687), + [anon_sym_c_uint] = ACTIONS(3687), + [anon_sym_c_long] = ACTIONS(3687), + [anon_sym_c_ulong] = ACTIONS(3687), + [anon_sym_c_longlong] = ACTIONS(3687), + [anon_sym_c_ulonglong] = ACTIONS(3687), + [anon_sym_c_float] = ACTIONS(3687), + [anon_sym_c_double] = ACTIONS(3687), + [anon_sym_c_longdouble] = ACTIONS(3687), + [anon_sym_return] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_break] = ACTIONS(3687), + [anon_sym_continue] = ACTIONS(3687), + [anon_sym_defer] = ACTIONS(3687), + [anon_sym_errdefer] = ACTIONS(3687), + [anon_sym_if] = ACTIONS(3687), + [anon_sym_else] = ACTIONS(3687), + [anon_sym_while] = ACTIONS(3687), + [anon_sym_expand] = ACTIONS(3687), + [anon_sym_for] = ACTIONS(3687), + [anon_sym_match] = ACTIONS(3687), + [anon_sym_AMP] = ACTIONS(3685), + [anon_sym_TILDE] = ACTIONS(3685), + [anon_sym_try] = ACTIONS(3687), + [anon_sym_DOT] = ACTIONS(3685), + [anon_sym_true] = ACTIONS(3687), + [anon_sym_false] = ACTIONS(3687), + [sym_none] = ACTIONS(3687), + [sym_undefined] = ACTIONS(3687), + [sym_sink] = ACTIONS(3687), + [sym_integer] = ACTIONS(3687), + [sym_float] = ACTIONS(3685), + [anon_sym_DQUOTE] = ACTIONS(3685), + [sym_multiline_string] = ACTIONS(3685), + [sym_character] = ACTIONS(3685), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3685), + }, + [STATE(1606)] = { + [ts_builtin_sym_end] = ACTIONS(3689), + [sym_identifier] = ACTIONS(3691), + [anon_sym_import] = ACTIONS(3691), + [anon_sym_test] = ACTIONS(3691), + [anon_sym_hide] = ACTIONS(3691), + [anon_sym_func] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3689), + [anon_sym_struct] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_RPAREN] = ACTIONS(3689), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_RBRACE] = ACTIONS(3689), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_DOLLAR] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_void] = ACTIONS(3691), + [anon_sym_anyopaque] = ACTIONS(3691), + [anon_sym_bool] = ACTIONS(3691), + [anon_sym_int] = ACTIONS(3691), + [anon_sym_uint] = ACTIONS(3691), + [anon_sym_float] = ACTIONS(3691), + [anon_sym_range] = ACTIONS(3691), + [anon_sym_i8] = ACTIONS(3691), + [anon_sym_i16] = ACTIONS(3691), + [anon_sym_i32] = ACTIONS(3691), + [anon_sym_i64] = ACTIONS(3691), + [anon_sym_u8] = ACTIONS(3691), + [anon_sym_u16] = ACTIONS(3691), + [anon_sym_u32] = ACTIONS(3691), + [anon_sym_u64] = ACTIONS(3691), + [anon_sym_isize] = ACTIONS(3691), + [anon_sym_usize] = ACTIONS(3691), + [anon_sym_f32] = ACTIONS(3691), + [anon_sym_f64] = ACTIONS(3691), + [anon_sym_c_char] = ACTIONS(3691), + [anon_sym_c_schar] = ACTIONS(3691), + [anon_sym_c_uchar] = ACTIONS(3691), + [anon_sym_c_short] = ACTIONS(3691), + [anon_sym_c_ushort] = ACTIONS(3691), + [anon_sym_c_int] = ACTIONS(3691), + [anon_sym_c_uint] = ACTIONS(3691), + [anon_sym_c_long] = ACTIONS(3691), + [anon_sym_c_ulong] = ACTIONS(3691), + [anon_sym_c_longlong] = ACTIONS(3691), + [anon_sym_c_ulonglong] = ACTIONS(3691), + [anon_sym_c_float] = ACTIONS(3691), + [anon_sym_c_double] = ACTIONS(3691), + [anon_sym_c_longdouble] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_defer] = ACTIONS(3691), + [anon_sym_errdefer] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_else] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_expand] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_TILDE] = ACTIONS(3689), + [anon_sym_try] = ACTIONS(3691), + [anon_sym_DOT] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [sym_none] = ACTIONS(3691), + [sym_undefined] = ACTIONS(3691), + [sym_sink] = ACTIONS(3691), + [sym_integer] = ACTIONS(3691), + [sym_float] = ACTIONS(3689), + [anon_sym_DQUOTE] = ACTIONS(3689), + [sym_multiline_string] = ACTIONS(3689), + [sym_character] = ACTIONS(3689), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3689), + }, + [STATE(1607)] = { + [ts_builtin_sym_end] = ACTIONS(3693), + [sym_identifier] = ACTIONS(3695), + [anon_sym_import] = ACTIONS(3695), + [anon_sym_test] = ACTIONS(3695), + [anon_sym_hide] = ACTIONS(3695), + [anon_sym_func] = ACTIONS(3695), + [anon_sym_BANG] = ACTIONS(3693), + [anon_sym_struct] = ACTIONS(3695), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_DASH] = ACTIONS(3693), + [anon_sym_DOLLAR] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_void] = ACTIONS(3695), + [anon_sym_anyopaque] = ACTIONS(3695), + [anon_sym_bool] = ACTIONS(3695), + [anon_sym_int] = ACTIONS(3695), + [anon_sym_uint] = ACTIONS(3695), + [anon_sym_float] = ACTIONS(3695), + [anon_sym_range] = ACTIONS(3695), + [anon_sym_i8] = ACTIONS(3695), + [anon_sym_i16] = ACTIONS(3695), + [anon_sym_i32] = ACTIONS(3695), + [anon_sym_i64] = ACTIONS(3695), + [anon_sym_u8] = ACTIONS(3695), + [anon_sym_u16] = ACTIONS(3695), + [anon_sym_u32] = ACTIONS(3695), + [anon_sym_u64] = ACTIONS(3695), + [anon_sym_isize] = ACTIONS(3695), + [anon_sym_usize] = ACTIONS(3695), + [anon_sym_f32] = ACTIONS(3695), + [anon_sym_f64] = ACTIONS(3695), + [anon_sym_c_char] = ACTIONS(3695), + [anon_sym_c_schar] = ACTIONS(3695), + [anon_sym_c_uchar] = ACTIONS(3695), + [anon_sym_c_short] = ACTIONS(3695), + [anon_sym_c_ushort] = ACTIONS(3695), + [anon_sym_c_int] = ACTIONS(3695), + [anon_sym_c_uint] = ACTIONS(3695), + [anon_sym_c_long] = ACTIONS(3695), + [anon_sym_c_ulong] = ACTIONS(3695), + [anon_sym_c_longlong] = ACTIONS(3695), + [anon_sym_c_ulonglong] = ACTIONS(3695), + [anon_sym_c_float] = ACTIONS(3695), + [anon_sym_c_double] = ACTIONS(3695), + [anon_sym_c_longdouble] = ACTIONS(3695), + [anon_sym_return] = ACTIONS(3695), + [anon_sym_yield] = ACTIONS(3695), + [anon_sym_break] = ACTIONS(3695), + [anon_sym_continue] = ACTIONS(3695), + [anon_sym_defer] = ACTIONS(3695), + [anon_sym_errdefer] = ACTIONS(3695), + [anon_sym_if] = ACTIONS(3695), + [anon_sym_else] = ACTIONS(3695), + [anon_sym_while] = ACTIONS(3695), + [anon_sym_expand] = ACTIONS(3695), + [anon_sym_for] = ACTIONS(3695), + [anon_sym_match] = ACTIONS(3695), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_TILDE] = ACTIONS(3693), + [anon_sym_try] = ACTIONS(3695), + [anon_sym_DOT] = ACTIONS(3693), + [anon_sym_true] = ACTIONS(3695), + [anon_sym_false] = ACTIONS(3695), + [sym_none] = ACTIONS(3695), + [sym_undefined] = ACTIONS(3695), + [sym_sink] = ACTIONS(3695), + [sym_integer] = ACTIONS(3695), + [sym_float] = ACTIONS(3693), + [anon_sym_DQUOTE] = ACTIONS(3693), + [sym_multiline_string] = ACTIONS(3693), + [sym_character] = ACTIONS(3693), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3693), + }, + [STATE(1608)] = { + [ts_builtin_sym_end] = ACTIONS(3697), + [sym_identifier] = ACTIONS(3699), + [anon_sym_import] = ACTIONS(3699), + [anon_sym_test] = ACTIONS(3699), + [anon_sym_hide] = ACTIONS(3699), + [anon_sym_func] = ACTIONS(3699), + [anon_sym_BANG] = ACTIONS(3697), + [anon_sym_struct] = ACTIONS(3699), + [anon_sym_LPAREN] = ACTIONS(3697), + [anon_sym_RPAREN] = ACTIONS(3697), + [anon_sym_LBRACE] = ACTIONS(3697), + [anon_sym_RBRACE] = ACTIONS(3697), + [anon_sym_DASH] = ACTIONS(3697), + [anon_sym_DOLLAR] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3697), + [anon_sym_void] = ACTIONS(3699), + [anon_sym_anyopaque] = ACTIONS(3699), + [anon_sym_bool] = ACTIONS(3699), + [anon_sym_int] = ACTIONS(3699), + [anon_sym_uint] = ACTIONS(3699), + [anon_sym_float] = ACTIONS(3699), + [anon_sym_range] = ACTIONS(3699), + [anon_sym_i8] = ACTIONS(3699), + [anon_sym_i16] = ACTIONS(3699), + [anon_sym_i32] = ACTIONS(3699), + [anon_sym_i64] = ACTIONS(3699), + [anon_sym_u8] = ACTIONS(3699), + [anon_sym_u16] = ACTIONS(3699), + [anon_sym_u32] = ACTIONS(3699), + [anon_sym_u64] = ACTIONS(3699), + [anon_sym_isize] = ACTIONS(3699), + [anon_sym_usize] = ACTIONS(3699), + [anon_sym_f32] = ACTIONS(3699), + [anon_sym_f64] = ACTIONS(3699), + [anon_sym_c_char] = ACTIONS(3699), + [anon_sym_c_schar] = ACTIONS(3699), + [anon_sym_c_uchar] = ACTIONS(3699), + [anon_sym_c_short] = ACTIONS(3699), + [anon_sym_c_ushort] = ACTIONS(3699), + [anon_sym_c_int] = ACTIONS(3699), + [anon_sym_c_uint] = ACTIONS(3699), + [anon_sym_c_long] = ACTIONS(3699), + [anon_sym_c_ulong] = ACTIONS(3699), + [anon_sym_c_longlong] = ACTIONS(3699), + [anon_sym_c_ulonglong] = ACTIONS(3699), + [anon_sym_c_float] = ACTIONS(3699), + [anon_sym_c_double] = ACTIONS(3699), + [anon_sym_c_longdouble] = ACTIONS(3699), + [anon_sym_return] = ACTIONS(3699), + [anon_sym_yield] = ACTIONS(3699), + [anon_sym_break] = ACTIONS(3699), + [anon_sym_continue] = ACTIONS(3699), + [anon_sym_defer] = ACTIONS(3699), + [anon_sym_errdefer] = ACTIONS(3699), + [anon_sym_if] = ACTIONS(3699), + [anon_sym_else] = ACTIONS(3699), + [anon_sym_while] = ACTIONS(3699), + [anon_sym_expand] = ACTIONS(3699), + [anon_sym_for] = ACTIONS(3699), + [anon_sym_match] = ACTIONS(3699), + [anon_sym_AMP] = ACTIONS(3697), + [anon_sym_TILDE] = ACTIONS(3697), + [anon_sym_try] = ACTIONS(3699), + [anon_sym_DOT] = ACTIONS(3697), + [anon_sym_true] = ACTIONS(3699), + [anon_sym_false] = ACTIONS(3699), + [sym_none] = ACTIONS(3699), + [sym_undefined] = ACTIONS(3699), + [sym_sink] = ACTIONS(3699), + [sym_integer] = ACTIONS(3699), + [sym_float] = ACTIONS(3697), + [anon_sym_DQUOTE] = ACTIONS(3697), + [sym_multiline_string] = ACTIONS(3697), + [sym_character] = ACTIONS(3697), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3697), + }, + [STATE(1609)] = { + [ts_builtin_sym_end] = ACTIONS(3701), + [sym_identifier] = ACTIONS(3703), + [anon_sym_import] = ACTIONS(3703), + [anon_sym_test] = ACTIONS(3703), + [anon_sym_hide] = ACTIONS(3703), + [anon_sym_func] = ACTIONS(3703), + [anon_sym_BANG] = ACTIONS(3701), + [anon_sym_struct] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3701), + [anon_sym_RPAREN] = ACTIONS(3701), + [anon_sym_LBRACE] = ACTIONS(3701), + [anon_sym_RBRACE] = ACTIONS(3701), + [anon_sym_DASH] = ACTIONS(3701), + [anon_sym_DOLLAR] = ACTIONS(3701), + [anon_sym_LBRACK] = ACTIONS(3701), + [anon_sym_void] = ACTIONS(3703), + [anon_sym_anyopaque] = ACTIONS(3703), + [anon_sym_bool] = ACTIONS(3703), + [anon_sym_int] = ACTIONS(3703), + [anon_sym_uint] = ACTIONS(3703), + [anon_sym_float] = ACTIONS(3703), + [anon_sym_range] = ACTIONS(3703), + [anon_sym_i8] = ACTIONS(3703), + [anon_sym_i16] = ACTIONS(3703), + [anon_sym_i32] = ACTIONS(3703), + [anon_sym_i64] = ACTIONS(3703), + [anon_sym_u8] = ACTIONS(3703), + [anon_sym_u16] = ACTIONS(3703), + [anon_sym_u32] = ACTIONS(3703), + [anon_sym_u64] = ACTIONS(3703), + [anon_sym_isize] = ACTIONS(3703), + [anon_sym_usize] = ACTIONS(3703), + [anon_sym_f32] = ACTIONS(3703), + [anon_sym_f64] = ACTIONS(3703), + [anon_sym_c_char] = ACTIONS(3703), + [anon_sym_c_schar] = ACTIONS(3703), + [anon_sym_c_uchar] = ACTIONS(3703), + [anon_sym_c_short] = ACTIONS(3703), + [anon_sym_c_ushort] = ACTIONS(3703), + [anon_sym_c_int] = ACTIONS(3703), + [anon_sym_c_uint] = ACTIONS(3703), + [anon_sym_c_long] = ACTIONS(3703), + [anon_sym_c_ulong] = ACTIONS(3703), + [anon_sym_c_longlong] = ACTIONS(3703), + [anon_sym_c_ulonglong] = ACTIONS(3703), + [anon_sym_c_float] = ACTIONS(3703), + [anon_sym_c_double] = ACTIONS(3703), + [anon_sym_c_longdouble] = ACTIONS(3703), + [anon_sym_return] = ACTIONS(3703), + [anon_sym_yield] = ACTIONS(3703), + [anon_sym_break] = ACTIONS(3703), + [anon_sym_continue] = ACTIONS(3703), + [anon_sym_defer] = ACTIONS(3703), + [anon_sym_errdefer] = ACTIONS(3703), + [anon_sym_if] = ACTIONS(3703), + [anon_sym_else] = ACTIONS(3703), + [anon_sym_while] = ACTIONS(3703), + [anon_sym_expand] = ACTIONS(3703), + [anon_sym_for] = ACTIONS(3703), + [anon_sym_match] = ACTIONS(3703), + [anon_sym_AMP] = ACTIONS(3701), + [anon_sym_TILDE] = ACTIONS(3701), + [anon_sym_try] = ACTIONS(3703), + [anon_sym_DOT] = ACTIONS(3701), + [anon_sym_true] = ACTIONS(3703), + [anon_sym_false] = ACTIONS(3703), + [sym_none] = ACTIONS(3703), + [sym_undefined] = ACTIONS(3703), + [sym_sink] = ACTIONS(3703), + [sym_integer] = ACTIONS(3703), + [sym_float] = ACTIONS(3701), + [anon_sym_DQUOTE] = ACTIONS(3701), + [sym_multiline_string] = ACTIONS(3701), + [sym_character] = ACTIONS(3701), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3701), + }, + [STATE(1610)] = { + [ts_builtin_sym_end] = ACTIONS(3705), + [sym_identifier] = ACTIONS(3707), + [anon_sym_import] = ACTIONS(3707), + [anon_sym_test] = ACTIONS(3707), + [anon_sym_hide] = ACTIONS(3707), + [anon_sym_func] = ACTIONS(3707), + [anon_sym_BANG] = ACTIONS(3705), + [anon_sym_struct] = ACTIONS(3707), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_RPAREN] = ACTIONS(3705), + [anon_sym_LBRACE] = ACTIONS(3705), + [anon_sym_RBRACE] = ACTIONS(3705), + [anon_sym_DASH] = ACTIONS(3705), + [anon_sym_DOLLAR] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3705), + [anon_sym_void] = ACTIONS(3707), + [anon_sym_anyopaque] = ACTIONS(3707), + [anon_sym_bool] = ACTIONS(3707), + [anon_sym_int] = ACTIONS(3707), + [anon_sym_uint] = ACTIONS(3707), + [anon_sym_float] = ACTIONS(3707), + [anon_sym_range] = ACTIONS(3707), + [anon_sym_i8] = ACTIONS(3707), + [anon_sym_i16] = ACTIONS(3707), + [anon_sym_i32] = ACTIONS(3707), + [anon_sym_i64] = ACTIONS(3707), + [anon_sym_u8] = ACTIONS(3707), + [anon_sym_u16] = ACTIONS(3707), + [anon_sym_u32] = ACTIONS(3707), + [anon_sym_u64] = ACTIONS(3707), + [anon_sym_isize] = ACTIONS(3707), + [anon_sym_usize] = ACTIONS(3707), + [anon_sym_f32] = ACTIONS(3707), + [anon_sym_f64] = ACTIONS(3707), + [anon_sym_c_char] = ACTIONS(3707), + [anon_sym_c_schar] = ACTIONS(3707), + [anon_sym_c_uchar] = ACTIONS(3707), + [anon_sym_c_short] = ACTIONS(3707), + [anon_sym_c_ushort] = ACTIONS(3707), + [anon_sym_c_int] = ACTIONS(3707), + [anon_sym_c_uint] = ACTIONS(3707), + [anon_sym_c_long] = ACTIONS(3707), + [anon_sym_c_ulong] = ACTIONS(3707), + [anon_sym_c_longlong] = ACTIONS(3707), + [anon_sym_c_ulonglong] = ACTIONS(3707), + [anon_sym_c_float] = ACTIONS(3707), + [anon_sym_c_double] = ACTIONS(3707), + [anon_sym_c_longdouble] = ACTIONS(3707), + [anon_sym_return] = ACTIONS(3707), + [anon_sym_yield] = ACTIONS(3707), + [anon_sym_break] = ACTIONS(3707), + [anon_sym_continue] = ACTIONS(3707), + [anon_sym_defer] = ACTIONS(3707), + [anon_sym_errdefer] = ACTIONS(3707), + [anon_sym_if] = ACTIONS(3707), + [anon_sym_else] = ACTIONS(3707), + [anon_sym_while] = ACTIONS(3707), + [anon_sym_expand] = ACTIONS(3707), + [anon_sym_for] = ACTIONS(3707), + [anon_sym_match] = ACTIONS(3707), + [anon_sym_AMP] = ACTIONS(3705), + [anon_sym_TILDE] = ACTIONS(3705), + [anon_sym_try] = ACTIONS(3707), + [anon_sym_DOT] = ACTIONS(3705), + [anon_sym_true] = ACTIONS(3707), + [anon_sym_false] = ACTIONS(3707), + [sym_none] = ACTIONS(3707), + [sym_undefined] = ACTIONS(3707), + [sym_sink] = ACTIONS(3707), + [sym_integer] = ACTIONS(3707), + [sym_float] = ACTIONS(3705), + [anon_sym_DQUOTE] = ACTIONS(3705), + [sym_multiline_string] = ACTIONS(3705), + [sym_character] = ACTIONS(3705), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3705), + }, + [STATE(1611)] = { + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_identifier] = ACTIONS(1095), + [anon_sym_import] = ACTIONS(1095), + [anon_sym_test] = ACTIONS(1095), + [anon_sym_hide] = ACTIONS(1095), + [anon_sym_func] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_DOLLAR] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_void] = ACTIONS(1095), + [anon_sym_anyopaque] = ACTIONS(1095), + [anon_sym_bool] = ACTIONS(1095), + [anon_sym_int] = ACTIONS(1095), + [anon_sym_uint] = ACTIONS(1095), + [anon_sym_float] = ACTIONS(1095), + [anon_sym_range] = ACTIONS(1095), + [anon_sym_i8] = ACTIONS(1095), + [anon_sym_i16] = ACTIONS(1095), + [anon_sym_i32] = ACTIONS(1095), + [anon_sym_i64] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1095), + [anon_sym_u16] = ACTIONS(1095), + [anon_sym_u32] = ACTIONS(1095), + [anon_sym_u64] = ACTIONS(1095), + [anon_sym_isize] = ACTIONS(1095), + [anon_sym_usize] = ACTIONS(1095), + [anon_sym_f32] = ACTIONS(1095), + [anon_sym_f64] = ACTIONS(1095), + [anon_sym_c_char] = ACTIONS(1095), + [anon_sym_c_schar] = ACTIONS(1095), + [anon_sym_c_uchar] = ACTIONS(1095), + [anon_sym_c_short] = ACTIONS(1095), + [anon_sym_c_ushort] = ACTIONS(1095), + [anon_sym_c_int] = ACTIONS(1095), + [anon_sym_c_uint] = ACTIONS(1095), + [anon_sym_c_long] = ACTIONS(1095), + [anon_sym_c_ulong] = ACTIONS(1095), + [anon_sym_c_longlong] = ACTIONS(1095), + [anon_sym_c_ulonglong] = ACTIONS(1095), + [anon_sym_c_float] = ACTIONS(1095), + [anon_sym_c_double] = ACTIONS(1095), + [anon_sym_c_longdouble] = ACTIONS(1095), + [anon_sym_return] = ACTIONS(1095), + [anon_sym_yield] = ACTIONS(1095), + [anon_sym_break] = ACTIONS(1095), + [anon_sym_continue] = ACTIONS(1095), + [anon_sym_defer] = ACTIONS(1095), + [anon_sym_errdefer] = ACTIONS(1095), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_else] = ACTIONS(1095), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_expand] = ACTIONS(1095), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_try] = ACTIONS(1095), + [anon_sym_DOT] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [sym_none] = ACTIONS(1095), + [sym_undefined] = ACTIONS(1095), + [sym_sink] = ACTIONS(1095), + [sym_integer] = ACTIONS(1095), + [sym_float] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1093), + [sym_multiline_string] = ACTIONS(1093), + [sym_character] = ACTIONS(1093), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1093), + }, + [STATE(1612)] = { + [ts_builtin_sym_end] = ACTIONS(3709), + [sym_identifier] = ACTIONS(3711), + [anon_sym_import] = ACTIONS(3711), + [anon_sym_test] = ACTIONS(3711), + [anon_sym_hide] = ACTIONS(3711), + [anon_sym_func] = ACTIONS(3711), + [anon_sym_BANG] = ACTIONS(3709), + [anon_sym_struct] = ACTIONS(3711), + [anon_sym_LPAREN] = ACTIONS(3709), + [anon_sym_RPAREN] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3709), + [anon_sym_RBRACE] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3709), + [anon_sym_DOLLAR] = ACTIONS(3709), + [anon_sym_LBRACK] = ACTIONS(3709), + [anon_sym_void] = ACTIONS(3711), + [anon_sym_anyopaque] = ACTIONS(3711), + [anon_sym_bool] = ACTIONS(3711), + [anon_sym_int] = ACTIONS(3711), + [anon_sym_uint] = ACTIONS(3711), + [anon_sym_float] = ACTIONS(3711), + [anon_sym_range] = ACTIONS(3711), + [anon_sym_i8] = ACTIONS(3711), + [anon_sym_i16] = ACTIONS(3711), + [anon_sym_i32] = ACTIONS(3711), + [anon_sym_i64] = ACTIONS(3711), + [anon_sym_u8] = ACTIONS(3711), + [anon_sym_u16] = ACTIONS(3711), + [anon_sym_u32] = ACTIONS(3711), + [anon_sym_u64] = ACTIONS(3711), + [anon_sym_isize] = ACTIONS(3711), + [anon_sym_usize] = ACTIONS(3711), + [anon_sym_f32] = ACTIONS(3711), + [anon_sym_f64] = ACTIONS(3711), + [anon_sym_c_char] = ACTIONS(3711), + [anon_sym_c_schar] = ACTIONS(3711), + [anon_sym_c_uchar] = ACTIONS(3711), + [anon_sym_c_short] = ACTIONS(3711), + [anon_sym_c_ushort] = ACTIONS(3711), + [anon_sym_c_int] = ACTIONS(3711), + [anon_sym_c_uint] = ACTIONS(3711), + [anon_sym_c_long] = ACTIONS(3711), + [anon_sym_c_ulong] = ACTIONS(3711), + [anon_sym_c_longlong] = ACTIONS(3711), + [anon_sym_c_ulonglong] = ACTIONS(3711), + [anon_sym_c_float] = ACTIONS(3711), + [anon_sym_c_double] = ACTIONS(3711), + [anon_sym_c_longdouble] = ACTIONS(3711), + [anon_sym_return] = ACTIONS(3711), + [anon_sym_yield] = ACTIONS(3711), + [anon_sym_break] = ACTIONS(3711), + [anon_sym_continue] = ACTIONS(3711), + [anon_sym_defer] = ACTIONS(3711), + [anon_sym_errdefer] = ACTIONS(3711), + [anon_sym_if] = ACTIONS(3711), + [anon_sym_else] = ACTIONS(3711), + [anon_sym_while] = ACTIONS(3711), + [anon_sym_expand] = ACTIONS(3711), + [anon_sym_for] = ACTIONS(3711), + [anon_sym_match] = ACTIONS(3711), + [anon_sym_AMP] = ACTIONS(3709), + [anon_sym_TILDE] = ACTIONS(3709), + [anon_sym_try] = ACTIONS(3711), + [anon_sym_DOT] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(3711), + [anon_sym_false] = ACTIONS(3711), + [sym_none] = ACTIONS(3711), + [sym_undefined] = ACTIONS(3711), + [sym_sink] = ACTIONS(3711), + [sym_integer] = ACTIONS(3711), + [sym_float] = ACTIONS(3709), + [anon_sym_DQUOTE] = ACTIONS(3709), + [sym_multiline_string] = ACTIONS(3709), + [sym_character] = ACTIONS(3709), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3709), + }, + [STATE(1613)] = { + [ts_builtin_sym_end] = ACTIONS(3713), + [sym_identifier] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_test] = ACTIONS(3715), + [anon_sym_hide] = ACTIONS(3715), + [anon_sym_func] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3713), + [anon_sym_struct] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3713), + [anon_sym_RPAREN] = ACTIONS(3713), + [anon_sym_LBRACE] = ACTIONS(3713), + [anon_sym_RBRACE] = ACTIONS(3713), + [anon_sym_DASH] = ACTIONS(3713), + [anon_sym_DOLLAR] = ACTIONS(3713), + [anon_sym_LBRACK] = ACTIONS(3713), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_anyopaque] = ACTIONS(3715), + [anon_sym_bool] = ACTIONS(3715), + [anon_sym_int] = ACTIONS(3715), + [anon_sym_uint] = ACTIONS(3715), + [anon_sym_float] = ACTIONS(3715), + [anon_sym_range] = ACTIONS(3715), + [anon_sym_i8] = ACTIONS(3715), + [anon_sym_i16] = ACTIONS(3715), + [anon_sym_i32] = ACTIONS(3715), + [anon_sym_i64] = ACTIONS(3715), + [anon_sym_u8] = ACTIONS(3715), + [anon_sym_u16] = ACTIONS(3715), + [anon_sym_u32] = ACTIONS(3715), + [anon_sym_u64] = ACTIONS(3715), + [anon_sym_isize] = ACTIONS(3715), + [anon_sym_usize] = ACTIONS(3715), + [anon_sym_f32] = ACTIONS(3715), + [anon_sym_f64] = ACTIONS(3715), + [anon_sym_c_char] = ACTIONS(3715), + [anon_sym_c_schar] = ACTIONS(3715), + [anon_sym_c_uchar] = ACTIONS(3715), + [anon_sym_c_short] = ACTIONS(3715), + [anon_sym_c_ushort] = ACTIONS(3715), + [anon_sym_c_int] = ACTIONS(3715), + [anon_sym_c_uint] = ACTIONS(3715), + [anon_sym_c_long] = ACTIONS(3715), + [anon_sym_c_ulong] = ACTIONS(3715), + [anon_sym_c_longlong] = ACTIONS(3715), + [anon_sym_c_ulonglong] = ACTIONS(3715), + [anon_sym_c_float] = ACTIONS(3715), + [anon_sym_c_double] = ACTIONS(3715), + [anon_sym_c_longdouble] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_defer] = ACTIONS(3715), + [anon_sym_errdefer] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_else] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_expand] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_match] = ACTIONS(3715), + [anon_sym_AMP] = ACTIONS(3713), + [anon_sym_TILDE] = ACTIONS(3713), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_DOT] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(3715), + [anon_sym_false] = ACTIONS(3715), + [sym_none] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [sym_sink] = ACTIONS(3715), + [sym_integer] = ACTIONS(3715), + [sym_float] = ACTIONS(3713), + [anon_sym_DQUOTE] = ACTIONS(3713), + [sym_multiline_string] = ACTIONS(3713), + [sym_character] = ACTIONS(3713), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3713), + }, + [STATE(1614)] = { + [ts_builtin_sym_end] = ACTIONS(3717), + [sym_identifier] = ACTIONS(3719), + [anon_sym_import] = ACTIONS(3719), + [anon_sym_test] = ACTIONS(3719), + [anon_sym_hide] = ACTIONS(3719), + [anon_sym_func] = ACTIONS(3719), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_struct] = ACTIONS(3719), + [anon_sym_LPAREN] = ACTIONS(3717), + [anon_sym_RPAREN] = ACTIONS(3717), + [anon_sym_LBRACE] = ACTIONS(3717), + [anon_sym_RBRACE] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_DOLLAR] = ACTIONS(3717), + [anon_sym_LBRACK] = ACTIONS(3717), + [anon_sym_void] = ACTIONS(3719), + [anon_sym_anyopaque] = ACTIONS(3719), + [anon_sym_bool] = ACTIONS(3719), + [anon_sym_int] = ACTIONS(3719), + [anon_sym_uint] = ACTIONS(3719), + [anon_sym_float] = ACTIONS(3719), + [anon_sym_range] = ACTIONS(3719), + [anon_sym_i8] = ACTIONS(3719), + [anon_sym_i16] = ACTIONS(3719), + [anon_sym_i32] = ACTIONS(3719), + [anon_sym_i64] = ACTIONS(3719), + [anon_sym_u8] = ACTIONS(3719), + [anon_sym_u16] = ACTIONS(3719), + [anon_sym_u32] = ACTIONS(3719), + [anon_sym_u64] = ACTIONS(3719), + [anon_sym_isize] = ACTIONS(3719), + [anon_sym_usize] = ACTIONS(3719), + [anon_sym_f32] = ACTIONS(3719), + [anon_sym_f64] = ACTIONS(3719), + [anon_sym_c_char] = ACTIONS(3719), + [anon_sym_c_schar] = ACTIONS(3719), + [anon_sym_c_uchar] = ACTIONS(3719), + [anon_sym_c_short] = ACTIONS(3719), + [anon_sym_c_ushort] = ACTIONS(3719), + [anon_sym_c_int] = ACTIONS(3719), + [anon_sym_c_uint] = ACTIONS(3719), + [anon_sym_c_long] = ACTIONS(3719), + [anon_sym_c_ulong] = ACTIONS(3719), + [anon_sym_c_longlong] = ACTIONS(3719), + [anon_sym_c_ulonglong] = ACTIONS(3719), + [anon_sym_c_float] = ACTIONS(3719), + [anon_sym_c_double] = ACTIONS(3719), + [anon_sym_c_longdouble] = ACTIONS(3719), + [anon_sym_return] = ACTIONS(3719), + [anon_sym_yield] = ACTIONS(3719), + [anon_sym_break] = ACTIONS(3719), + [anon_sym_continue] = ACTIONS(3719), + [anon_sym_defer] = ACTIONS(3719), + [anon_sym_errdefer] = ACTIONS(3719), + [anon_sym_if] = ACTIONS(3719), + [anon_sym_else] = ACTIONS(3719), + [anon_sym_while] = ACTIONS(3719), + [anon_sym_expand] = ACTIONS(3719), + [anon_sym_for] = ACTIONS(3719), + [anon_sym_match] = ACTIONS(3719), + [anon_sym_AMP] = ACTIONS(3717), + [anon_sym_TILDE] = ACTIONS(3717), + [anon_sym_try] = ACTIONS(3719), + [anon_sym_DOT] = ACTIONS(3717), + [anon_sym_true] = ACTIONS(3719), + [anon_sym_false] = ACTIONS(3719), + [sym_none] = ACTIONS(3719), + [sym_undefined] = ACTIONS(3719), + [sym_sink] = ACTIONS(3719), + [sym_integer] = ACTIONS(3719), + [sym_float] = ACTIONS(3717), + [anon_sym_DQUOTE] = ACTIONS(3717), + [sym_multiline_string] = ACTIONS(3717), + [sym_character] = ACTIONS(3717), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3717), + }, + [STATE(1615)] = { + [ts_builtin_sym_end] = ACTIONS(3721), + [sym_identifier] = ACTIONS(3723), + [anon_sym_import] = ACTIONS(3723), + [anon_sym_test] = ACTIONS(3723), + [anon_sym_hide] = ACTIONS(3723), + [anon_sym_func] = ACTIONS(3723), + [anon_sym_BANG] = ACTIONS(3721), + [anon_sym_struct] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3721), + [anon_sym_RPAREN] = ACTIONS(3721), + [anon_sym_LBRACE] = ACTIONS(3721), + [anon_sym_RBRACE] = ACTIONS(3721), + [anon_sym_DASH] = ACTIONS(3721), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_LBRACK] = ACTIONS(3721), + [anon_sym_void] = ACTIONS(3723), + [anon_sym_anyopaque] = ACTIONS(3723), + [anon_sym_bool] = ACTIONS(3723), + [anon_sym_int] = ACTIONS(3723), + [anon_sym_uint] = ACTIONS(3723), + [anon_sym_float] = ACTIONS(3723), + [anon_sym_range] = ACTIONS(3723), + [anon_sym_i8] = ACTIONS(3723), + [anon_sym_i16] = ACTIONS(3723), + [anon_sym_i32] = ACTIONS(3723), + [anon_sym_i64] = ACTIONS(3723), + [anon_sym_u8] = ACTIONS(3723), + [anon_sym_u16] = ACTIONS(3723), + [anon_sym_u32] = ACTIONS(3723), + [anon_sym_u64] = ACTIONS(3723), + [anon_sym_isize] = ACTIONS(3723), + [anon_sym_usize] = ACTIONS(3723), + [anon_sym_f32] = ACTIONS(3723), + [anon_sym_f64] = ACTIONS(3723), + [anon_sym_c_char] = ACTIONS(3723), + [anon_sym_c_schar] = ACTIONS(3723), + [anon_sym_c_uchar] = ACTIONS(3723), + [anon_sym_c_short] = ACTIONS(3723), + [anon_sym_c_ushort] = ACTIONS(3723), + [anon_sym_c_int] = ACTIONS(3723), + [anon_sym_c_uint] = ACTIONS(3723), + [anon_sym_c_long] = ACTIONS(3723), + [anon_sym_c_ulong] = ACTIONS(3723), + [anon_sym_c_longlong] = ACTIONS(3723), + [anon_sym_c_ulonglong] = ACTIONS(3723), + [anon_sym_c_float] = ACTIONS(3723), + [anon_sym_c_double] = ACTIONS(3723), + [anon_sym_c_longdouble] = ACTIONS(3723), + [anon_sym_return] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3723), + [anon_sym_break] = ACTIONS(3723), + [anon_sym_continue] = ACTIONS(3723), + [anon_sym_defer] = ACTIONS(3723), + [anon_sym_errdefer] = ACTIONS(3723), + [anon_sym_if] = ACTIONS(3723), + [anon_sym_else] = ACTIONS(3723), + [anon_sym_while] = ACTIONS(3723), + [anon_sym_expand] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3723), + [anon_sym_match] = ACTIONS(3723), + [anon_sym_AMP] = ACTIONS(3721), + [anon_sym_TILDE] = ACTIONS(3721), + [anon_sym_try] = ACTIONS(3723), + [anon_sym_DOT] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(3723), + [anon_sym_false] = ACTIONS(3723), + [sym_none] = ACTIONS(3723), + [sym_undefined] = ACTIONS(3723), + [sym_sink] = ACTIONS(3723), + [sym_integer] = ACTIONS(3723), + [sym_float] = ACTIONS(3721), + [anon_sym_DQUOTE] = ACTIONS(3721), + [sym_multiline_string] = ACTIONS(3721), + [sym_character] = ACTIONS(3721), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3721), + }, + [STATE(1616)] = { + [ts_builtin_sym_end] = ACTIONS(3725), + [sym_identifier] = ACTIONS(3727), + [anon_sym_import] = ACTIONS(3727), + [anon_sym_test] = ACTIONS(3727), + [anon_sym_hide] = ACTIONS(3727), + [anon_sym_func] = ACTIONS(3727), + [anon_sym_BANG] = ACTIONS(3725), + [anon_sym_struct] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3725), + [anon_sym_RPAREN] = ACTIONS(3725), + [anon_sym_LBRACE] = ACTIONS(3725), + [anon_sym_RBRACE] = ACTIONS(3725), + [anon_sym_DASH] = ACTIONS(3725), + [anon_sym_DOLLAR] = ACTIONS(3725), + [anon_sym_LBRACK] = ACTIONS(3725), + [anon_sym_void] = ACTIONS(3727), + [anon_sym_anyopaque] = ACTIONS(3727), + [anon_sym_bool] = ACTIONS(3727), + [anon_sym_int] = ACTIONS(3727), + [anon_sym_uint] = ACTIONS(3727), + [anon_sym_float] = ACTIONS(3727), + [anon_sym_range] = ACTIONS(3727), + [anon_sym_i8] = ACTIONS(3727), + [anon_sym_i16] = ACTIONS(3727), + [anon_sym_i32] = ACTIONS(3727), + [anon_sym_i64] = ACTIONS(3727), + [anon_sym_u8] = ACTIONS(3727), + [anon_sym_u16] = ACTIONS(3727), + [anon_sym_u32] = ACTIONS(3727), + [anon_sym_u64] = ACTIONS(3727), + [anon_sym_isize] = ACTIONS(3727), + [anon_sym_usize] = ACTIONS(3727), + [anon_sym_f32] = ACTIONS(3727), + [anon_sym_f64] = ACTIONS(3727), + [anon_sym_c_char] = ACTIONS(3727), + [anon_sym_c_schar] = ACTIONS(3727), + [anon_sym_c_uchar] = ACTIONS(3727), + [anon_sym_c_short] = ACTIONS(3727), + [anon_sym_c_ushort] = ACTIONS(3727), + [anon_sym_c_int] = ACTIONS(3727), + [anon_sym_c_uint] = ACTIONS(3727), + [anon_sym_c_long] = ACTIONS(3727), + [anon_sym_c_ulong] = ACTIONS(3727), + [anon_sym_c_longlong] = ACTIONS(3727), + [anon_sym_c_ulonglong] = ACTIONS(3727), + [anon_sym_c_float] = ACTIONS(3727), + [anon_sym_c_double] = ACTIONS(3727), + [anon_sym_c_longdouble] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3727), + [anon_sym_yield] = ACTIONS(3727), + [anon_sym_break] = ACTIONS(3727), + [anon_sym_continue] = ACTIONS(3727), + [anon_sym_defer] = ACTIONS(3727), + [anon_sym_errdefer] = ACTIONS(3727), + [anon_sym_if] = ACTIONS(3727), + [anon_sym_else] = ACTIONS(3727), + [anon_sym_while] = ACTIONS(3727), + [anon_sym_expand] = ACTIONS(3727), + [anon_sym_for] = ACTIONS(3727), + [anon_sym_match] = ACTIONS(3727), + [anon_sym_AMP] = ACTIONS(3725), + [anon_sym_TILDE] = ACTIONS(3725), + [anon_sym_try] = ACTIONS(3727), + [anon_sym_DOT] = ACTIONS(3725), + [anon_sym_true] = ACTIONS(3727), + [anon_sym_false] = ACTIONS(3727), + [sym_none] = ACTIONS(3727), + [sym_undefined] = ACTIONS(3727), + [sym_sink] = ACTIONS(3727), + [sym_integer] = ACTIONS(3727), + [sym_float] = ACTIONS(3725), + [anon_sym_DQUOTE] = ACTIONS(3725), + [sym_multiline_string] = ACTIONS(3725), + [sym_character] = ACTIONS(3725), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3725), + }, + [STATE(1617)] = { + [ts_builtin_sym_end] = ACTIONS(3729), + [sym_identifier] = ACTIONS(3731), + [anon_sym_import] = ACTIONS(3731), + [anon_sym_test] = ACTIONS(3731), + [anon_sym_hide] = ACTIONS(3731), + [anon_sym_func] = ACTIONS(3731), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_struct] = ACTIONS(3731), + [anon_sym_LPAREN] = ACTIONS(3729), + [anon_sym_RPAREN] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3729), + [anon_sym_RBRACE] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_DOLLAR] = ACTIONS(3729), + [anon_sym_LBRACK] = ACTIONS(3729), + [anon_sym_void] = ACTIONS(3731), + [anon_sym_anyopaque] = ACTIONS(3731), + [anon_sym_bool] = ACTIONS(3731), + [anon_sym_int] = ACTIONS(3731), + [anon_sym_uint] = ACTIONS(3731), + [anon_sym_float] = ACTIONS(3731), + [anon_sym_range] = ACTIONS(3731), + [anon_sym_i8] = ACTIONS(3731), + [anon_sym_i16] = ACTIONS(3731), + [anon_sym_i32] = ACTIONS(3731), + [anon_sym_i64] = ACTIONS(3731), + [anon_sym_u8] = ACTIONS(3731), + [anon_sym_u16] = ACTIONS(3731), + [anon_sym_u32] = ACTIONS(3731), + [anon_sym_u64] = ACTIONS(3731), + [anon_sym_isize] = ACTIONS(3731), + [anon_sym_usize] = ACTIONS(3731), + [anon_sym_f32] = ACTIONS(3731), + [anon_sym_f64] = ACTIONS(3731), + [anon_sym_c_char] = ACTIONS(3731), + [anon_sym_c_schar] = ACTIONS(3731), + [anon_sym_c_uchar] = ACTIONS(3731), + [anon_sym_c_short] = ACTIONS(3731), + [anon_sym_c_ushort] = ACTIONS(3731), + [anon_sym_c_int] = ACTIONS(3731), + [anon_sym_c_uint] = ACTIONS(3731), + [anon_sym_c_long] = ACTIONS(3731), + [anon_sym_c_ulong] = ACTIONS(3731), + [anon_sym_c_longlong] = ACTIONS(3731), + [anon_sym_c_ulonglong] = ACTIONS(3731), + [anon_sym_c_float] = ACTIONS(3731), + [anon_sym_c_double] = ACTIONS(3731), + [anon_sym_c_longdouble] = ACTIONS(3731), + [anon_sym_return] = ACTIONS(3731), + [anon_sym_yield] = ACTIONS(3731), + [anon_sym_break] = ACTIONS(3731), + [anon_sym_continue] = ACTIONS(3731), + [anon_sym_defer] = ACTIONS(3731), + [anon_sym_errdefer] = ACTIONS(3731), + [anon_sym_if] = ACTIONS(3731), + [anon_sym_else] = ACTIONS(3731), + [anon_sym_while] = ACTIONS(3731), + [anon_sym_expand] = ACTIONS(3731), + [anon_sym_for] = ACTIONS(3731), + [anon_sym_match] = ACTIONS(3731), + [anon_sym_AMP] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3729), + [anon_sym_try] = ACTIONS(3731), + [anon_sym_DOT] = ACTIONS(3729), + [anon_sym_true] = ACTIONS(3731), + [anon_sym_false] = ACTIONS(3731), + [sym_none] = ACTIONS(3731), + [sym_undefined] = ACTIONS(3731), + [sym_sink] = ACTIONS(3731), + [sym_integer] = ACTIONS(3731), + [sym_float] = ACTIONS(3729), + [anon_sym_DQUOTE] = ACTIONS(3729), + [sym_multiline_string] = ACTIONS(3729), + [sym_character] = ACTIONS(3729), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3729), + }, + [STATE(1618)] = { + [ts_builtin_sym_end] = ACTIONS(3733), + [sym_identifier] = ACTIONS(3735), + [anon_sym_import] = ACTIONS(3735), + [anon_sym_test] = ACTIONS(3735), + [anon_sym_hide] = ACTIONS(3735), + [anon_sym_func] = ACTIONS(3735), + [anon_sym_BANG] = ACTIONS(3733), + [anon_sym_struct] = ACTIONS(3735), + [anon_sym_LPAREN] = ACTIONS(3733), + [anon_sym_RPAREN] = ACTIONS(3733), + [anon_sym_LBRACE] = ACTIONS(3733), + [anon_sym_RBRACE] = ACTIONS(3733), + [anon_sym_DASH] = ACTIONS(3733), + [anon_sym_DOLLAR] = ACTIONS(3733), + [anon_sym_LBRACK] = ACTIONS(3733), + [anon_sym_void] = ACTIONS(3735), + [anon_sym_anyopaque] = ACTIONS(3735), + [anon_sym_bool] = ACTIONS(3735), + [anon_sym_int] = ACTIONS(3735), + [anon_sym_uint] = ACTIONS(3735), + [anon_sym_float] = ACTIONS(3735), + [anon_sym_range] = ACTIONS(3735), + [anon_sym_i8] = ACTIONS(3735), + [anon_sym_i16] = ACTIONS(3735), + [anon_sym_i32] = ACTIONS(3735), + [anon_sym_i64] = ACTIONS(3735), + [anon_sym_u8] = ACTIONS(3735), + [anon_sym_u16] = ACTIONS(3735), + [anon_sym_u32] = ACTIONS(3735), + [anon_sym_u64] = ACTIONS(3735), + [anon_sym_isize] = ACTIONS(3735), + [anon_sym_usize] = ACTIONS(3735), + [anon_sym_f32] = ACTIONS(3735), + [anon_sym_f64] = ACTIONS(3735), + [anon_sym_c_char] = ACTIONS(3735), + [anon_sym_c_schar] = ACTIONS(3735), + [anon_sym_c_uchar] = ACTIONS(3735), + [anon_sym_c_short] = ACTIONS(3735), + [anon_sym_c_ushort] = ACTIONS(3735), + [anon_sym_c_int] = ACTIONS(3735), + [anon_sym_c_uint] = ACTIONS(3735), + [anon_sym_c_long] = ACTIONS(3735), + [anon_sym_c_ulong] = ACTIONS(3735), + [anon_sym_c_longlong] = ACTIONS(3735), + [anon_sym_c_ulonglong] = ACTIONS(3735), + [anon_sym_c_float] = ACTIONS(3735), + [anon_sym_c_double] = ACTIONS(3735), + [anon_sym_c_longdouble] = ACTIONS(3735), + [anon_sym_return] = ACTIONS(3735), + [anon_sym_yield] = ACTIONS(3735), + [anon_sym_break] = ACTIONS(3735), + [anon_sym_continue] = ACTIONS(3735), + [anon_sym_defer] = ACTIONS(3735), + [anon_sym_errdefer] = ACTIONS(3735), + [anon_sym_if] = ACTIONS(3735), + [anon_sym_else] = ACTIONS(3735), + [anon_sym_while] = ACTIONS(3735), + [anon_sym_expand] = ACTIONS(3735), + [anon_sym_for] = ACTIONS(3735), + [anon_sym_match] = ACTIONS(3735), + [anon_sym_AMP] = ACTIONS(3733), + [anon_sym_TILDE] = ACTIONS(3733), + [anon_sym_try] = ACTIONS(3735), + [anon_sym_DOT] = ACTIONS(3733), + [anon_sym_true] = ACTIONS(3735), + [anon_sym_false] = ACTIONS(3735), + [sym_none] = ACTIONS(3735), + [sym_undefined] = ACTIONS(3735), + [sym_sink] = ACTIONS(3735), + [sym_integer] = ACTIONS(3735), + [sym_float] = ACTIONS(3733), + [anon_sym_DQUOTE] = ACTIONS(3733), + [sym_multiline_string] = ACTIONS(3733), + [sym_character] = ACTIONS(3733), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3733), + }, + [STATE(1619)] = { + [ts_builtin_sym_end] = ACTIONS(3737), + [sym_identifier] = ACTIONS(3739), + [anon_sym_import] = ACTIONS(3739), + [anon_sym_test] = ACTIONS(3739), + [anon_sym_hide] = ACTIONS(3739), + [anon_sym_func] = ACTIONS(3739), + [anon_sym_BANG] = ACTIONS(3737), + [anon_sym_struct] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(3737), + [anon_sym_RPAREN] = ACTIONS(3737), + [anon_sym_LBRACE] = ACTIONS(3737), + [anon_sym_RBRACE] = ACTIONS(3737), + [anon_sym_DASH] = ACTIONS(3737), + [anon_sym_DOLLAR] = ACTIONS(3737), + [anon_sym_LBRACK] = ACTIONS(3737), + [anon_sym_void] = ACTIONS(3739), + [anon_sym_anyopaque] = ACTIONS(3739), + [anon_sym_bool] = ACTIONS(3739), + [anon_sym_int] = ACTIONS(3739), + [anon_sym_uint] = ACTIONS(3739), + [anon_sym_float] = ACTIONS(3739), + [anon_sym_range] = ACTIONS(3739), + [anon_sym_i8] = ACTIONS(3739), + [anon_sym_i16] = ACTIONS(3739), + [anon_sym_i32] = ACTIONS(3739), + [anon_sym_i64] = ACTIONS(3739), + [anon_sym_u8] = ACTIONS(3739), + [anon_sym_u16] = ACTIONS(3739), + [anon_sym_u32] = ACTIONS(3739), + [anon_sym_u64] = ACTIONS(3739), + [anon_sym_isize] = ACTIONS(3739), + [anon_sym_usize] = ACTIONS(3739), + [anon_sym_f32] = ACTIONS(3739), + [anon_sym_f64] = ACTIONS(3739), + [anon_sym_c_char] = ACTIONS(3739), + [anon_sym_c_schar] = ACTIONS(3739), + [anon_sym_c_uchar] = ACTIONS(3739), + [anon_sym_c_short] = ACTIONS(3739), + [anon_sym_c_ushort] = ACTIONS(3739), + [anon_sym_c_int] = ACTIONS(3739), + [anon_sym_c_uint] = ACTIONS(3739), + [anon_sym_c_long] = ACTIONS(3739), + [anon_sym_c_ulong] = ACTIONS(3739), + [anon_sym_c_longlong] = ACTIONS(3739), + [anon_sym_c_ulonglong] = ACTIONS(3739), + [anon_sym_c_float] = ACTIONS(3739), + [anon_sym_c_double] = ACTIONS(3739), + [anon_sym_c_longdouble] = ACTIONS(3739), + [anon_sym_return] = ACTIONS(3739), + [anon_sym_yield] = ACTIONS(3739), + [anon_sym_break] = ACTIONS(3739), + [anon_sym_continue] = ACTIONS(3739), + [anon_sym_defer] = ACTIONS(3739), + [anon_sym_errdefer] = ACTIONS(3739), + [anon_sym_if] = ACTIONS(3739), + [anon_sym_else] = ACTIONS(3739), + [anon_sym_while] = ACTIONS(3739), + [anon_sym_expand] = ACTIONS(3739), + [anon_sym_for] = ACTIONS(3739), + [anon_sym_match] = ACTIONS(3739), + [anon_sym_AMP] = ACTIONS(3737), + [anon_sym_TILDE] = ACTIONS(3737), + [anon_sym_try] = ACTIONS(3739), + [anon_sym_DOT] = ACTIONS(3737), + [anon_sym_true] = ACTIONS(3739), + [anon_sym_false] = ACTIONS(3739), + [sym_none] = ACTIONS(3739), + [sym_undefined] = ACTIONS(3739), + [sym_sink] = ACTIONS(3739), + [sym_integer] = ACTIONS(3739), + [sym_float] = ACTIONS(3737), + [anon_sym_DQUOTE] = ACTIONS(3737), + [sym_multiline_string] = ACTIONS(3737), + [sym_character] = ACTIONS(3737), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3737), + }, + [STATE(1620)] = { + [ts_builtin_sym_end] = ACTIONS(3741), + [sym_identifier] = ACTIONS(3743), + [anon_sym_import] = ACTIONS(3743), + [anon_sym_test] = ACTIONS(3743), + [anon_sym_hide] = ACTIONS(3743), + [anon_sym_func] = ACTIONS(3743), + [anon_sym_BANG] = ACTIONS(3741), + [anon_sym_struct] = ACTIONS(3743), + [anon_sym_LPAREN] = ACTIONS(3741), + [anon_sym_RPAREN] = ACTIONS(3741), + [anon_sym_LBRACE] = ACTIONS(3741), + [anon_sym_RBRACE] = ACTIONS(3741), + [anon_sym_DASH] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(3741), + [anon_sym_LBRACK] = ACTIONS(3741), + [anon_sym_void] = ACTIONS(3743), + [anon_sym_anyopaque] = ACTIONS(3743), + [anon_sym_bool] = ACTIONS(3743), + [anon_sym_int] = ACTIONS(3743), + [anon_sym_uint] = ACTIONS(3743), + [anon_sym_float] = ACTIONS(3743), + [anon_sym_range] = ACTIONS(3743), + [anon_sym_i8] = ACTIONS(3743), + [anon_sym_i16] = ACTIONS(3743), + [anon_sym_i32] = ACTIONS(3743), + [anon_sym_i64] = ACTIONS(3743), + [anon_sym_u8] = ACTIONS(3743), + [anon_sym_u16] = ACTIONS(3743), + [anon_sym_u32] = ACTIONS(3743), + [anon_sym_u64] = ACTIONS(3743), + [anon_sym_isize] = ACTIONS(3743), + [anon_sym_usize] = ACTIONS(3743), + [anon_sym_f32] = ACTIONS(3743), + [anon_sym_f64] = ACTIONS(3743), + [anon_sym_c_char] = ACTIONS(3743), + [anon_sym_c_schar] = ACTIONS(3743), + [anon_sym_c_uchar] = ACTIONS(3743), + [anon_sym_c_short] = ACTIONS(3743), + [anon_sym_c_ushort] = ACTIONS(3743), + [anon_sym_c_int] = ACTIONS(3743), + [anon_sym_c_uint] = ACTIONS(3743), + [anon_sym_c_long] = ACTIONS(3743), + [anon_sym_c_ulong] = ACTIONS(3743), + [anon_sym_c_longlong] = ACTIONS(3743), + [anon_sym_c_ulonglong] = ACTIONS(3743), + [anon_sym_c_float] = ACTIONS(3743), + [anon_sym_c_double] = ACTIONS(3743), + [anon_sym_c_longdouble] = ACTIONS(3743), + [anon_sym_return] = ACTIONS(3743), + [anon_sym_yield] = ACTIONS(3743), + [anon_sym_break] = ACTIONS(3743), + [anon_sym_continue] = ACTIONS(3743), + [anon_sym_defer] = ACTIONS(3743), + [anon_sym_errdefer] = ACTIONS(3743), + [anon_sym_if] = ACTIONS(3743), + [anon_sym_else] = ACTIONS(3743), + [anon_sym_while] = ACTIONS(3743), + [anon_sym_expand] = ACTIONS(3743), + [anon_sym_for] = ACTIONS(3743), + [anon_sym_match] = ACTIONS(3743), + [anon_sym_AMP] = ACTIONS(3741), + [anon_sym_TILDE] = ACTIONS(3741), + [anon_sym_try] = ACTIONS(3743), + [anon_sym_DOT] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(3743), + [anon_sym_false] = ACTIONS(3743), + [sym_none] = ACTIONS(3743), + [sym_undefined] = ACTIONS(3743), + [sym_sink] = ACTIONS(3743), + [sym_integer] = ACTIONS(3743), + [sym_float] = ACTIONS(3741), + [anon_sym_DQUOTE] = ACTIONS(3741), + [sym_multiline_string] = ACTIONS(3741), + [sym_character] = ACTIONS(3741), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3741), + }, + [STATE(1621)] = { + [ts_builtin_sym_end] = ACTIONS(3745), + [sym_identifier] = ACTIONS(3747), + [anon_sym_import] = ACTIONS(3747), + [anon_sym_test] = ACTIONS(3747), + [anon_sym_hide] = ACTIONS(3747), + [anon_sym_func] = ACTIONS(3747), + [anon_sym_BANG] = ACTIONS(3745), + [anon_sym_struct] = ACTIONS(3747), + [anon_sym_LPAREN] = ACTIONS(3745), + [anon_sym_RPAREN] = ACTIONS(3745), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym_DASH] = ACTIONS(3745), + [anon_sym_DOLLAR] = ACTIONS(3745), + [anon_sym_LBRACK] = ACTIONS(3745), + [anon_sym_void] = ACTIONS(3747), + [anon_sym_anyopaque] = ACTIONS(3747), + [anon_sym_bool] = ACTIONS(3747), + [anon_sym_int] = ACTIONS(3747), + [anon_sym_uint] = ACTIONS(3747), + [anon_sym_float] = ACTIONS(3747), + [anon_sym_range] = ACTIONS(3747), + [anon_sym_i8] = ACTIONS(3747), + [anon_sym_i16] = ACTIONS(3747), + [anon_sym_i32] = ACTIONS(3747), + [anon_sym_i64] = ACTIONS(3747), + [anon_sym_u8] = ACTIONS(3747), + [anon_sym_u16] = ACTIONS(3747), + [anon_sym_u32] = ACTIONS(3747), + [anon_sym_u64] = ACTIONS(3747), + [anon_sym_isize] = ACTIONS(3747), + [anon_sym_usize] = ACTIONS(3747), + [anon_sym_f32] = ACTIONS(3747), + [anon_sym_f64] = ACTIONS(3747), + [anon_sym_c_char] = ACTIONS(3747), + [anon_sym_c_schar] = ACTIONS(3747), + [anon_sym_c_uchar] = ACTIONS(3747), + [anon_sym_c_short] = ACTIONS(3747), + [anon_sym_c_ushort] = ACTIONS(3747), + [anon_sym_c_int] = ACTIONS(3747), + [anon_sym_c_uint] = ACTIONS(3747), + [anon_sym_c_long] = ACTIONS(3747), + [anon_sym_c_ulong] = ACTIONS(3747), + [anon_sym_c_longlong] = ACTIONS(3747), + [anon_sym_c_ulonglong] = ACTIONS(3747), + [anon_sym_c_float] = ACTIONS(3747), + [anon_sym_c_double] = ACTIONS(3747), + [anon_sym_c_longdouble] = ACTIONS(3747), + [anon_sym_return] = ACTIONS(3747), + [anon_sym_yield] = ACTIONS(3747), + [anon_sym_break] = ACTIONS(3747), + [anon_sym_continue] = ACTIONS(3747), + [anon_sym_defer] = ACTIONS(3747), + [anon_sym_errdefer] = ACTIONS(3747), + [anon_sym_if] = ACTIONS(3747), + [anon_sym_else] = ACTIONS(3747), + [anon_sym_while] = ACTIONS(3747), + [anon_sym_expand] = ACTIONS(3747), + [anon_sym_for] = ACTIONS(3747), + [anon_sym_match] = ACTIONS(3747), + [anon_sym_AMP] = ACTIONS(3745), + [anon_sym_TILDE] = ACTIONS(3745), + [anon_sym_try] = ACTIONS(3747), + [anon_sym_DOT] = ACTIONS(3745), + [anon_sym_true] = ACTIONS(3747), + [anon_sym_false] = ACTIONS(3747), + [sym_none] = ACTIONS(3747), + [sym_undefined] = ACTIONS(3747), + [sym_sink] = ACTIONS(3747), + [sym_integer] = ACTIONS(3747), + [sym_float] = ACTIONS(3745), + [anon_sym_DQUOTE] = ACTIONS(3745), + [sym_multiline_string] = ACTIONS(3745), + [sym_character] = ACTIONS(3745), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3745), + }, + [STATE(1622)] = { + [ts_builtin_sym_end] = ACTIONS(3749), + [sym_identifier] = ACTIONS(3751), + [anon_sym_import] = ACTIONS(3751), + [anon_sym_test] = ACTIONS(3751), + [anon_sym_hide] = ACTIONS(3751), + [anon_sym_func] = ACTIONS(3751), + [anon_sym_BANG] = ACTIONS(3749), + [anon_sym_struct] = ACTIONS(3751), + [anon_sym_LPAREN] = ACTIONS(3749), + [anon_sym_RPAREN] = ACTIONS(3749), + [anon_sym_LBRACE] = ACTIONS(3749), + [anon_sym_RBRACE] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_DOLLAR] = ACTIONS(3749), + [anon_sym_LBRACK] = ACTIONS(3749), + [anon_sym_void] = ACTIONS(3751), + [anon_sym_anyopaque] = ACTIONS(3751), + [anon_sym_bool] = ACTIONS(3751), + [anon_sym_int] = ACTIONS(3751), + [anon_sym_uint] = ACTIONS(3751), + [anon_sym_float] = ACTIONS(3751), + [anon_sym_range] = ACTIONS(3751), + [anon_sym_i8] = ACTIONS(3751), + [anon_sym_i16] = ACTIONS(3751), + [anon_sym_i32] = ACTIONS(3751), + [anon_sym_i64] = ACTIONS(3751), + [anon_sym_u8] = ACTIONS(3751), + [anon_sym_u16] = ACTIONS(3751), + [anon_sym_u32] = ACTIONS(3751), + [anon_sym_u64] = ACTIONS(3751), + [anon_sym_isize] = ACTIONS(3751), + [anon_sym_usize] = ACTIONS(3751), + [anon_sym_f32] = ACTIONS(3751), + [anon_sym_f64] = ACTIONS(3751), + [anon_sym_c_char] = ACTIONS(3751), + [anon_sym_c_schar] = ACTIONS(3751), + [anon_sym_c_uchar] = ACTIONS(3751), + [anon_sym_c_short] = ACTIONS(3751), + [anon_sym_c_ushort] = ACTIONS(3751), + [anon_sym_c_int] = ACTIONS(3751), + [anon_sym_c_uint] = ACTIONS(3751), + [anon_sym_c_long] = ACTIONS(3751), + [anon_sym_c_ulong] = ACTIONS(3751), + [anon_sym_c_longlong] = ACTIONS(3751), + [anon_sym_c_ulonglong] = ACTIONS(3751), + [anon_sym_c_float] = ACTIONS(3751), + [anon_sym_c_double] = ACTIONS(3751), + [anon_sym_c_longdouble] = ACTIONS(3751), + [anon_sym_return] = ACTIONS(3751), + [anon_sym_yield] = ACTIONS(3751), + [anon_sym_break] = ACTIONS(3751), + [anon_sym_continue] = ACTIONS(3751), + [anon_sym_defer] = ACTIONS(3751), + [anon_sym_errdefer] = ACTIONS(3751), + [anon_sym_if] = ACTIONS(3751), + [anon_sym_else] = ACTIONS(3751), + [anon_sym_while] = ACTIONS(3751), + [anon_sym_expand] = ACTIONS(3751), + [anon_sym_for] = ACTIONS(3751), + [anon_sym_match] = ACTIONS(3751), + [anon_sym_AMP] = ACTIONS(3749), + [anon_sym_TILDE] = ACTIONS(3749), + [anon_sym_try] = ACTIONS(3751), + [anon_sym_DOT] = ACTIONS(3749), + [anon_sym_true] = ACTIONS(3751), + [anon_sym_false] = ACTIONS(3751), + [sym_none] = ACTIONS(3751), + [sym_undefined] = ACTIONS(3751), + [sym_sink] = ACTIONS(3751), + [sym_integer] = ACTIONS(3751), + [sym_float] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(3749), + [sym_multiline_string] = ACTIONS(3749), + [sym_character] = ACTIONS(3749), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3749), + }, + [STATE(1623)] = { + [ts_builtin_sym_end] = ACTIONS(3753), + [sym_identifier] = ACTIONS(3755), + [anon_sym_import] = ACTIONS(3755), + [anon_sym_test] = ACTIONS(3755), + [anon_sym_hide] = ACTIONS(3755), + [anon_sym_func] = ACTIONS(3755), + [anon_sym_BANG] = ACTIONS(3753), + [anon_sym_struct] = ACTIONS(3755), + [anon_sym_LPAREN] = ACTIONS(3753), + [anon_sym_RPAREN] = ACTIONS(3753), + [anon_sym_LBRACE] = ACTIONS(3753), + [anon_sym_RBRACE] = ACTIONS(3753), + [anon_sym_DASH] = ACTIONS(3753), + [anon_sym_DOLLAR] = ACTIONS(3753), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_void] = ACTIONS(3755), + [anon_sym_anyopaque] = ACTIONS(3755), + [anon_sym_bool] = ACTIONS(3755), + [anon_sym_int] = ACTIONS(3755), + [anon_sym_uint] = ACTIONS(3755), + [anon_sym_float] = ACTIONS(3755), + [anon_sym_range] = ACTIONS(3755), + [anon_sym_i8] = ACTIONS(3755), + [anon_sym_i16] = ACTIONS(3755), + [anon_sym_i32] = ACTIONS(3755), + [anon_sym_i64] = ACTIONS(3755), + [anon_sym_u8] = ACTIONS(3755), + [anon_sym_u16] = ACTIONS(3755), + [anon_sym_u32] = ACTIONS(3755), + [anon_sym_u64] = ACTIONS(3755), + [anon_sym_isize] = ACTIONS(3755), + [anon_sym_usize] = ACTIONS(3755), + [anon_sym_f32] = ACTIONS(3755), + [anon_sym_f64] = ACTIONS(3755), + [anon_sym_c_char] = ACTIONS(3755), + [anon_sym_c_schar] = ACTIONS(3755), + [anon_sym_c_uchar] = ACTIONS(3755), + [anon_sym_c_short] = ACTIONS(3755), + [anon_sym_c_ushort] = ACTIONS(3755), + [anon_sym_c_int] = ACTIONS(3755), + [anon_sym_c_uint] = ACTIONS(3755), + [anon_sym_c_long] = ACTIONS(3755), + [anon_sym_c_ulong] = ACTIONS(3755), + [anon_sym_c_longlong] = ACTIONS(3755), + [anon_sym_c_ulonglong] = ACTIONS(3755), + [anon_sym_c_float] = ACTIONS(3755), + [anon_sym_c_double] = ACTIONS(3755), + [anon_sym_c_longdouble] = ACTIONS(3755), + [anon_sym_return] = ACTIONS(3755), + [anon_sym_yield] = ACTIONS(3755), + [anon_sym_break] = ACTIONS(3755), + [anon_sym_continue] = ACTIONS(3755), + [anon_sym_defer] = ACTIONS(3755), + [anon_sym_errdefer] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3755), + [anon_sym_else] = ACTIONS(3755), + [anon_sym_while] = ACTIONS(3755), + [anon_sym_expand] = ACTIONS(3755), + [anon_sym_for] = ACTIONS(3755), + [anon_sym_match] = ACTIONS(3755), + [anon_sym_AMP] = ACTIONS(3753), + [anon_sym_TILDE] = ACTIONS(3753), + [anon_sym_try] = ACTIONS(3755), + [anon_sym_DOT] = ACTIONS(3753), + [anon_sym_true] = ACTIONS(3755), + [anon_sym_false] = ACTIONS(3755), + [sym_none] = ACTIONS(3755), + [sym_undefined] = ACTIONS(3755), + [sym_sink] = ACTIONS(3755), + [sym_integer] = ACTIONS(3755), + [sym_float] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3753), + [sym_multiline_string] = ACTIONS(3753), + [sym_character] = ACTIONS(3753), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3753), + }, + [STATE(1624)] = { + [ts_builtin_sym_end] = ACTIONS(3757), + [sym_identifier] = ACTIONS(3759), + [anon_sym_import] = ACTIONS(3759), + [anon_sym_test] = ACTIONS(3759), + [anon_sym_hide] = ACTIONS(3759), + [anon_sym_func] = ACTIONS(3759), + [anon_sym_BANG] = ACTIONS(3757), + [anon_sym_struct] = ACTIONS(3759), + [anon_sym_LPAREN] = ACTIONS(3757), + [anon_sym_RPAREN] = ACTIONS(3757), + [anon_sym_LBRACE] = ACTIONS(3757), + [anon_sym_RBRACE] = ACTIONS(3757), + [anon_sym_DASH] = ACTIONS(3757), + [anon_sym_DOLLAR] = ACTIONS(3757), + [anon_sym_LBRACK] = ACTIONS(3757), + [anon_sym_void] = ACTIONS(3759), + [anon_sym_anyopaque] = ACTIONS(3759), + [anon_sym_bool] = ACTIONS(3759), + [anon_sym_int] = ACTIONS(3759), + [anon_sym_uint] = ACTIONS(3759), + [anon_sym_float] = ACTIONS(3759), + [anon_sym_range] = ACTIONS(3759), + [anon_sym_i8] = ACTIONS(3759), + [anon_sym_i16] = ACTIONS(3759), + [anon_sym_i32] = ACTIONS(3759), + [anon_sym_i64] = ACTIONS(3759), + [anon_sym_u8] = ACTIONS(3759), + [anon_sym_u16] = ACTIONS(3759), + [anon_sym_u32] = ACTIONS(3759), + [anon_sym_u64] = ACTIONS(3759), + [anon_sym_isize] = ACTIONS(3759), + [anon_sym_usize] = ACTIONS(3759), + [anon_sym_f32] = ACTIONS(3759), + [anon_sym_f64] = ACTIONS(3759), + [anon_sym_c_char] = ACTIONS(3759), + [anon_sym_c_schar] = ACTIONS(3759), + [anon_sym_c_uchar] = ACTIONS(3759), + [anon_sym_c_short] = ACTIONS(3759), + [anon_sym_c_ushort] = ACTIONS(3759), + [anon_sym_c_int] = ACTIONS(3759), + [anon_sym_c_uint] = ACTIONS(3759), + [anon_sym_c_long] = ACTIONS(3759), + [anon_sym_c_ulong] = ACTIONS(3759), + [anon_sym_c_longlong] = ACTIONS(3759), + [anon_sym_c_ulonglong] = ACTIONS(3759), + [anon_sym_c_float] = ACTIONS(3759), + [anon_sym_c_double] = ACTIONS(3759), + [anon_sym_c_longdouble] = ACTIONS(3759), + [anon_sym_return] = ACTIONS(3759), + [anon_sym_yield] = ACTIONS(3759), + [anon_sym_break] = ACTIONS(3759), + [anon_sym_continue] = ACTIONS(3759), + [anon_sym_defer] = ACTIONS(3759), + [anon_sym_errdefer] = ACTIONS(3759), + [anon_sym_if] = ACTIONS(3759), + [anon_sym_else] = ACTIONS(3759), + [anon_sym_while] = ACTIONS(3759), + [anon_sym_expand] = ACTIONS(3759), + [anon_sym_for] = ACTIONS(3759), + [anon_sym_match] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3757), + [anon_sym_TILDE] = ACTIONS(3757), + [anon_sym_try] = ACTIONS(3759), + [anon_sym_DOT] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(3759), + [anon_sym_false] = ACTIONS(3759), + [sym_none] = ACTIONS(3759), + [sym_undefined] = ACTIONS(3759), + [sym_sink] = ACTIONS(3759), + [sym_integer] = ACTIONS(3759), + [sym_float] = ACTIONS(3757), + [anon_sym_DQUOTE] = ACTIONS(3757), + [sym_multiline_string] = ACTIONS(3757), + [sym_character] = ACTIONS(3757), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3757), + }, + [STATE(1625)] = { + [ts_builtin_sym_end] = ACTIONS(3761), + [sym_identifier] = ACTIONS(3763), + [anon_sym_import] = ACTIONS(3763), + [anon_sym_test] = ACTIONS(3763), + [anon_sym_hide] = ACTIONS(3763), + [anon_sym_func] = ACTIONS(3763), + [anon_sym_BANG] = ACTIONS(3761), + [anon_sym_struct] = ACTIONS(3763), + [anon_sym_LPAREN] = ACTIONS(3761), + [anon_sym_RPAREN] = ACTIONS(3761), + [anon_sym_LBRACE] = ACTIONS(3761), + [anon_sym_RBRACE] = ACTIONS(3761), + [anon_sym_DASH] = ACTIONS(3761), + [anon_sym_DOLLAR] = ACTIONS(3761), + [anon_sym_LBRACK] = ACTIONS(3761), + [anon_sym_void] = ACTIONS(3763), + [anon_sym_anyopaque] = ACTIONS(3763), + [anon_sym_bool] = ACTIONS(3763), + [anon_sym_int] = ACTIONS(3763), + [anon_sym_uint] = ACTIONS(3763), + [anon_sym_float] = ACTIONS(3763), + [anon_sym_range] = ACTIONS(3763), + [anon_sym_i8] = ACTIONS(3763), + [anon_sym_i16] = ACTIONS(3763), + [anon_sym_i32] = ACTIONS(3763), + [anon_sym_i64] = ACTIONS(3763), + [anon_sym_u8] = ACTIONS(3763), + [anon_sym_u16] = ACTIONS(3763), + [anon_sym_u32] = ACTIONS(3763), + [anon_sym_u64] = ACTIONS(3763), + [anon_sym_isize] = ACTIONS(3763), + [anon_sym_usize] = ACTIONS(3763), + [anon_sym_f32] = ACTIONS(3763), + [anon_sym_f64] = ACTIONS(3763), + [anon_sym_c_char] = ACTIONS(3763), + [anon_sym_c_schar] = ACTIONS(3763), + [anon_sym_c_uchar] = ACTIONS(3763), + [anon_sym_c_short] = ACTIONS(3763), + [anon_sym_c_ushort] = ACTIONS(3763), + [anon_sym_c_int] = ACTIONS(3763), + [anon_sym_c_uint] = ACTIONS(3763), + [anon_sym_c_long] = ACTIONS(3763), + [anon_sym_c_ulong] = ACTIONS(3763), + [anon_sym_c_longlong] = ACTIONS(3763), + [anon_sym_c_ulonglong] = ACTIONS(3763), + [anon_sym_c_float] = ACTIONS(3763), + [anon_sym_c_double] = ACTIONS(3763), + [anon_sym_c_longdouble] = ACTIONS(3763), + [anon_sym_return] = ACTIONS(3763), + [anon_sym_yield] = ACTIONS(3763), + [anon_sym_break] = ACTIONS(3763), + [anon_sym_continue] = ACTIONS(3763), + [anon_sym_defer] = ACTIONS(3763), + [anon_sym_errdefer] = ACTIONS(3763), + [anon_sym_if] = ACTIONS(3763), + [anon_sym_else] = ACTIONS(3763), + [anon_sym_while] = ACTIONS(3763), + [anon_sym_expand] = ACTIONS(3763), + [anon_sym_for] = ACTIONS(3763), + [anon_sym_match] = ACTIONS(3763), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_TILDE] = ACTIONS(3761), + [anon_sym_try] = ACTIONS(3763), + [anon_sym_DOT] = ACTIONS(3761), + [anon_sym_true] = ACTIONS(3763), + [anon_sym_false] = ACTIONS(3763), + [sym_none] = ACTIONS(3763), + [sym_undefined] = ACTIONS(3763), + [sym_sink] = ACTIONS(3763), + [sym_integer] = ACTIONS(3763), + [sym_float] = ACTIONS(3761), + [anon_sym_DQUOTE] = ACTIONS(3761), + [sym_multiline_string] = ACTIONS(3761), + [sym_character] = ACTIONS(3761), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3761), + }, + [STATE(1626)] = { + [ts_builtin_sym_end] = ACTIONS(3765), + [sym_identifier] = ACTIONS(3767), + [anon_sym_import] = ACTIONS(3767), + [anon_sym_test] = ACTIONS(3767), + [anon_sym_hide] = ACTIONS(3767), + [anon_sym_func] = ACTIONS(3767), + [anon_sym_BANG] = ACTIONS(3765), + [anon_sym_struct] = ACTIONS(3767), + [anon_sym_LPAREN] = ACTIONS(3765), + [anon_sym_RPAREN] = ACTIONS(3765), + [anon_sym_LBRACE] = ACTIONS(3765), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_DOLLAR] = ACTIONS(3765), + [anon_sym_LBRACK] = ACTIONS(3765), + [anon_sym_void] = ACTIONS(3767), + [anon_sym_anyopaque] = ACTIONS(3767), + [anon_sym_bool] = ACTIONS(3767), + [anon_sym_int] = ACTIONS(3767), + [anon_sym_uint] = ACTIONS(3767), + [anon_sym_float] = ACTIONS(3767), + [anon_sym_range] = ACTIONS(3767), + [anon_sym_i8] = ACTIONS(3767), + [anon_sym_i16] = ACTIONS(3767), + [anon_sym_i32] = ACTIONS(3767), + [anon_sym_i64] = ACTIONS(3767), + [anon_sym_u8] = ACTIONS(3767), + [anon_sym_u16] = ACTIONS(3767), + [anon_sym_u32] = ACTIONS(3767), + [anon_sym_u64] = ACTIONS(3767), + [anon_sym_isize] = ACTIONS(3767), + [anon_sym_usize] = ACTIONS(3767), + [anon_sym_f32] = ACTIONS(3767), + [anon_sym_f64] = ACTIONS(3767), + [anon_sym_c_char] = ACTIONS(3767), + [anon_sym_c_schar] = ACTIONS(3767), + [anon_sym_c_uchar] = ACTIONS(3767), + [anon_sym_c_short] = ACTIONS(3767), + [anon_sym_c_ushort] = ACTIONS(3767), + [anon_sym_c_int] = ACTIONS(3767), + [anon_sym_c_uint] = ACTIONS(3767), + [anon_sym_c_long] = ACTIONS(3767), + [anon_sym_c_ulong] = ACTIONS(3767), + [anon_sym_c_longlong] = ACTIONS(3767), + [anon_sym_c_ulonglong] = ACTIONS(3767), + [anon_sym_c_float] = ACTIONS(3767), + [anon_sym_c_double] = ACTIONS(3767), + [anon_sym_c_longdouble] = ACTIONS(3767), + [anon_sym_return] = ACTIONS(3767), + [anon_sym_yield] = ACTIONS(3767), + [anon_sym_break] = ACTIONS(3767), + [anon_sym_continue] = ACTIONS(3767), + [anon_sym_defer] = ACTIONS(3767), + [anon_sym_errdefer] = ACTIONS(3767), + [anon_sym_if] = ACTIONS(3767), + [anon_sym_else] = ACTIONS(3767), + [anon_sym_while] = ACTIONS(3767), + [anon_sym_expand] = ACTIONS(3767), + [anon_sym_for] = ACTIONS(3767), + [anon_sym_match] = ACTIONS(3767), + [anon_sym_AMP] = ACTIONS(3765), + [anon_sym_TILDE] = ACTIONS(3765), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_DOT] = ACTIONS(3765), + [anon_sym_true] = ACTIONS(3767), + [anon_sym_false] = ACTIONS(3767), + [sym_none] = ACTIONS(3767), + [sym_undefined] = ACTIONS(3767), + [sym_sink] = ACTIONS(3767), + [sym_integer] = ACTIONS(3767), + [sym_float] = ACTIONS(3765), + [anon_sym_DQUOTE] = ACTIONS(3765), + [sym_multiline_string] = ACTIONS(3765), + [sym_character] = ACTIONS(3765), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3765), + }, + [STATE(1627)] = { + [ts_builtin_sym_end] = ACTIONS(3769), + [sym_identifier] = ACTIONS(3771), + [anon_sym_import] = ACTIONS(3771), + [anon_sym_test] = ACTIONS(3771), + [anon_sym_hide] = ACTIONS(3771), + [anon_sym_func] = ACTIONS(3771), + [anon_sym_BANG] = ACTIONS(3769), + [anon_sym_struct] = ACTIONS(3771), + [anon_sym_LPAREN] = ACTIONS(3769), + [anon_sym_RPAREN] = ACTIONS(3769), + [anon_sym_LBRACE] = ACTIONS(3769), + [anon_sym_RBRACE] = ACTIONS(3769), + [anon_sym_DASH] = ACTIONS(3769), + [anon_sym_DOLLAR] = ACTIONS(3769), + [anon_sym_LBRACK] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3771), + [anon_sym_anyopaque] = ACTIONS(3771), + [anon_sym_bool] = ACTIONS(3771), + [anon_sym_int] = ACTIONS(3771), + [anon_sym_uint] = ACTIONS(3771), + [anon_sym_float] = ACTIONS(3771), + [anon_sym_range] = ACTIONS(3771), + [anon_sym_i8] = ACTIONS(3771), + [anon_sym_i16] = ACTIONS(3771), + [anon_sym_i32] = ACTIONS(3771), + [anon_sym_i64] = ACTIONS(3771), + [anon_sym_u8] = ACTIONS(3771), + [anon_sym_u16] = ACTIONS(3771), + [anon_sym_u32] = ACTIONS(3771), + [anon_sym_u64] = ACTIONS(3771), + [anon_sym_isize] = ACTIONS(3771), + [anon_sym_usize] = ACTIONS(3771), + [anon_sym_f32] = ACTIONS(3771), + [anon_sym_f64] = ACTIONS(3771), + [anon_sym_c_char] = ACTIONS(3771), + [anon_sym_c_schar] = ACTIONS(3771), + [anon_sym_c_uchar] = ACTIONS(3771), + [anon_sym_c_short] = ACTIONS(3771), + [anon_sym_c_ushort] = ACTIONS(3771), + [anon_sym_c_int] = ACTIONS(3771), + [anon_sym_c_uint] = ACTIONS(3771), + [anon_sym_c_long] = ACTIONS(3771), + [anon_sym_c_ulong] = ACTIONS(3771), + [anon_sym_c_longlong] = ACTIONS(3771), + [anon_sym_c_ulonglong] = ACTIONS(3771), + [anon_sym_c_float] = ACTIONS(3771), + [anon_sym_c_double] = ACTIONS(3771), + [anon_sym_c_longdouble] = ACTIONS(3771), + [anon_sym_return] = ACTIONS(3771), + [anon_sym_yield] = ACTIONS(3771), + [anon_sym_break] = ACTIONS(3771), + [anon_sym_continue] = ACTIONS(3771), + [anon_sym_defer] = ACTIONS(3771), + [anon_sym_errdefer] = ACTIONS(3771), + [anon_sym_if] = ACTIONS(3771), + [anon_sym_else] = ACTIONS(3771), + [anon_sym_while] = ACTIONS(3771), + [anon_sym_expand] = ACTIONS(3771), + [anon_sym_for] = ACTIONS(3771), + [anon_sym_match] = ACTIONS(3771), + [anon_sym_AMP] = ACTIONS(3769), + [anon_sym_TILDE] = ACTIONS(3769), + [anon_sym_try] = ACTIONS(3771), + [anon_sym_DOT] = ACTIONS(3769), + [anon_sym_true] = ACTIONS(3771), + [anon_sym_false] = ACTIONS(3771), + [sym_none] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [sym_sink] = ACTIONS(3771), + [sym_integer] = ACTIONS(3771), + [sym_float] = ACTIONS(3769), + [anon_sym_DQUOTE] = ACTIONS(3769), + [sym_multiline_string] = ACTIONS(3769), + [sym_character] = ACTIONS(3769), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3769), + }, + [STATE(1628)] = { + [ts_builtin_sym_end] = ACTIONS(3773), + [sym_identifier] = ACTIONS(3775), + [anon_sym_import] = ACTIONS(3775), + [anon_sym_test] = ACTIONS(3775), + [anon_sym_hide] = ACTIONS(3775), + [anon_sym_func] = ACTIONS(3775), + [anon_sym_BANG] = ACTIONS(3773), + [anon_sym_struct] = ACTIONS(3775), + [anon_sym_LPAREN] = ACTIONS(3773), + [anon_sym_RPAREN] = ACTIONS(3773), + [anon_sym_LBRACE] = ACTIONS(3773), + [anon_sym_RBRACE] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [anon_sym_DOLLAR] = ACTIONS(3773), + [anon_sym_LBRACK] = ACTIONS(3773), + [anon_sym_void] = ACTIONS(3775), + [anon_sym_anyopaque] = ACTIONS(3775), + [anon_sym_bool] = ACTIONS(3775), + [anon_sym_int] = ACTIONS(3775), + [anon_sym_uint] = ACTIONS(3775), + [anon_sym_float] = ACTIONS(3775), + [anon_sym_range] = ACTIONS(3775), + [anon_sym_i8] = ACTIONS(3775), + [anon_sym_i16] = ACTIONS(3775), + [anon_sym_i32] = ACTIONS(3775), + [anon_sym_i64] = ACTIONS(3775), + [anon_sym_u8] = ACTIONS(3775), + [anon_sym_u16] = ACTIONS(3775), + [anon_sym_u32] = ACTIONS(3775), + [anon_sym_u64] = ACTIONS(3775), + [anon_sym_isize] = ACTIONS(3775), + [anon_sym_usize] = ACTIONS(3775), + [anon_sym_f32] = ACTIONS(3775), + [anon_sym_f64] = ACTIONS(3775), + [anon_sym_c_char] = ACTIONS(3775), + [anon_sym_c_schar] = ACTIONS(3775), + [anon_sym_c_uchar] = ACTIONS(3775), + [anon_sym_c_short] = ACTIONS(3775), + [anon_sym_c_ushort] = ACTIONS(3775), + [anon_sym_c_int] = ACTIONS(3775), + [anon_sym_c_uint] = ACTIONS(3775), + [anon_sym_c_long] = ACTIONS(3775), + [anon_sym_c_ulong] = ACTIONS(3775), + [anon_sym_c_longlong] = ACTIONS(3775), + [anon_sym_c_ulonglong] = ACTIONS(3775), + [anon_sym_c_float] = ACTIONS(3775), + [anon_sym_c_double] = ACTIONS(3775), + [anon_sym_c_longdouble] = ACTIONS(3775), + [anon_sym_return] = ACTIONS(3775), + [anon_sym_yield] = ACTIONS(3775), + [anon_sym_break] = ACTIONS(3775), + [anon_sym_continue] = ACTIONS(3775), + [anon_sym_defer] = ACTIONS(3775), + [anon_sym_errdefer] = ACTIONS(3775), + [anon_sym_if] = ACTIONS(3775), + [anon_sym_else] = ACTIONS(3775), + [anon_sym_while] = ACTIONS(3775), + [anon_sym_expand] = ACTIONS(3775), + [anon_sym_for] = ACTIONS(3775), + [anon_sym_match] = ACTIONS(3775), + [anon_sym_AMP] = ACTIONS(3773), + [anon_sym_TILDE] = ACTIONS(3773), + [anon_sym_try] = ACTIONS(3775), + [anon_sym_DOT] = ACTIONS(3773), + [anon_sym_true] = ACTIONS(3775), + [anon_sym_false] = ACTIONS(3775), + [sym_none] = ACTIONS(3775), + [sym_undefined] = ACTIONS(3775), + [sym_sink] = ACTIONS(3775), + [sym_integer] = ACTIONS(3775), + [sym_float] = ACTIONS(3773), + [anon_sym_DQUOTE] = ACTIONS(3773), + [sym_multiline_string] = ACTIONS(3773), + [sym_character] = ACTIONS(3773), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3773), + }, + [STATE(1629)] = { + [ts_builtin_sym_end] = ACTIONS(3777), + [sym_identifier] = ACTIONS(3779), + [anon_sym_import] = ACTIONS(3779), + [anon_sym_test] = ACTIONS(3779), + [anon_sym_hide] = ACTIONS(3779), + [anon_sym_func] = ACTIONS(3779), + [anon_sym_BANG] = ACTIONS(3777), + [anon_sym_struct] = ACTIONS(3779), + [anon_sym_LPAREN] = ACTIONS(3777), + [anon_sym_RPAREN] = ACTIONS(3777), + [anon_sym_LBRACE] = ACTIONS(3777), + [anon_sym_RBRACE] = ACTIONS(3777), + [anon_sym_DASH] = ACTIONS(3777), + [anon_sym_DOLLAR] = ACTIONS(3777), + [anon_sym_LBRACK] = ACTIONS(3777), + [anon_sym_void] = ACTIONS(3779), + [anon_sym_anyopaque] = ACTIONS(3779), + [anon_sym_bool] = ACTIONS(3779), + [anon_sym_int] = ACTIONS(3779), + [anon_sym_uint] = ACTIONS(3779), + [anon_sym_float] = ACTIONS(3779), + [anon_sym_range] = ACTIONS(3779), + [anon_sym_i8] = ACTIONS(3779), + [anon_sym_i16] = ACTIONS(3779), + [anon_sym_i32] = ACTIONS(3779), + [anon_sym_i64] = ACTIONS(3779), + [anon_sym_u8] = ACTIONS(3779), + [anon_sym_u16] = ACTIONS(3779), + [anon_sym_u32] = ACTIONS(3779), + [anon_sym_u64] = ACTIONS(3779), + [anon_sym_isize] = ACTIONS(3779), + [anon_sym_usize] = ACTIONS(3779), + [anon_sym_f32] = ACTIONS(3779), + [anon_sym_f64] = ACTIONS(3779), + [anon_sym_c_char] = ACTIONS(3779), + [anon_sym_c_schar] = ACTIONS(3779), + [anon_sym_c_uchar] = ACTIONS(3779), + [anon_sym_c_short] = ACTIONS(3779), + [anon_sym_c_ushort] = ACTIONS(3779), + [anon_sym_c_int] = ACTIONS(3779), + [anon_sym_c_uint] = ACTIONS(3779), + [anon_sym_c_long] = ACTIONS(3779), + [anon_sym_c_ulong] = ACTIONS(3779), + [anon_sym_c_longlong] = ACTIONS(3779), + [anon_sym_c_ulonglong] = ACTIONS(3779), + [anon_sym_c_float] = ACTIONS(3779), + [anon_sym_c_double] = ACTIONS(3779), + [anon_sym_c_longdouble] = ACTIONS(3779), + [anon_sym_return] = ACTIONS(3779), + [anon_sym_yield] = ACTIONS(3779), + [anon_sym_break] = ACTIONS(3779), + [anon_sym_continue] = ACTIONS(3779), + [anon_sym_defer] = ACTIONS(3779), + [anon_sym_errdefer] = ACTIONS(3779), + [anon_sym_if] = ACTIONS(3779), + [anon_sym_else] = ACTIONS(3779), + [anon_sym_while] = ACTIONS(3779), + [anon_sym_expand] = ACTIONS(3779), + [anon_sym_for] = ACTIONS(3779), + [anon_sym_match] = ACTIONS(3779), + [anon_sym_AMP] = ACTIONS(3777), + [anon_sym_TILDE] = ACTIONS(3777), + [anon_sym_try] = ACTIONS(3779), + [anon_sym_DOT] = ACTIONS(3777), + [anon_sym_true] = ACTIONS(3779), + [anon_sym_false] = ACTIONS(3779), + [sym_none] = ACTIONS(3779), + [sym_undefined] = ACTIONS(3779), + [sym_sink] = ACTIONS(3779), + [sym_integer] = ACTIONS(3779), + [sym_float] = ACTIONS(3777), + [anon_sym_DQUOTE] = ACTIONS(3777), + [sym_multiline_string] = ACTIONS(3777), + [sym_character] = ACTIONS(3777), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3777), + }, + [STATE(1630)] = { + [ts_builtin_sym_end] = ACTIONS(3781), + [sym_identifier] = ACTIONS(3783), + [anon_sym_import] = ACTIONS(3783), + [anon_sym_test] = ACTIONS(3783), + [anon_sym_hide] = ACTIONS(3783), + [anon_sym_func] = ACTIONS(3783), + [anon_sym_BANG] = ACTIONS(3781), + [anon_sym_struct] = ACTIONS(3783), + [anon_sym_LPAREN] = ACTIONS(3781), + [anon_sym_RPAREN] = ACTIONS(3781), + [anon_sym_LBRACE] = ACTIONS(3781), + [anon_sym_RBRACE] = ACTIONS(3781), + [anon_sym_DASH] = ACTIONS(3781), + [anon_sym_DOLLAR] = ACTIONS(3781), + [anon_sym_LBRACK] = ACTIONS(3781), + [anon_sym_void] = ACTIONS(3783), + [anon_sym_anyopaque] = ACTIONS(3783), + [anon_sym_bool] = ACTIONS(3783), + [anon_sym_int] = ACTIONS(3783), + [anon_sym_uint] = ACTIONS(3783), + [anon_sym_float] = ACTIONS(3783), + [anon_sym_range] = ACTIONS(3783), + [anon_sym_i8] = ACTIONS(3783), + [anon_sym_i16] = ACTIONS(3783), + [anon_sym_i32] = ACTIONS(3783), + [anon_sym_i64] = ACTIONS(3783), + [anon_sym_u8] = ACTIONS(3783), + [anon_sym_u16] = ACTIONS(3783), + [anon_sym_u32] = ACTIONS(3783), + [anon_sym_u64] = ACTIONS(3783), + [anon_sym_isize] = ACTIONS(3783), + [anon_sym_usize] = ACTIONS(3783), + [anon_sym_f32] = ACTIONS(3783), + [anon_sym_f64] = ACTIONS(3783), + [anon_sym_c_char] = ACTIONS(3783), + [anon_sym_c_schar] = ACTIONS(3783), + [anon_sym_c_uchar] = ACTIONS(3783), + [anon_sym_c_short] = ACTIONS(3783), + [anon_sym_c_ushort] = ACTIONS(3783), + [anon_sym_c_int] = ACTIONS(3783), + [anon_sym_c_uint] = ACTIONS(3783), + [anon_sym_c_long] = ACTIONS(3783), + [anon_sym_c_ulong] = ACTIONS(3783), + [anon_sym_c_longlong] = ACTIONS(3783), + [anon_sym_c_ulonglong] = ACTIONS(3783), + [anon_sym_c_float] = ACTIONS(3783), + [anon_sym_c_double] = ACTIONS(3783), + [anon_sym_c_longdouble] = ACTIONS(3783), + [anon_sym_return] = ACTIONS(3783), + [anon_sym_yield] = ACTIONS(3783), + [anon_sym_break] = ACTIONS(3783), + [anon_sym_continue] = ACTIONS(3783), + [anon_sym_defer] = ACTIONS(3783), + [anon_sym_errdefer] = ACTIONS(3783), + [anon_sym_if] = ACTIONS(3783), + [anon_sym_else] = ACTIONS(3783), + [anon_sym_while] = ACTIONS(3783), + [anon_sym_expand] = ACTIONS(3783), + [anon_sym_for] = ACTIONS(3783), + [anon_sym_match] = ACTIONS(3783), + [anon_sym_AMP] = ACTIONS(3781), + [anon_sym_TILDE] = ACTIONS(3781), + [anon_sym_try] = ACTIONS(3783), + [anon_sym_DOT] = ACTIONS(3781), + [anon_sym_true] = ACTIONS(3783), + [anon_sym_false] = ACTIONS(3783), + [sym_none] = ACTIONS(3783), + [sym_undefined] = ACTIONS(3783), + [sym_sink] = ACTIONS(3783), + [sym_integer] = ACTIONS(3783), + [sym_float] = ACTIONS(3781), + [anon_sym_DQUOTE] = ACTIONS(3781), + [sym_multiline_string] = ACTIONS(3781), + [sym_character] = ACTIONS(3781), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3781), + }, + [STATE(1631)] = { + [ts_builtin_sym_end] = ACTIONS(3785), + [sym_identifier] = ACTIONS(3787), + [anon_sym_import] = ACTIONS(3787), + [anon_sym_test] = ACTIONS(3787), + [anon_sym_hide] = ACTIONS(3787), + [anon_sym_func] = ACTIONS(3787), + [anon_sym_BANG] = ACTIONS(3785), + [anon_sym_struct] = ACTIONS(3787), + [anon_sym_LPAREN] = ACTIONS(3785), + [anon_sym_RPAREN] = ACTIONS(3785), + [anon_sym_LBRACE] = ACTIONS(3785), + [anon_sym_RBRACE] = ACTIONS(3785), + [anon_sym_DASH] = ACTIONS(3785), + [anon_sym_DOLLAR] = ACTIONS(3785), + [anon_sym_LBRACK] = ACTIONS(3785), + [anon_sym_void] = ACTIONS(3787), + [anon_sym_anyopaque] = ACTIONS(3787), + [anon_sym_bool] = ACTIONS(3787), + [anon_sym_int] = ACTIONS(3787), + [anon_sym_uint] = ACTIONS(3787), + [anon_sym_float] = ACTIONS(3787), + [anon_sym_range] = ACTIONS(3787), + [anon_sym_i8] = ACTIONS(3787), + [anon_sym_i16] = ACTIONS(3787), + [anon_sym_i32] = ACTIONS(3787), + [anon_sym_i64] = ACTIONS(3787), + [anon_sym_u8] = ACTIONS(3787), + [anon_sym_u16] = ACTIONS(3787), + [anon_sym_u32] = ACTIONS(3787), + [anon_sym_u64] = ACTIONS(3787), + [anon_sym_isize] = ACTIONS(3787), + [anon_sym_usize] = ACTIONS(3787), + [anon_sym_f32] = ACTIONS(3787), + [anon_sym_f64] = ACTIONS(3787), + [anon_sym_c_char] = ACTIONS(3787), + [anon_sym_c_schar] = ACTIONS(3787), + [anon_sym_c_uchar] = ACTIONS(3787), + [anon_sym_c_short] = ACTIONS(3787), + [anon_sym_c_ushort] = ACTIONS(3787), + [anon_sym_c_int] = ACTIONS(3787), + [anon_sym_c_uint] = ACTIONS(3787), + [anon_sym_c_long] = ACTIONS(3787), + [anon_sym_c_ulong] = ACTIONS(3787), + [anon_sym_c_longlong] = ACTIONS(3787), + [anon_sym_c_ulonglong] = ACTIONS(3787), + [anon_sym_c_float] = ACTIONS(3787), + [anon_sym_c_double] = ACTIONS(3787), + [anon_sym_c_longdouble] = ACTIONS(3787), + [anon_sym_return] = ACTIONS(3787), + [anon_sym_yield] = ACTIONS(3787), + [anon_sym_break] = ACTIONS(3787), + [anon_sym_continue] = ACTIONS(3787), + [anon_sym_defer] = ACTIONS(3787), + [anon_sym_errdefer] = ACTIONS(3787), + [anon_sym_if] = ACTIONS(3787), + [anon_sym_else] = ACTIONS(3787), + [anon_sym_while] = ACTIONS(3787), + [anon_sym_expand] = ACTIONS(3787), + [anon_sym_for] = ACTIONS(3787), + [anon_sym_match] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(3785), + [anon_sym_TILDE] = ACTIONS(3785), + [anon_sym_try] = ACTIONS(3787), + [anon_sym_DOT] = ACTIONS(3785), + [anon_sym_true] = ACTIONS(3787), + [anon_sym_false] = ACTIONS(3787), + [sym_none] = ACTIONS(3787), + [sym_undefined] = ACTIONS(3787), + [sym_sink] = ACTIONS(3787), + [sym_integer] = ACTIONS(3787), + [sym_float] = ACTIONS(3785), + [anon_sym_DQUOTE] = ACTIONS(3785), + [sym_multiline_string] = ACTIONS(3785), + [sym_character] = ACTIONS(3785), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3785), + }, + [STATE(1632)] = { + [ts_builtin_sym_end] = ACTIONS(3789), + [sym_identifier] = ACTIONS(3791), + [anon_sym_import] = ACTIONS(3791), + [anon_sym_test] = ACTIONS(3791), + [anon_sym_hide] = ACTIONS(3791), + [anon_sym_func] = ACTIONS(3791), + [anon_sym_BANG] = ACTIONS(3789), + [anon_sym_struct] = ACTIONS(3791), + [anon_sym_LPAREN] = ACTIONS(3789), + [anon_sym_RPAREN] = ACTIONS(3789), + [anon_sym_LBRACE] = ACTIONS(3789), + [anon_sym_RBRACE] = ACTIONS(3789), + [anon_sym_DASH] = ACTIONS(3789), + [anon_sym_DOLLAR] = ACTIONS(3789), + [anon_sym_LBRACK] = ACTIONS(3789), + [anon_sym_void] = ACTIONS(3791), + [anon_sym_anyopaque] = ACTIONS(3791), + [anon_sym_bool] = ACTIONS(3791), + [anon_sym_int] = ACTIONS(3791), + [anon_sym_uint] = ACTIONS(3791), + [anon_sym_float] = ACTIONS(3791), + [anon_sym_range] = ACTIONS(3791), + [anon_sym_i8] = ACTIONS(3791), + [anon_sym_i16] = ACTIONS(3791), + [anon_sym_i32] = ACTIONS(3791), + [anon_sym_i64] = ACTIONS(3791), + [anon_sym_u8] = ACTIONS(3791), + [anon_sym_u16] = ACTIONS(3791), + [anon_sym_u32] = ACTIONS(3791), + [anon_sym_u64] = ACTIONS(3791), + [anon_sym_isize] = ACTIONS(3791), + [anon_sym_usize] = ACTIONS(3791), + [anon_sym_f32] = ACTIONS(3791), + [anon_sym_f64] = ACTIONS(3791), + [anon_sym_c_char] = ACTIONS(3791), + [anon_sym_c_schar] = ACTIONS(3791), + [anon_sym_c_uchar] = ACTIONS(3791), + [anon_sym_c_short] = ACTIONS(3791), + [anon_sym_c_ushort] = ACTIONS(3791), + [anon_sym_c_int] = ACTIONS(3791), + [anon_sym_c_uint] = ACTIONS(3791), + [anon_sym_c_long] = ACTIONS(3791), + [anon_sym_c_ulong] = ACTIONS(3791), + [anon_sym_c_longlong] = ACTIONS(3791), + [anon_sym_c_ulonglong] = ACTIONS(3791), + [anon_sym_c_float] = ACTIONS(3791), + [anon_sym_c_double] = ACTIONS(3791), + [anon_sym_c_longdouble] = ACTIONS(3791), + [anon_sym_return] = ACTIONS(3791), + [anon_sym_yield] = ACTIONS(3791), + [anon_sym_break] = ACTIONS(3791), + [anon_sym_continue] = ACTIONS(3791), + [anon_sym_defer] = ACTIONS(3791), + [anon_sym_errdefer] = ACTIONS(3791), + [anon_sym_if] = ACTIONS(3791), + [anon_sym_else] = ACTIONS(3791), + [anon_sym_while] = ACTIONS(3791), + [anon_sym_expand] = ACTIONS(3791), + [anon_sym_for] = ACTIONS(3791), + [anon_sym_match] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(3789), + [anon_sym_TILDE] = ACTIONS(3789), + [anon_sym_try] = ACTIONS(3791), + [anon_sym_DOT] = ACTIONS(3789), + [anon_sym_true] = ACTIONS(3791), + [anon_sym_false] = ACTIONS(3791), + [sym_none] = ACTIONS(3791), + [sym_undefined] = ACTIONS(3791), + [sym_sink] = ACTIONS(3791), + [sym_integer] = ACTIONS(3791), + [sym_float] = ACTIONS(3789), + [anon_sym_DQUOTE] = ACTIONS(3789), + [sym_multiline_string] = ACTIONS(3789), + [sym_character] = ACTIONS(3789), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3789), + }, + [STATE(1633)] = { + [ts_builtin_sym_end] = ACTIONS(3793), + [sym_identifier] = ACTIONS(3795), + [anon_sym_import] = ACTIONS(3795), + [anon_sym_test] = ACTIONS(3795), + [anon_sym_hide] = ACTIONS(3795), + [anon_sym_func] = ACTIONS(3795), + [anon_sym_BANG] = ACTIONS(3793), + [anon_sym_struct] = ACTIONS(3795), + [anon_sym_LPAREN] = ACTIONS(3793), + [anon_sym_RPAREN] = ACTIONS(3793), + [anon_sym_LBRACE] = ACTIONS(3793), + [anon_sym_RBRACE] = ACTIONS(3793), + [anon_sym_DASH] = ACTIONS(3793), + [anon_sym_DOLLAR] = ACTIONS(3793), + [anon_sym_LBRACK] = ACTIONS(3793), + [anon_sym_void] = ACTIONS(3795), + [anon_sym_anyopaque] = ACTIONS(3795), + [anon_sym_bool] = ACTIONS(3795), + [anon_sym_int] = ACTIONS(3795), + [anon_sym_uint] = ACTIONS(3795), + [anon_sym_float] = ACTIONS(3795), + [anon_sym_range] = ACTIONS(3795), + [anon_sym_i8] = ACTIONS(3795), + [anon_sym_i16] = ACTIONS(3795), + [anon_sym_i32] = ACTIONS(3795), + [anon_sym_i64] = ACTIONS(3795), + [anon_sym_u8] = ACTIONS(3795), + [anon_sym_u16] = ACTIONS(3795), + [anon_sym_u32] = ACTIONS(3795), + [anon_sym_u64] = ACTIONS(3795), + [anon_sym_isize] = ACTIONS(3795), + [anon_sym_usize] = ACTIONS(3795), + [anon_sym_f32] = ACTIONS(3795), + [anon_sym_f64] = ACTIONS(3795), + [anon_sym_c_char] = ACTIONS(3795), + [anon_sym_c_schar] = ACTIONS(3795), + [anon_sym_c_uchar] = ACTIONS(3795), + [anon_sym_c_short] = ACTIONS(3795), + [anon_sym_c_ushort] = ACTIONS(3795), + [anon_sym_c_int] = ACTIONS(3795), + [anon_sym_c_uint] = ACTIONS(3795), + [anon_sym_c_long] = ACTIONS(3795), + [anon_sym_c_ulong] = ACTIONS(3795), + [anon_sym_c_longlong] = ACTIONS(3795), + [anon_sym_c_ulonglong] = ACTIONS(3795), + [anon_sym_c_float] = ACTIONS(3795), + [anon_sym_c_double] = ACTIONS(3795), + [anon_sym_c_longdouble] = ACTIONS(3795), + [anon_sym_return] = ACTIONS(3795), + [anon_sym_yield] = ACTIONS(3795), + [anon_sym_break] = ACTIONS(3795), + [anon_sym_continue] = ACTIONS(3795), + [anon_sym_defer] = ACTIONS(3795), + [anon_sym_errdefer] = ACTIONS(3795), + [anon_sym_if] = ACTIONS(3795), + [anon_sym_else] = ACTIONS(3795), + [anon_sym_while] = ACTIONS(3795), + [anon_sym_expand] = ACTIONS(3795), + [anon_sym_for] = ACTIONS(3795), + [anon_sym_match] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(3793), + [anon_sym_TILDE] = ACTIONS(3793), + [anon_sym_try] = ACTIONS(3795), + [anon_sym_DOT] = ACTIONS(3793), + [anon_sym_true] = ACTIONS(3795), + [anon_sym_false] = ACTIONS(3795), + [sym_none] = ACTIONS(3795), + [sym_undefined] = ACTIONS(3795), + [sym_sink] = ACTIONS(3795), + [sym_integer] = ACTIONS(3795), + [sym_float] = ACTIONS(3793), + [anon_sym_DQUOTE] = ACTIONS(3793), + [sym_multiline_string] = ACTIONS(3793), + [sym_character] = ACTIONS(3793), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3793), + }, + [STATE(1634)] = { + [ts_builtin_sym_end] = ACTIONS(3797), + [sym_identifier] = ACTIONS(3799), + [anon_sym_import] = ACTIONS(3799), + [anon_sym_test] = ACTIONS(3799), + [anon_sym_hide] = ACTIONS(3799), + [anon_sym_func] = ACTIONS(3799), + [anon_sym_BANG] = ACTIONS(3797), + [anon_sym_struct] = ACTIONS(3799), + [anon_sym_LPAREN] = ACTIONS(3797), + [anon_sym_RPAREN] = ACTIONS(3797), + [anon_sym_LBRACE] = ACTIONS(3797), + [anon_sym_RBRACE] = ACTIONS(3797), + [anon_sym_DASH] = ACTIONS(3797), + [anon_sym_DOLLAR] = ACTIONS(3797), + [anon_sym_LBRACK] = ACTIONS(3797), + [anon_sym_void] = ACTIONS(3799), + [anon_sym_anyopaque] = ACTIONS(3799), + [anon_sym_bool] = ACTIONS(3799), + [anon_sym_int] = ACTIONS(3799), + [anon_sym_uint] = ACTIONS(3799), + [anon_sym_float] = ACTIONS(3799), + [anon_sym_range] = ACTIONS(3799), + [anon_sym_i8] = ACTIONS(3799), + [anon_sym_i16] = ACTIONS(3799), + [anon_sym_i32] = ACTIONS(3799), + [anon_sym_i64] = ACTIONS(3799), + [anon_sym_u8] = ACTIONS(3799), + [anon_sym_u16] = ACTIONS(3799), + [anon_sym_u32] = ACTIONS(3799), + [anon_sym_u64] = ACTIONS(3799), + [anon_sym_isize] = ACTIONS(3799), + [anon_sym_usize] = ACTIONS(3799), + [anon_sym_f32] = ACTIONS(3799), + [anon_sym_f64] = ACTIONS(3799), + [anon_sym_c_char] = ACTIONS(3799), + [anon_sym_c_schar] = ACTIONS(3799), + [anon_sym_c_uchar] = ACTIONS(3799), + [anon_sym_c_short] = ACTIONS(3799), + [anon_sym_c_ushort] = ACTIONS(3799), + [anon_sym_c_int] = ACTIONS(3799), + [anon_sym_c_uint] = ACTIONS(3799), + [anon_sym_c_long] = ACTIONS(3799), + [anon_sym_c_ulong] = ACTIONS(3799), + [anon_sym_c_longlong] = ACTIONS(3799), + [anon_sym_c_ulonglong] = ACTIONS(3799), + [anon_sym_c_float] = ACTIONS(3799), + [anon_sym_c_double] = ACTIONS(3799), + [anon_sym_c_longdouble] = ACTIONS(3799), + [anon_sym_return] = ACTIONS(3799), + [anon_sym_yield] = ACTIONS(3799), + [anon_sym_break] = ACTIONS(3799), + [anon_sym_continue] = ACTIONS(3799), + [anon_sym_defer] = ACTIONS(3799), + [anon_sym_errdefer] = ACTIONS(3799), + [anon_sym_if] = ACTIONS(3799), + [anon_sym_else] = ACTIONS(3799), + [anon_sym_while] = ACTIONS(3799), + [anon_sym_expand] = ACTIONS(3799), + [anon_sym_for] = ACTIONS(3799), + [anon_sym_match] = ACTIONS(3799), + [anon_sym_AMP] = ACTIONS(3797), + [anon_sym_TILDE] = ACTIONS(3797), + [anon_sym_try] = ACTIONS(3799), + [anon_sym_DOT] = ACTIONS(3797), + [anon_sym_true] = ACTIONS(3799), + [anon_sym_false] = ACTIONS(3799), + [sym_none] = ACTIONS(3799), + [sym_undefined] = ACTIONS(3799), + [sym_sink] = ACTIONS(3799), + [sym_integer] = ACTIONS(3799), + [sym_float] = ACTIONS(3797), + [anon_sym_DQUOTE] = ACTIONS(3797), + [sym_multiline_string] = ACTIONS(3797), + [sym_character] = ACTIONS(3797), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3797), + }, + [STATE(1635)] = { + [ts_builtin_sym_end] = ACTIONS(3801), + [sym_identifier] = ACTIONS(3803), + [anon_sym_import] = ACTIONS(3803), + [anon_sym_test] = ACTIONS(3803), + [anon_sym_hide] = ACTIONS(3803), + [anon_sym_func] = ACTIONS(3803), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_struct] = ACTIONS(3803), + [anon_sym_LPAREN] = ACTIONS(3801), + [anon_sym_RPAREN] = ACTIONS(3801), + [anon_sym_LBRACE] = ACTIONS(3801), + [anon_sym_RBRACE] = ACTIONS(3801), + [anon_sym_DASH] = ACTIONS(3801), + [anon_sym_DOLLAR] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3801), + [anon_sym_void] = ACTIONS(3803), + [anon_sym_anyopaque] = ACTIONS(3803), + [anon_sym_bool] = ACTIONS(3803), + [anon_sym_int] = ACTIONS(3803), + [anon_sym_uint] = ACTIONS(3803), + [anon_sym_float] = ACTIONS(3803), + [anon_sym_range] = ACTIONS(3803), + [anon_sym_i8] = ACTIONS(3803), + [anon_sym_i16] = ACTIONS(3803), + [anon_sym_i32] = ACTIONS(3803), + [anon_sym_i64] = ACTIONS(3803), + [anon_sym_u8] = ACTIONS(3803), + [anon_sym_u16] = ACTIONS(3803), + [anon_sym_u32] = ACTIONS(3803), + [anon_sym_u64] = ACTIONS(3803), + [anon_sym_isize] = ACTIONS(3803), + [anon_sym_usize] = ACTIONS(3803), + [anon_sym_f32] = ACTIONS(3803), + [anon_sym_f64] = ACTIONS(3803), + [anon_sym_c_char] = ACTIONS(3803), + [anon_sym_c_schar] = ACTIONS(3803), + [anon_sym_c_uchar] = ACTIONS(3803), + [anon_sym_c_short] = ACTIONS(3803), + [anon_sym_c_ushort] = ACTIONS(3803), + [anon_sym_c_int] = ACTIONS(3803), + [anon_sym_c_uint] = ACTIONS(3803), + [anon_sym_c_long] = ACTIONS(3803), + [anon_sym_c_ulong] = ACTIONS(3803), + [anon_sym_c_longlong] = ACTIONS(3803), + [anon_sym_c_ulonglong] = ACTIONS(3803), + [anon_sym_c_float] = ACTIONS(3803), + [anon_sym_c_double] = ACTIONS(3803), + [anon_sym_c_longdouble] = ACTIONS(3803), + [anon_sym_return] = ACTIONS(3803), + [anon_sym_yield] = ACTIONS(3803), + [anon_sym_break] = ACTIONS(3803), + [anon_sym_continue] = ACTIONS(3803), + [anon_sym_defer] = ACTIONS(3803), + [anon_sym_errdefer] = ACTIONS(3803), + [anon_sym_if] = ACTIONS(3803), + [anon_sym_else] = ACTIONS(3803), + [anon_sym_while] = ACTIONS(3803), + [anon_sym_expand] = ACTIONS(3803), + [anon_sym_for] = ACTIONS(3803), + [anon_sym_match] = ACTIONS(3803), + [anon_sym_AMP] = ACTIONS(3801), + [anon_sym_TILDE] = ACTIONS(3801), + [anon_sym_try] = ACTIONS(3803), + [anon_sym_DOT] = ACTIONS(3801), + [anon_sym_true] = ACTIONS(3803), + [anon_sym_false] = ACTIONS(3803), + [sym_none] = ACTIONS(3803), + [sym_undefined] = ACTIONS(3803), + [sym_sink] = ACTIONS(3803), + [sym_integer] = ACTIONS(3803), + [sym_float] = ACTIONS(3801), + [anon_sym_DQUOTE] = ACTIONS(3801), + [sym_multiline_string] = ACTIONS(3801), + [sym_character] = ACTIONS(3801), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3801), + }, + [STATE(1636)] = { + [ts_builtin_sym_end] = ACTIONS(3805), + [sym_identifier] = ACTIONS(3807), + [anon_sym_import] = ACTIONS(3807), + [anon_sym_test] = ACTIONS(3807), + [anon_sym_hide] = ACTIONS(3807), + [anon_sym_func] = ACTIONS(3807), + [anon_sym_BANG] = ACTIONS(3805), + [anon_sym_struct] = ACTIONS(3807), + [anon_sym_LPAREN] = ACTIONS(3805), + [anon_sym_RPAREN] = ACTIONS(3805), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_RBRACE] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3805), + [anon_sym_DOLLAR] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3805), + [anon_sym_void] = ACTIONS(3807), + [anon_sym_anyopaque] = ACTIONS(3807), + [anon_sym_bool] = ACTIONS(3807), + [anon_sym_int] = ACTIONS(3807), + [anon_sym_uint] = ACTIONS(3807), + [anon_sym_float] = ACTIONS(3807), + [anon_sym_range] = ACTIONS(3807), + [anon_sym_i8] = ACTIONS(3807), + [anon_sym_i16] = ACTIONS(3807), + [anon_sym_i32] = ACTIONS(3807), + [anon_sym_i64] = ACTIONS(3807), + [anon_sym_u8] = ACTIONS(3807), + [anon_sym_u16] = ACTIONS(3807), + [anon_sym_u32] = ACTIONS(3807), + [anon_sym_u64] = ACTIONS(3807), + [anon_sym_isize] = ACTIONS(3807), + [anon_sym_usize] = ACTIONS(3807), + [anon_sym_f32] = ACTIONS(3807), + [anon_sym_f64] = ACTIONS(3807), + [anon_sym_c_char] = ACTIONS(3807), + [anon_sym_c_schar] = ACTIONS(3807), + [anon_sym_c_uchar] = ACTIONS(3807), + [anon_sym_c_short] = ACTIONS(3807), + [anon_sym_c_ushort] = ACTIONS(3807), + [anon_sym_c_int] = ACTIONS(3807), + [anon_sym_c_uint] = ACTIONS(3807), + [anon_sym_c_long] = ACTIONS(3807), + [anon_sym_c_ulong] = ACTIONS(3807), + [anon_sym_c_longlong] = ACTIONS(3807), + [anon_sym_c_ulonglong] = ACTIONS(3807), + [anon_sym_c_float] = ACTIONS(3807), + [anon_sym_c_double] = ACTIONS(3807), + [anon_sym_c_longdouble] = ACTIONS(3807), + [anon_sym_return] = ACTIONS(3807), + [anon_sym_yield] = ACTIONS(3807), + [anon_sym_break] = ACTIONS(3807), + [anon_sym_continue] = ACTIONS(3807), + [anon_sym_defer] = ACTIONS(3807), + [anon_sym_errdefer] = ACTIONS(3807), + [anon_sym_if] = ACTIONS(3807), + [anon_sym_else] = ACTIONS(3807), + [anon_sym_while] = ACTIONS(3807), + [anon_sym_expand] = ACTIONS(3807), + [anon_sym_for] = ACTIONS(3807), + [anon_sym_match] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_TILDE] = ACTIONS(3805), + [anon_sym_try] = ACTIONS(3807), + [anon_sym_DOT] = ACTIONS(3805), + [anon_sym_true] = ACTIONS(3807), + [anon_sym_false] = ACTIONS(3807), + [sym_none] = ACTIONS(3807), + [sym_undefined] = ACTIONS(3807), + [sym_sink] = ACTIONS(3807), + [sym_integer] = ACTIONS(3807), + [sym_float] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(3805), + [sym_multiline_string] = ACTIONS(3805), + [sym_character] = ACTIONS(3805), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3805), + }, + [STATE(1637)] = { + [ts_builtin_sym_end] = ACTIONS(3809), + [sym_identifier] = ACTIONS(3811), + [anon_sym_import] = ACTIONS(3811), + [anon_sym_test] = ACTIONS(3811), + [anon_sym_hide] = ACTIONS(3811), + [anon_sym_func] = ACTIONS(3811), + [anon_sym_BANG] = ACTIONS(3809), + [anon_sym_struct] = ACTIONS(3811), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_LBRACE] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3809), + [anon_sym_DASH] = ACTIONS(3809), + [anon_sym_DOLLAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3809), + [anon_sym_void] = ACTIONS(3811), + [anon_sym_anyopaque] = ACTIONS(3811), + [anon_sym_bool] = ACTIONS(3811), + [anon_sym_int] = ACTIONS(3811), + [anon_sym_uint] = ACTIONS(3811), + [anon_sym_float] = ACTIONS(3811), + [anon_sym_range] = ACTIONS(3811), + [anon_sym_i8] = ACTIONS(3811), + [anon_sym_i16] = ACTIONS(3811), + [anon_sym_i32] = ACTIONS(3811), + [anon_sym_i64] = ACTIONS(3811), + [anon_sym_u8] = ACTIONS(3811), + [anon_sym_u16] = ACTIONS(3811), + [anon_sym_u32] = ACTIONS(3811), + [anon_sym_u64] = ACTIONS(3811), + [anon_sym_isize] = ACTIONS(3811), + [anon_sym_usize] = ACTIONS(3811), + [anon_sym_f32] = ACTIONS(3811), + [anon_sym_f64] = ACTIONS(3811), + [anon_sym_c_char] = ACTIONS(3811), + [anon_sym_c_schar] = ACTIONS(3811), + [anon_sym_c_uchar] = ACTIONS(3811), + [anon_sym_c_short] = ACTIONS(3811), + [anon_sym_c_ushort] = ACTIONS(3811), + [anon_sym_c_int] = ACTIONS(3811), + [anon_sym_c_uint] = ACTIONS(3811), + [anon_sym_c_long] = ACTIONS(3811), + [anon_sym_c_ulong] = ACTIONS(3811), + [anon_sym_c_longlong] = ACTIONS(3811), + [anon_sym_c_ulonglong] = ACTIONS(3811), + [anon_sym_c_float] = ACTIONS(3811), + [anon_sym_c_double] = ACTIONS(3811), + [anon_sym_c_longdouble] = ACTIONS(3811), + [anon_sym_return] = ACTIONS(3811), + [anon_sym_yield] = ACTIONS(3811), + [anon_sym_break] = ACTIONS(3811), + [anon_sym_continue] = ACTIONS(3811), + [anon_sym_defer] = ACTIONS(3811), + [anon_sym_errdefer] = ACTIONS(3811), + [anon_sym_if] = ACTIONS(3811), + [anon_sym_else] = ACTIONS(3811), + [anon_sym_while] = ACTIONS(3811), + [anon_sym_expand] = ACTIONS(3811), + [anon_sym_for] = ACTIONS(3811), + [anon_sym_match] = ACTIONS(3811), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_TILDE] = ACTIONS(3809), + [anon_sym_try] = ACTIONS(3811), + [anon_sym_DOT] = ACTIONS(3809), + [anon_sym_true] = ACTIONS(3811), + [anon_sym_false] = ACTIONS(3811), + [sym_none] = ACTIONS(3811), + [sym_undefined] = ACTIONS(3811), + [sym_sink] = ACTIONS(3811), + [sym_integer] = ACTIONS(3811), + [sym_float] = ACTIONS(3809), + [anon_sym_DQUOTE] = ACTIONS(3809), + [sym_multiline_string] = ACTIONS(3809), + [sym_character] = ACTIONS(3809), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3809), + }, + [STATE(1638)] = { + [ts_builtin_sym_end] = ACTIONS(3813), + [sym_identifier] = ACTIONS(3815), + [anon_sym_import] = ACTIONS(3815), + [anon_sym_test] = ACTIONS(3815), + [anon_sym_hide] = ACTIONS(3815), + [anon_sym_func] = ACTIONS(3815), + [anon_sym_BANG] = ACTIONS(3813), + [anon_sym_struct] = ACTIONS(3815), + [anon_sym_LPAREN] = ACTIONS(3813), + [anon_sym_RPAREN] = ACTIONS(3813), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3813), + [anon_sym_DASH] = ACTIONS(3813), + [anon_sym_DOLLAR] = ACTIONS(3813), + [anon_sym_LBRACK] = ACTIONS(3813), + [anon_sym_void] = ACTIONS(3815), + [anon_sym_anyopaque] = ACTIONS(3815), + [anon_sym_bool] = ACTIONS(3815), + [anon_sym_int] = ACTIONS(3815), + [anon_sym_uint] = ACTIONS(3815), + [anon_sym_float] = ACTIONS(3815), + [anon_sym_range] = ACTIONS(3815), + [anon_sym_i8] = ACTIONS(3815), + [anon_sym_i16] = ACTIONS(3815), + [anon_sym_i32] = ACTIONS(3815), + [anon_sym_i64] = ACTIONS(3815), + [anon_sym_u8] = ACTIONS(3815), + [anon_sym_u16] = ACTIONS(3815), + [anon_sym_u32] = ACTIONS(3815), + [anon_sym_u64] = ACTIONS(3815), + [anon_sym_isize] = ACTIONS(3815), + [anon_sym_usize] = ACTIONS(3815), + [anon_sym_f32] = ACTIONS(3815), + [anon_sym_f64] = ACTIONS(3815), + [anon_sym_c_char] = ACTIONS(3815), + [anon_sym_c_schar] = ACTIONS(3815), + [anon_sym_c_uchar] = ACTIONS(3815), + [anon_sym_c_short] = ACTIONS(3815), + [anon_sym_c_ushort] = ACTIONS(3815), + [anon_sym_c_int] = ACTIONS(3815), + [anon_sym_c_uint] = ACTIONS(3815), + [anon_sym_c_long] = ACTIONS(3815), + [anon_sym_c_ulong] = ACTIONS(3815), + [anon_sym_c_longlong] = ACTIONS(3815), + [anon_sym_c_ulonglong] = ACTIONS(3815), + [anon_sym_c_float] = ACTIONS(3815), + [anon_sym_c_double] = ACTIONS(3815), + [anon_sym_c_longdouble] = ACTIONS(3815), + [anon_sym_return] = ACTIONS(3815), + [anon_sym_yield] = ACTIONS(3815), + [anon_sym_break] = ACTIONS(3815), + [anon_sym_continue] = ACTIONS(3815), + [anon_sym_defer] = ACTIONS(3815), + [anon_sym_errdefer] = ACTIONS(3815), + [anon_sym_if] = ACTIONS(3815), + [anon_sym_else] = ACTIONS(3815), + [anon_sym_while] = ACTIONS(3815), + [anon_sym_expand] = ACTIONS(3815), + [anon_sym_for] = ACTIONS(3815), + [anon_sym_match] = ACTIONS(3815), + [anon_sym_AMP] = ACTIONS(3813), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_try] = ACTIONS(3815), + [anon_sym_DOT] = ACTIONS(3813), + [anon_sym_true] = ACTIONS(3815), + [anon_sym_false] = ACTIONS(3815), + [sym_none] = ACTIONS(3815), + [sym_undefined] = ACTIONS(3815), + [sym_sink] = ACTIONS(3815), + [sym_integer] = ACTIONS(3815), + [sym_float] = ACTIONS(3813), + [anon_sym_DQUOTE] = ACTIONS(3813), + [sym_multiline_string] = ACTIONS(3813), + [sym_character] = ACTIONS(3813), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3813), + }, + [STATE(1639)] = { + [ts_builtin_sym_end] = ACTIONS(3817), + [sym_identifier] = ACTIONS(3819), + [anon_sym_import] = ACTIONS(3819), + [anon_sym_test] = ACTIONS(3819), + [anon_sym_hide] = ACTIONS(3819), + [anon_sym_func] = ACTIONS(3819), + [anon_sym_BANG] = ACTIONS(3817), + [anon_sym_struct] = ACTIONS(3819), + [anon_sym_LPAREN] = ACTIONS(3817), + [anon_sym_RPAREN] = ACTIONS(3817), + [anon_sym_LBRACE] = ACTIONS(3817), + [anon_sym_RBRACE] = ACTIONS(3817), + [anon_sym_DASH] = ACTIONS(3817), + [anon_sym_DOLLAR] = ACTIONS(3817), + [anon_sym_LBRACK] = ACTIONS(3817), + [anon_sym_void] = ACTIONS(3819), + [anon_sym_anyopaque] = ACTIONS(3819), + [anon_sym_bool] = ACTIONS(3819), + [anon_sym_int] = ACTIONS(3819), + [anon_sym_uint] = ACTIONS(3819), + [anon_sym_float] = ACTIONS(3819), + [anon_sym_range] = ACTIONS(3819), + [anon_sym_i8] = ACTIONS(3819), + [anon_sym_i16] = ACTIONS(3819), + [anon_sym_i32] = ACTIONS(3819), + [anon_sym_i64] = ACTIONS(3819), + [anon_sym_u8] = ACTIONS(3819), + [anon_sym_u16] = ACTIONS(3819), + [anon_sym_u32] = ACTIONS(3819), + [anon_sym_u64] = ACTIONS(3819), + [anon_sym_isize] = ACTIONS(3819), + [anon_sym_usize] = ACTIONS(3819), + [anon_sym_f32] = ACTIONS(3819), + [anon_sym_f64] = ACTIONS(3819), + [anon_sym_c_char] = ACTIONS(3819), + [anon_sym_c_schar] = ACTIONS(3819), + [anon_sym_c_uchar] = ACTIONS(3819), + [anon_sym_c_short] = ACTIONS(3819), + [anon_sym_c_ushort] = ACTIONS(3819), + [anon_sym_c_int] = ACTIONS(3819), + [anon_sym_c_uint] = ACTIONS(3819), + [anon_sym_c_long] = ACTIONS(3819), + [anon_sym_c_ulong] = ACTIONS(3819), + [anon_sym_c_longlong] = ACTIONS(3819), + [anon_sym_c_ulonglong] = ACTIONS(3819), + [anon_sym_c_float] = ACTIONS(3819), + [anon_sym_c_double] = ACTIONS(3819), + [anon_sym_c_longdouble] = ACTIONS(3819), + [anon_sym_return] = ACTIONS(3819), + [anon_sym_yield] = ACTIONS(3819), + [anon_sym_break] = ACTIONS(3819), + [anon_sym_continue] = ACTIONS(3819), + [anon_sym_defer] = ACTIONS(3819), + [anon_sym_errdefer] = ACTIONS(3819), + [anon_sym_if] = ACTIONS(3819), + [anon_sym_else] = ACTIONS(3819), + [anon_sym_while] = ACTIONS(3819), + [anon_sym_expand] = ACTIONS(3819), + [anon_sym_for] = ACTIONS(3819), + [anon_sym_match] = ACTIONS(3819), + [anon_sym_AMP] = ACTIONS(3817), + [anon_sym_TILDE] = ACTIONS(3817), + [anon_sym_try] = ACTIONS(3819), + [anon_sym_DOT] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(3819), + [anon_sym_false] = ACTIONS(3819), + [sym_none] = ACTIONS(3819), + [sym_undefined] = ACTIONS(3819), + [sym_sink] = ACTIONS(3819), + [sym_integer] = ACTIONS(3819), + [sym_float] = ACTIONS(3817), + [anon_sym_DQUOTE] = ACTIONS(3817), + [sym_multiline_string] = ACTIONS(3817), + [sym_character] = ACTIONS(3817), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3817), + }, + [STATE(1640)] = { + [ts_builtin_sym_end] = ACTIONS(3821), + [sym_identifier] = ACTIONS(3823), + [anon_sym_import] = ACTIONS(3823), + [anon_sym_test] = ACTIONS(3823), + [anon_sym_hide] = ACTIONS(3823), + [anon_sym_func] = ACTIONS(3823), + [anon_sym_BANG] = ACTIONS(3821), + [anon_sym_struct] = ACTIONS(3823), + [anon_sym_LPAREN] = ACTIONS(3821), + [anon_sym_RPAREN] = ACTIONS(3821), + [anon_sym_LBRACE] = ACTIONS(3821), + [anon_sym_RBRACE] = ACTIONS(3821), + [anon_sym_DASH] = ACTIONS(3821), + [anon_sym_DOLLAR] = ACTIONS(3821), + [anon_sym_LBRACK] = ACTIONS(3821), + [anon_sym_void] = ACTIONS(3823), + [anon_sym_anyopaque] = ACTIONS(3823), + [anon_sym_bool] = ACTIONS(3823), + [anon_sym_int] = ACTIONS(3823), + [anon_sym_uint] = ACTIONS(3823), + [anon_sym_float] = ACTIONS(3823), + [anon_sym_range] = ACTIONS(3823), + [anon_sym_i8] = ACTIONS(3823), + [anon_sym_i16] = ACTIONS(3823), + [anon_sym_i32] = ACTIONS(3823), + [anon_sym_i64] = ACTIONS(3823), + [anon_sym_u8] = ACTIONS(3823), + [anon_sym_u16] = ACTIONS(3823), + [anon_sym_u32] = ACTIONS(3823), + [anon_sym_u64] = ACTIONS(3823), + [anon_sym_isize] = ACTIONS(3823), + [anon_sym_usize] = ACTIONS(3823), + [anon_sym_f32] = ACTIONS(3823), + [anon_sym_f64] = ACTIONS(3823), + [anon_sym_c_char] = ACTIONS(3823), + [anon_sym_c_schar] = ACTIONS(3823), + [anon_sym_c_uchar] = ACTIONS(3823), + [anon_sym_c_short] = ACTIONS(3823), + [anon_sym_c_ushort] = ACTIONS(3823), + [anon_sym_c_int] = ACTIONS(3823), + [anon_sym_c_uint] = ACTIONS(3823), + [anon_sym_c_long] = ACTIONS(3823), + [anon_sym_c_ulong] = ACTIONS(3823), + [anon_sym_c_longlong] = ACTIONS(3823), + [anon_sym_c_ulonglong] = ACTIONS(3823), + [anon_sym_c_float] = ACTIONS(3823), + [anon_sym_c_double] = ACTIONS(3823), + [anon_sym_c_longdouble] = ACTIONS(3823), + [anon_sym_return] = ACTIONS(3823), + [anon_sym_yield] = ACTIONS(3823), + [anon_sym_break] = ACTIONS(3823), + [anon_sym_continue] = ACTIONS(3823), + [anon_sym_defer] = ACTIONS(3823), + [anon_sym_errdefer] = ACTIONS(3823), + [anon_sym_if] = ACTIONS(3823), + [anon_sym_else] = ACTIONS(3823), + [anon_sym_while] = ACTIONS(3823), + [anon_sym_expand] = ACTIONS(3823), + [anon_sym_for] = ACTIONS(3823), + [anon_sym_match] = ACTIONS(3823), + [anon_sym_AMP] = ACTIONS(3821), + [anon_sym_TILDE] = ACTIONS(3821), + [anon_sym_try] = ACTIONS(3823), + [anon_sym_DOT] = ACTIONS(3821), + [anon_sym_true] = ACTIONS(3823), + [anon_sym_false] = ACTIONS(3823), + [sym_none] = ACTIONS(3823), + [sym_undefined] = ACTIONS(3823), + [sym_sink] = ACTIONS(3823), + [sym_integer] = ACTIONS(3823), + [sym_float] = ACTIONS(3821), + [anon_sym_DQUOTE] = ACTIONS(3821), + [sym_multiline_string] = ACTIONS(3821), + [sym_character] = ACTIONS(3821), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3821), + }, + [STATE(1641)] = { + [ts_builtin_sym_end] = ACTIONS(3825), + [sym_identifier] = ACTIONS(3827), + [anon_sym_import] = ACTIONS(3827), + [anon_sym_test] = ACTIONS(3827), + [anon_sym_hide] = ACTIONS(3827), + [anon_sym_func] = ACTIONS(3827), + [anon_sym_BANG] = ACTIONS(3825), + [anon_sym_struct] = ACTIONS(3827), + [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_RPAREN] = ACTIONS(3825), + [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym_RBRACE] = ACTIONS(3825), + [anon_sym_DASH] = ACTIONS(3825), + [anon_sym_DOLLAR] = ACTIONS(3825), + [anon_sym_LBRACK] = ACTIONS(3825), + [anon_sym_void] = ACTIONS(3827), + [anon_sym_anyopaque] = ACTIONS(3827), + [anon_sym_bool] = ACTIONS(3827), + [anon_sym_int] = ACTIONS(3827), + [anon_sym_uint] = ACTIONS(3827), + [anon_sym_float] = ACTIONS(3827), + [anon_sym_range] = ACTIONS(3827), + [anon_sym_i8] = ACTIONS(3827), + [anon_sym_i16] = ACTIONS(3827), + [anon_sym_i32] = ACTIONS(3827), + [anon_sym_i64] = ACTIONS(3827), + [anon_sym_u8] = ACTIONS(3827), + [anon_sym_u16] = ACTIONS(3827), + [anon_sym_u32] = ACTIONS(3827), + [anon_sym_u64] = ACTIONS(3827), + [anon_sym_isize] = ACTIONS(3827), + [anon_sym_usize] = ACTIONS(3827), + [anon_sym_f32] = ACTIONS(3827), + [anon_sym_f64] = ACTIONS(3827), + [anon_sym_c_char] = ACTIONS(3827), + [anon_sym_c_schar] = ACTIONS(3827), + [anon_sym_c_uchar] = ACTIONS(3827), + [anon_sym_c_short] = ACTIONS(3827), + [anon_sym_c_ushort] = ACTIONS(3827), + [anon_sym_c_int] = ACTIONS(3827), + [anon_sym_c_uint] = ACTIONS(3827), + [anon_sym_c_long] = ACTIONS(3827), + [anon_sym_c_ulong] = ACTIONS(3827), + [anon_sym_c_longlong] = ACTIONS(3827), + [anon_sym_c_ulonglong] = ACTIONS(3827), + [anon_sym_c_float] = ACTIONS(3827), + [anon_sym_c_double] = ACTIONS(3827), + [anon_sym_c_longdouble] = ACTIONS(3827), + [anon_sym_return] = ACTIONS(3827), + [anon_sym_yield] = ACTIONS(3827), + [anon_sym_break] = ACTIONS(3827), + [anon_sym_continue] = ACTIONS(3827), + [anon_sym_defer] = ACTIONS(3827), + [anon_sym_errdefer] = ACTIONS(3827), + [anon_sym_if] = ACTIONS(3827), + [anon_sym_else] = ACTIONS(3827), + [anon_sym_while] = ACTIONS(3827), + [anon_sym_expand] = ACTIONS(3827), + [anon_sym_for] = ACTIONS(3827), + [anon_sym_match] = ACTIONS(3827), + [anon_sym_AMP] = ACTIONS(3825), + [anon_sym_TILDE] = ACTIONS(3825), + [anon_sym_try] = ACTIONS(3827), + [anon_sym_DOT] = ACTIONS(3825), + [anon_sym_true] = ACTIONS(3827), + [anon_sym_false] = ACTIONS(3827), + [sym_none] = ACTIONS(3827), + [sym_undefined] = ACTIONS(3827), + [sym_sink] = ACTIONS(3827), + [sym_integer] = ACTIONS(3827), + [sym_float] = ACTIONS(3825), + [anon_sym_DQUOTE] = ACTIONS(3825), + [sym_multiline_string] = ACTIONS(3825), + [sym_character] = ACTIONS(3825), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3825), + }, + [STATE(1642)] = { + [ts_builtin_sym_end] = ACTIONS(3829), + [sym_identifier] = ACTIONS(3831), + [anon_sym_import] = ACTIONS(3831), + [anon_sym_test] = ACTIONS(3831), + [anon_sym_hide] = ACTIONS(3831), + [anon_sym_func] = ACTIONS(3831), + [anon_sym_BANG] = ACTIONS(3829), + [anon_sym_struct] = ACTIONS(3831), + [anon_sym_LPAREN] = ACTIONS(3829), + [anon_sym_RPAREN] = ACTIONS(3829), + [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_DASH] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3829), + [anon_sym_LBRACK] = ACTIONS(3829), + [anon_sym_void] = ACTIONS(3831), + [anon_sym_anyopaque] = ACTIONS(3831), + [anon_sym_bool] = ACTIONS(3831), + [anon_sym_int] = ACTIONS(3831), + [anon_sym_uint] = ACTIONS(3831), + [anon_sym_float] = ACTIONS(3831), + [anon_sym_range] = ACTIONS(3831), + [anon_sym_i8] = ACTIONS(3831), + [anon_sym_i16] = ACTIONS(3831), + [anon_sym_i32] = ACTIONS(3831), + [anon_sym_i64] = ACTIONS(3831), + [anon_sym_u8] = ACTIONS(3831), + [anon_sym_u16] = ACTIONS(3831), + [anon_sym_u32] = ACTIONS(3831), + [anon_sym_u64] = ACTIONS(3831), + [anon_sym_isize] = ACTIONS(3831), + [anon_sym_usize] = ACTIONS(3831), + [anon_sym_f32] = ACTIONS(3831), + [anon_sym_f64] = ACTIONS(3831), + [anon_sym_c_char] = ACTIONS(3831), + [anon_sym_c_schar] = ACTIONS(3831), + [anon_sym_c_uchar] = ACTIONS(3831), + [anon_sym_c_short] = ACTIONS(3831), + [anon_sym_c_ushort] = ACTIONS(3831), + [anon_sym_c_int] = ACTIONS(3831), + [anon_sym_c_uint] = ACTIONS(3831), + [anon_sym_c_long] = ACTIONS(3831), + [anon_sym_c_ulong] = ACTIONS(3831), + [anon_sym_c_longlong] = ACTIONS(3831), + [anon_sym_c_ulonglong] = ACTIONS(3831), + [anon_sym_c_float] = ACTIONS(3831), + [anon_sym_c_double] = ACTIONS(3831), + [anon_sym_c_longdouble] = ACTIONS(3831), + [anon_sym_return] = ACTIONS(3831), + [anon_sym_yield] = ACTIONS(3831), + [anon_sym_break] = ACTIONS(3831), + [anon_sym_continue] = ACTIONS(3831), + [anon_sym_defer] = ACTIONS(3831), + [anon_sym_errdefer] = ACTIONS(3831), + [anon_sym_if] = ACTIONS(3831), + [anon_sym_else] = ACTIONS(3831), + [anon_sym_while] = ACTIONS(3831), + [anon_sym_expand] = ACTIONS(3831), + [anon_sym_for] = ACTIONS(3831), + [anon_sym_match] = ACTIONS(3831), + [anon_sym_AMP] = ACTIONS(3829), + [anon_sym_TILDE] = ACTIONS(3829), + [anon_sym_try] = ACTIONS(3831), + [anon_sym_DOT] = ACTIONS(3829), + [anon_sym_true] = ACTIONS(3831), + [anon_sym_false] = ACTIONS(3831), + [sym_none] = ACTIONS(3831), + [sym_undefined] = ACTIONS(3831), + [sym_sink] = ACTIONS(3831), + [sym_integer] = ACTIONS(3831), + [sym_float] = ACTIONS(3829), + [anon_sym_DQUOTE] = ACTIONS(3829), + [sym_multiline_string] = ACTIONS(3829), + [sym_character] = ACTIONS(3829), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3829), + }, + [STATE(1643)] = { + [ts_builtin_sym_end] = ACTIONS(3833), + [sym_identifier] = ACTIONS(3835), + [anon_sym_import] = ACTIONS(3835), + [anon_sym_test] = ACTIONS(3835), + [anon_sym_hide] = ACTIONS(3835), + [anon_sym_func] = ACTIONS(3835), + [anon_sym_BANG] = ACTIONS(3833), + [anon_sym_struct] = ACTIONS(3835), + [anon_sym_LPAREN] = ACTIONS(3833), + [anon_sym_RPAREN] = ACTIONS(3833), + [anon_sym_LBRACE] = ACTIONS(3833), + [anon_sym_RBRACE] = ACTIONS(3833), + [anon_sym_DASH] = ACTIONS(3833), + [anon_sym_DOLLAR] = ACTIONS(3833), + [anon_sym_LBRACK] = ACTIONS(3833), + [anon_sym_void] = ACTIONS(3835), + [anon_sym_anyopaque] = ACTIONS(3835), + [anon_sym_bool] = ACTIONS(3835), + [anon_sym_int] = ACTIONS(3835), + [anon_sym_uint] = ACTIONS(3835), + [anon_sym_float] = ACTIONS(3835), + [anon_sym_range] = ACTIONS(3835), + [anon_sym_i8] = ACTIONS(3835), + [anon_sym_i16] = ACTIONS(3835), + [anon_sym_i32] = ACTIONS(3835), + [anon_sym_i64] = ACTIONS(3835), + [anon_sym_u8] = ACTIONS(3835), + [anon_sym_u16] = ACTIONS(3835), + [anon_sym_u32] = ACTIONS(3835), + [anon_sym_u64] = ACTIONS(3835), + [anon_sym_isize] = ACTIONS(3835), + [anon_sym_usize] = ACTIONS(3835), + [anon_sym_f32] = ACTIONS(3835), + [anon_sym_f64] = ACTIONS(3835), + [anon_sym_c_char] = ACTIONS(3835), + [anon_sym_c_schar] = ACTIONS(3835), + [anon_sym_c_uchar] = ACTIONS(3835), + [anon_sym_c_short] = ACTIONS(3835), + [anon_sym_c_ushort] = ACTIONS(3835), + [anon_sym_c_int] = ACTIONS(3835), + [anon_sym_c_uint] = ACTIONS(3835), + [anon_sym_c_long] = ACTIONS(3835), + [anon_sym_c_ulong] = ACTIONS(3835), + [anon_sym_c_longlong] = ACTIONS(3835), + [anon_sym_c_ulonglong] = ACTIONS(3835), + [anon_sym_c_float] = ACTIONS(3835), + [anon_sym_c_double] = ACTIONS(3835), + [anon_sym_c_longdouble] = ACTIONS(3835), + [anon_sym_return] = ACTIONS(3835), + [anon_sym_yield] = ACTIONS(3835), + [anon_sym_break] = ACTIONS(3835), + [anon_sym_continue] = ACTIONS(3835), + [anon_sym_defer] = ACTIONS(3835), + [anon_sym_errdefer] = ACTIONS(3835), + [anon_sym_if] = ACTIONS(3835), + [anon_sym_else] = ACTIONS(3835), + [anon_sym_while] = ACTIONS(3835), + [anon_sym_expand] = ACTIONS(3835), + [anon_sym_for] = ACTIONS(3835), + [anon_sym_match] = ACTIONS(3835), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_TILDE] = ACTIONS(3833), + [anon_sym_try] = ACTIONS(3835), + [anon_sym_DOT] = ACTIONS(3833), + [anon_sym_true] = ACTIONS(3835), + [anon_sym_false] = ACTIONS(3835), + [sym_none] = ACTIONS(3835), + [sym_undefined] = ACTIONS(3835), + [sym_sink] = ACTIONS(3835), + [sym_integer] = ACTIONS(3835), + [sym_float] = ACTIONS(3833), + [anon_sym_DQUOTE] = ACTIONS(3833), + [sym_multiline_string] = ACTIONS(3833), + [sym_character] = ACTIONS(3833), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3833), + }, + [STATE(1644)] = { + [ts_builtin_sym_end] = ACTIONS(3837), + [sym_identifier] = ACTIONS(3839), + [anon_sym_import] = ACTIONS(3839), + [anon_sym_test] = ACTIONS(3839), + [anon_sym_hide] = ACTIONS(3839), + [anon_sym_func] = ACTIONS(3839), + [anon_sym_BANG] = ACTIONS(3837), + [anon_sym_struct] = ACTIONS(3839), + [anon_sym_LPAREN] = ACTIONS(3837), + [anon_sym_RPAREN] = ACTIONS(3837), + [anon_sym_LBRACE] = ACTIONS(3837), + [anon_sym_RBRACE] = ACTIONS(3837), + [anon_sym_DASH] = ACTIONS(3837), + [anon_sym_DOLLAR] = ACTIONS(3837), + [anon_sym_LBRACK] = ACTIONS(3837), + [anon_sym_void] = ACTIONS(3839), + [anon_sym_anyopaque] = ACTIONS(3839), + [anon_sym_bool] = ACTIONS(3839), + [anon_sym_int] = ACTIONS(3839), + [anon_sym_uint] = ACTIONS(3839), + [anon_sym_float] = ACTIONS(3839), + [anon_sym_range] = ACTIONS(3839), + [anon_sym_i8] = ACTIONS(3839), + [anon_sym_i16] = ACTIONS(3839), + [anon_sym_i32] = ACTIONS(3839), + [anon_sym_i64] = ACTIONS(3839), + [anon_sym_u8] = ACTIONS(3839), + [anon_sym_u16] = ACTIONS(3839), + [anon_sym_u32] = ACTIONS(3839), + [anon_sym_u64] = ACTIONS(3839), + [anon_sym_isize] = ACTIONS(3839), + [anon_sym_usize] = ACTIONS(3839), + [anon_sym_f32] = ACTIONS(3839), + [anon_sym_f64] = ACTIONS(3839), + [anon_sym_c_char] = ACTIONS(3839), + [anon_sym_c_schar] = ACTIONS(3839), + [anon_sym_c_uchar] = ACTIONS(3839), + [anon_sym_c_short] = ACTIONS(3839), + [anon_sym_c_ushort] = ACTIONS(3839), + [anon_sym_c_int] = ACTIONS(3839), + [anon_sym_c_uint] = ACTIONS(3839), + [anon_sym_c_long] = ACTIONS(3839), + [anon_sym_c_ulong] = ACTIONS(3839), + [anon_sym_c_longlong] = ACTIONS(3839), + [anon_sym_c_ulonglong] = ACTIONS(3839), + [anon_sym_c_float] = ACTIONS(3839), + [anon_sym_c_double] = ACTIONS(3839), + [anon_sym_c_longdouble] = ACTIONS(3839), + [anon_sym_return] = ACTIONS(3839), + [anon_sym_yield] = ACTIONS(3839), + [anon_sym_break] = ACTIONS(3839), + [anon_sym_continue] = ACTIONS(3839), + [anon_sym_defer] = ACTIONS(3839), + [anon_sym_errdefer] = ACTIONS(3839), + [anon_sym_if] = ACTIONS(3839), + [anon_sym_else] = ACTIONS(3839), + [anon_sym_while] = ACTIONS(3839), + [anon_sym_expand] = ACTIONS(3839), + [anon_sym_for] = ACTIONS(3839), + [anon_sym_match] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(3837), + [anon_sym_TILDE] = ACTIONS(3837), + [anon_sym_try] = ACTIONS(3839), + [anon_sym_DOT] = ACTIONS(3837), + [anon_sym_true] = ACTIONS(3839), + [anon_sym_false] = ACTIONS(3839), + [sym_none] = ACTIONS(3839), + [sym_undefined] = ACTIONS(3839), + [sym_sink] = ACTIONS(3839), + [sym_integer] = ACTIONS(3839), + [sym_float] = ACTIONS(3837), + [anon_sym_DQUOTE] = ACTIONS(3837), + [sym_multiline_string] = ACTIONS(3837), + [sym_character] = ACTIONS(3837), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3837), + }, + [STATE(1645)] = { + [ts_builtin_sym_end] = ACTIONS(3841), + [sym_identifier] = ACTIONS(3843), + [anon_sym_import] = ACTIONS(3843), + [anon_sym_test] = ACTIONS(3843), + [anon_sym_hide] = ACTIONS(3843), + [anon_sym_func] = ACTIONS(3843), + [anon_sym_BANG] = ACTIONS(3841), + [anon_sym_struct] = ACTIONS(3843), + [anon_sym_LPAREN] = ACTIONS(3841), + [anon_sym_RPAREN] = ACTIONS(3841), + [anon_sym_LBRACE] = ACTIONS(3841), + [anon_sym_RBRACE] = ACTIONS(3841), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_DOLLAR] = ACTIONS(3841), + [anon_sym_LBRACK] = ACTIONS(3841), + [anon_sym_void] = ACTIONS(3843), + [anon_sym_anyopaque] = ACTIONS(3843), + [anon_sym_bool] = ACTIONS(3843), + [anon_sym_int] = ACTIONS(3843), + [anon_sym_uint] = ACTIONS(3843), + [anon_sym_float] = ACTIONS(3843), + [anon_sym_range] = ACTIONS(3843), + [anon_sym_i8] = ACTIONS(3843), + [anon_sym_i16] = ACTIONS(3843), + [anon_sym_i32] = ACTIONS(3843), + [anon_sym_i64] = ACTIONS(3843), + [anon_sym_u8] = ACTIONS(3843), + [anon_sym_u16] = ACTIONS(3843), + [anon_sym_u32] = ACTIONS(3843), + [anon_sym_u64] = ACTIONS(3843), + [anon_sym_isize] = ACTIONS(3843), + [anon_sym_usize] = ACTIONS(3843), + [anon_sym_f32] = ACTIONS(3843), + [anon_sym_f64] = ACTIONS(3843), + [anon_sym_c_char] = ACTIONS(3843), + [anon_sym_c_schar] = ACTIONS(3843), + [anon_sym_c_uchar] = ACTIONS(3843), + [anon_sym_c_short] = ACTIONS(3843), + [anon_sym_c_ushort] = ACTIONS(3843), + [anon_sym_c_int] = ACTIONS(3843), + [anon_sym_c_uint] = ACTIONS(3843), + [anon_sym_c_long] = ACTIONS(3843), + [anon_sym_c_ulong] = ACTIONS(3843), + [anon_sym_c_longlong] = ACTIONS(3843), + [anon_sym_c_ulonglong] = ACTIONS(3843), + [anon_sym_c_float] = ACTIONS(3843), + [anon_sym_c_double] = ACTIONS(3843), + [anon_sym_c_longdouble] = ACTIONS(3843), + [anon_sym_return] = ACTIONS(3843), + [anon_sym_yield] = ACTIONS(3843), + [anon_sym_break] = ACTIONS(3843), + [anon_sym_continue] = ACTIONS(3843), + [anon_sym_defer] = ACTIONS(3843), + [anon_sym_errdefer] = ACTIONS(3843), + [anon_sym_if] = ACTIONS(3843), + [anon_sym_else] = ACTIONS(3843), + [anon_sym_while] = ACTIONS(3843), + [anon_sym_expand] = ACTIONS(3843), + [anon_sym_for] = ACTIONS(3843), + [anon_sym_match] = ACTIONS(3843), + [anon_sym_AMP] = ACTIONS(3841), + [anon_sym_TILDE] = ACTIONS(3841), + [anon_sym_try] = ACTIONS(3843), + [anon_sym_DOT] = ACTIONS(3841), + [anon_sym_true] = ACTIONS(3843), + [anon_sym_false] = ACTIONS(3843), + [sym_none] = ACTIONS(3843), + [sym_undefined] = ACTIONS(3843), + [sym_sink] = ACTIONS(3843), + [sym_integer] = ACTIONS(3843), + [sym_float] = ACTIONS(3841), + [anon_sym_DQUOTE] = ACTIONS(3841), + [sym_multiline_string] = ACTIONS(3841), + [sym_character] = ACTIONS(3841), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3841), + }, + [STATE(1646)] = { + [ts_builtin_sym_end] = ACTIONS(3845), + [sym_identifier] = ACTIONS(3847), + [anon_sym_import] = ACTIONS(3847), + [anon_sym_test] = ACTIONS(3847), + [anon_sym_hide] = ACTIONS(3847), + [anon_sym_func] = ACTIONS(3847), + [anon_sym_BANG] = ACTIONS(3845), + [anon_sym_struct] = ACTIONS(3847), + [anon_sym_LPAREN] = ACTIONS(3845), + [anon_sym_RPAREN] = ACTIONS(3845), + [anon_sym_LBRACE] = ACTIONS(3845), + [anon_sym_RBRACE] = ACTIONS(3845), + [anon_sym_DASH] = ACTIONS(3845), + [anon_sym_DOLLAR] = ACTIONS(3845), + [anon_sym_LBRACK] = ACTIONS(3845), + [anon_sym_void] = ACTIONS(3847), + [anon_sym_anyopaque] = ACTIONS(3847), + [anon_sym_bool] = ACTIONS(3847), + [anon_sym_int] = ACTIONS(3847), + [anon_sym_uint] = ACTIONS(3847), + [anon_sym_float] = ACTIONS(3847), + [anon_sym_range] = ACTIONS(3847), + [anon_sym_i8] = ACTIONS(3847), + [anon_sym_i16] = ACTIONS(3847), + [anon_sym_i32] = ACTIONS(3847), + [anon_sym_i64] = ACTIONS(3847), + [anon_sym_u8] = ACTIONS(3847), + [anon_sym_u16] = ACTIONS(3847), + [anon_sym_u32] = ACTIONS(3847), + [anon_sym_u64] = ACTIONS(3847), + [anon_sym_isize] = ACTIONS(3847), + [anon_sym_usize] = ACTIONS(3847), + [anon_sym_f32] = ACTIONS(3847), + [anon_sym_f64] = ACTIONS(3847), + [anon_sym_c_char] = ACTIONS(3847), + [anon_sym_c_schar] = ACTIONS(3847), + [anon_sym_c_uchar] = ACTIONS(3847), + [anon_sym_c_short] = ACTIONS(3847), + [anon_sym_c_ushort] = ACTIONS(3847), + [anon_sym_c_int] = ACTIONS(3847), + [anon_sym_c_uint] = ACTIONS(3847), + [anon_sym_c_long] = ACTIONS(3847), + [anon_sym_c_ulong] = ACTIONS(3847), + [anon_sym_c_longlong] = ACTIONS(3847), + [anon_sym_c_ulonglong] = ACTIONS(3847), + [anon_sym_c_float] = ACTIONS(3847), + [anon_sym_c_double] = ACTIONS(3847), + [anon_sym_c_longdouble] = ACTIONS(3847), + [anon_sym_return] = ACTIONS(3847), + [anon_sym_yield] = ACTIONS(3847), + [anon_sym_break] = ACTIONS(3847), + [anon_sym_continue] = ACTIONS(3847), + [anon_sym_defer] = ACTIONS(3847), + [anon_sym_errdefer] = ACTIONS(3847), + [anon_sym_if] = ACTIONS(3847), + [anon_sym_else] = ACTIONS(3847), + [anon_sym_while] = ACTIONS(3847), + [anon_sym_expand] = ACTIONS(3847), + [anon_sym_for] = ACTIONS(3847), + [anon_sym_match] = ACTIONS(3847), + [anon_sym_AMP] = ACTIONS(3845), + [anon_sym_TILDE] = ACTIONS(3845), + [anon_sym_try] = ACTIONS(3847), + [anon_sym_DOT] = ACTIONS(3845), + [anon_sym_true] = ACTIONS(3847), + [anon_sym_false] = ACTIONS(3847), + [sym_none] = ACTIONS(3847), + [sym_undefined] = ACTIONS(3847), + [sym_sink] = ACTIONS(3847), + [sym_integer] = ACTIONS(3847), + [sym_float] = ACTIONS(3845), + [anon_sym_DQUOTE] = ACTIONS(3845), + [sym_multiline_string] = ACTIONS(3845), + [sym_character] = ACTIONS(3845), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3845), + }, + [STATE(1647)] = { + [ts_builtin_sym_end] = ACTIONS(3849), + [sym_identifier] = ACTIONS(3851), + [anon_sym_import] = ACTIONS(3851), + [anon_sym_test] = ACTIONS(3851), + [anon_sym_hide] = ACTIONS(3851), + [anon_sym_func] = ACTIONS(3851), + [anon_sym_BANG] = ACTIONS(3849), + [anon_sym_struct] = ACTIONS(3851), + [anon_sym_LPAREN] = ACTIONS(3849), + [anon_sym_RPAREN] = ACTIONS(3849), + [anon_sym_LBRACE] = ACTIONS(3849), + [anon_sym_RBRACE] = ACTIONS(3849), + [anon_sym_DASH] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3849), + [anon_sym_LBRACK] = ACTIONS(3849), + [anon_sym_void] = ACTIONS(3851), + [anon_sym_anyopaque] = ACTIONS(3851), + [anon_sym_bool] = ACTIONS(3851), + [anon_sym_int] = ACTIONS(3851), + [anon_sym_uint] = ACTIONS(3851), + [anon_sym_float] = ACTIONS(3851), + [anon_sym_range] = ACTIONS(3851), + [anon_sym_i8] = ACTIONS(3851), + [anon_sym_i16] = ACTIONS(3851), + [anon_sym_i32] = ACTIONS(3851), + [anon_sym_i64] = ACTIONS(3851), + [anon_sym_u8] = ACTIONS(3851), + [anon_sym_u16] = ACTIONS(3851), + [anon_sym_u32] = ACTIONS(3851), + [anon_sym_u64] = ACTIONS(3851), + [anon_sym_isize] = ACTIONS(3851), + [anon_sym_usize] = ACTIONS(3851), + [anon_sym_f32] = ACTIONS(3851), + [anon_sym_f64] = ACTIONS(3851), + [anon_sym_c_char] = ACTIONS(3851), + [anon_sym_c_schar] = ACTIONS(3851), + [anon_sym_c_uchar] = ACTIONS(3851), + [anon_sym_c_short] = ACTIONS(3851), + [anon_sym_c_ushort] = ACTIONS(3851), + [anon_sym_c_int] = ACTIONS(3851), + [anon_sym_c_uint] = ACTIONS(3851), + [anon_sym_c_long] = ACTIONS(3851), + [anon_sym_c_ulong] = ACTIONS(3851), + [anon_sym_c_longlong] = ACTIONS(3851), + [anon_sym_c_ulonglong] = ACTIONS(3851), + [anon_sym_c_float] = ACTIONS(3851), + [anon_sym_c_double] = ACTIONS(3851), + [anon_sym_c_longdouble] = ACTIONS(3851), + [anon_sym_return] = ACTIONS(3851), + [anon_sym_yield] = ACTIONS(3851), + [anon_sym_break] = ACTIONS(3851), + [anon_sym_continue] = ACTIONS(3851), + [anon_sym_defer] = ACTIONS(3851), + [anon_sym_errdefer] = ACTIONS(3851), + [anon_sym_if] = ACTIONS(3851), + [anon_sym_else] = ACTIONS(3851), + [anon_sym_while] = ACTIONS(3851), + [anon_sym_expand] = ACTIONS(3851), + [anon_sym_for] = ACTIONS(3851), + [anon_sym_match] = ACTIONS(3851), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_TILDE] = ACTIONS(3849), + [anon_sym_try] = ACTIONS(3851), + [anon_sym_DOT] = ACTIONS(3849), + [anon_sym_true] = ACTIONS(3851), + [anon_sym_false] = ACTIONS(3851), + [sym_none] = ACTIONS(3851), + [sym_undefined] = ACTIONS(3851), + [sym_sink] = ACTIONS(3851), + [sym_integer] = ACTIONS(3851), + [sym_float] = ACTIONS(3849), + [anon_sym_DQUOTE] = ACTIONS(3849), + [sym_multiline_string] = ACTIONS(3849), + [sym_character] = ACTIONS(3849), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3849), + }, + [STATE(1648)] = { + [ts_builtin_sym_end] = ACTIONS(3853), + [sym_identifier] = ACTIONS(3855), + [anon_sym_import] = ACTIONS(3855), + [anon_sym_test] = ACTIONS(3855), + [anon_sym_hide] = ACTIONS(3855), + [anon_sym_func] = ACTIONS(3855), + [anon_sym_BANG] = ACTIONS(3853), + [anon_sym_struct] = ACTIONS(3855), + [anon_sym_LPAREN] = ACTIONS(3853), + [anon_sym_RPAREN] = ACTIONS(3853), + [anon_sym_LBRACE] = ACTIONS(3853), + [anon_sym_RBRACE] = ACTIONS(3853), + [anon_sym_DASH] = ACTIONS(3853), + [anon_sym_DOLLAR] = ACTIONS(3853), + [anon_sym_LBRACK] = ACTIONS(3853), + [anon_sym_void] = ACTIONS(3855), + [anon_sym_anyopaque] = ACTIONS(3855), + [anon_sym_bool] = ACTIONS(3855), + [anon_sym_int] = ACTIONS(3855), + [anon_sym_uint] = ACTIONS(3855), + [anon_sym_float] = ACTIONS(3855), + [anon_sym_range] = ACTIONS(3855), + [anon_sym_i8] = ACTIONS(3855), + [anon_sym_i16] = ACTIONS(3855), + [anon_sym_i32] = ACTIONS(3855), + [anon_sym_i64] = ACTIONS(3855), + [anon_sym_u8] = ACTIONS(3855), + [anon_sym_u16] = ACTIONS(3855), + [anon_sym_u32] = ACTIONS(3855), + [anon_sym_u64] = ACTIONS(3855), + [anon_sym_isize] = ACTIONS(3855), + [anon_sym_usize] = ACTIONS(3855), + [anon_sym_f32] = ACTIONS(3855), + [anon_sym_f64] = ACTIONS(3855), + [anon_sym_c_char] = ACTIONS(3855), + [anon_sym_c_schar] = ACTIONS(3855), + [anon_sym_c_uchar] = ACTIONS(3855), + [anon_sym_c_short] = ACTIONS(3855), + [anon_sym_c_ushort] = ACTIONS(3855), + [anon_sym_c_int] = ACTIONS(3855), + [anon_sym_c_uint] = ACTIONS(3855), + [anon_sym_c_long] = ACTIONS(3855), + [anon_sym_c_ulong] = ACTIONS(3855), + [anon_sym_c_longlong] = ACTIONS(3855), + [anon_sym_c_ulonglong] = ACTIONS(3855), + [anon_sym_c_float] = ACTIONS(3855), + [anon_sym_c_double] = ACTIONS(3855), + [anon_sym_c_longdouble] = ACTIONS(3855), + [anon_sym_return] = ACTIONS(3855), + [anon_sym_yield] = ACTIONS(3855), + [anon_sym_break] = ACTIONS(3855), + [anon_sym_continue] = ACTIONS(3855), + [anon_sym_defer] = ACTIONS(3855), + [anon_sym_errdefer] = ACTIONS(3855), + [anon_sym_if] = ACTIONS(3855), + [anon_sym_else] = ACTIONS(3855), + [anon_sym_while] = ACTIONS(3855), + [anon_sym_expand] = ACTIONS(3855), + [anon_sym_for] = ACTIONS(3855), + [anon_sym_match] = ACTIONS(3855), + [anon_sym_AMP] = ACTIONS(3853), + [anon_sym_TILDE] = ACTIONS(3853), + [anon_sym_try] = ACTIONS(3855), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_true] = ACTIONS(3855), + [anon_sym_false] = ACTIONS(3855), + [sym_none] = ACTIONS(3855), + [sym_undefined] = ACTIONS(3855), + [sym_sink] = ACTIONS(3855), + [sym_integer] = ACTIONS(3855), + [sym_float] = ACTIONS(3853), + [anon_sym_DQUOTE] = ACTIONS(3853), + [sym_multiline_string] = ACTIONS(3853), + [sym_character] = ACTIONS(3853), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3853), + }, + [STATE(1649)] = { + [ts_builtin_sym_end] = ACTIONS(3857), + [sym_identifier] = ACTIONS(3859), + [anon_sym_import] = ACTIONS(3859), + [anon_sym_test] = ACTIONS(3859), + [anon_sym_hide] = ACTIONS(3859), + [anon_sym_func] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_RPAREN] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym_RBRACE] = ACTIONS(3857), + [anon_sym_DASH] = ACTIONS(3857), + [anon_sym_DOLLAR] = ACTIONS(3857), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_void] = ACTIONS(3859), + [anon_sym_anyopaque] = ACTIONS(3859), + [anon_sym_bool] = ACTIONS(3859), + [anon_sym_int] = ACTIONS(3859), + [anon_sym_uint] = ACTIONS(3859), + [anon_sym_float] = ACTIONS(3859), + [anon_sym_range] = ACTIONS(3859), + [anon_sym_i8] = ACTIONS(3859), + [anon_sym_i16] = ACTIONS(3859), + [anon_sym_i32] = ACTIONS(3859), + [anon_sym_i64] = ACTIONS(3859), + [anon_sym_u8] = ACTIONS(3859), + [anon_sym_u16] = ACTIONS(3859), + [anon_sym_u32] = ACTIONS(3859), + [anon_sym_u64] = ACTIONS(3859), + [anon_sym_isize] = ACTIONS(3859), + [anon_sym_usize] = ACTIONS(3859), + [anon_sym_f32] = ACTIONS(3859), + [anon_sym_f64] = ACTIONS(3859), + [anon_sym_c_char] = ACTIONS(3859), + [anon_sym_c_schar] = ACTIONS(3859), + [anon_sym_c_uchar] = ACTIONS(3859), + [anon_sym_c_short] = ACTIONS(3859), + [anon_sym_c_ushort] = ACTIONS(3859), + [anon_sym_c_int] = ACTIONS(3859), + [anon_sym_c_uint] = ACTIONS(3859), + [anon_sym_c_long] = ACTIONS(3859), + [anon_sym_c_ulong] = ACTIONS(3859), + [anon_sym_c_longlong] = ACTIONS(3859), + [anon_sym_c_ulonglong] = ACTIONS(3859), + [anon_sym_c_float] = ACTIONS(3859), + [anon_sym_c_double] = ACTIONS(3859), + [anon_sym_c_longdouble] = ACTIONS(3859), + [anon_sym_return] = ACTIONS(3859), + [anon_sym_yield] = ACTIONS(3859), + [anon_sym_break] = ACTIONS(3859), + [anon_sym_continue] = ACTIONS(3859), + [anon_sym_defer] = ACTIONS(3859), + [anon_sym_errdefer] = ACTIONS(3859), + [anon_sym_if] = ACTIONS(3859), + [anon_sym_else] = ACTIONS(3859), + [anon_sym_while] = ACTIONS(3859), + [anon_sym_expand] = ACTIONS(3859), + [anon_sym_for] = ACTIONS(3859), + [anon_sym_match] = ACTIONS(3859), + [anon_sym_AMP] = ACTIONS(3857), + [anon_sym_TILDE] = ACTIONS(3857), + [anon_sym_try] = ACTIONS(3859), + [anon_sym_DOT] = ACTIONS(3857), + [anon_sym_true] = ACTIONS(3859), + [anon_sym_false] = ACTIONS(3859), + [sym_none] = ACTIONS(3859), + [sym_undefined] = ACTIONS(3859), + [sym_sink] = ACTIONS(3859), + [sym_integer] = ACTIONS(3859), + [sym_float] = ACTIONS(3857), + [anon_sym_DQUOTE] = ACTIONS(3857), + [sym_multiline_string] = ACTIONS(3857), + [sym_character] = ACTIONS(3857), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3857), + }, + [STATE(1650)] = { + [ts_builtin_sym_end] = ACTIONS(3861), + [sym_identifier] = ACTIONS(3863), + [anon_sym_import] = ACTIONS(3863), + [anon_sym_test] = ACTIONS(3863), + [anon_sym_hide] = ACTIONS(3863), + [anon_sym_func] = ACTIONS(3863), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_struct] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3861), + [anon_sym_RPAREN] = ACTIONS(3861), + [anon_sym_LBRACE] = ACTIONS(3861), + [anon_sym_RBRACE] = ACTIONS(3861), + [anon_sym_DASH] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3861), + [anon_sym_LBRACK] = ACTIONS(3861), + [anon_sym_void] = ACTIONS(3863), + [anon_sym_anyopaque] = ACTIONS(3863), + [anon_sym_bool] = ACTIONS(3863), + [anon_sym_int] = ACTIONS(3863), + [anon_sym_uint] = ACTIONS(3863), + [anon_sym_float] = ACTIONS(3863), + [anon_sym_range] = ACTIONS(3863), + [anon_sym_i8] = ACTIONS(3863), + [anon_sym_i16] = ACTIONS(3863), + [anon_sym_i32] = ACTIONS(3863), + [anon_sym_i64] = ACTIONS(3863), + [anon_sym_u8] = ACTIONS(3863), + [anon_sym_u16] = ACTIONS(3863), + [anon_sym_u32] = ACTIONS(3863), + [anon_sym_u64] = ACTIONS(3863), + [anon_sym_isize] = ACTIONS(3863), + [anon_sym_usize] = ACTIONS(3863), + [anon_sym_f32] = ACTIONS(3863), + [anon_sym_f64] = ACTIONS(3863), + [anon_sym_c_char] = ACTIONS(3863), + [anon_sym_c_schar] = ACTIONS(3863), + [anon_sym_c_uchar] = ACTIONS(3863), + [anon_sym_c_short] = ACTIONS(3863), + [anon_sym_c_ushort] = ACTIONS(3863), + [anon_sym_c_int] = ACTIONS(3863), + [anon_sym_c_uint] = ACTIONS(3863), + [anon_sym_c_long] = ACTIONS(3863), + [anon_sym_c_ulong] = ACTIONS(3863), + [anon_sym_c_longlong] = ACTIONS(3863), + [anon_sym_c_ulonglong] = ACTIONS(3863), + [anon_sym_c_float] = ACTIONS(3863), + [anon_sym_c_double] = ACTIONS(3863), + [anon_sym_c_longdouble] = ACTIONS(3863), + [anon_sym_return] = ACTIONS(3863), + [anon_sym_yield] = ACTIONS(3863), + [anon_sym_break] = ACTIONS(3863), + [anon_sym_continue] = ACTIONS(3863), + [anon_sym_defer] = ACTIONS(3863), + [anon_sym_errdefer] = ACTIONS(3863), + [anon_sym_if] = ACTIONS(3863), + [anon_sym_else] = ACTIONS(3863), + [anon_sym_while] = ACTIONS(3863), + [anon_sym_expand] = ACTIONS(3863), + [anon_sym_for] = ACTIONS(3863), + [anon_sym_match] = ACTIONS(3863), + [anon_sym_AMP] = ACTIONS(3861), + [anon_sym_TILDE] = ACTIONS(3861), + [anon_sym_try] = ACTIONS(3863), + [anon_sym_DOT] = ACTIONS(3861), + [anon_sym_true] = ACTIONS(3863), + [anon_sym_false] = ACTIONS(3863), + [sym_none] = ACTIONS(3863), + [sym_undefined] = ACTIONS(3863), + [sym_sink] = ACTIONS(3863), + [sym_integer] = ACTIONS(3863), + [sym_float] = ACTIONS(3861), + [anon_sym_DQUOTE] = ACTIONS(3861), + [sym_multiline_string] = ACTIONS(3861), + [sym_character] = ACTIONS(3861), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3861), + }, + [STATE(1651)] = { + [ts_builtin_sym_end] = ACTIONS(3865), + [sym_identifier] = ACTIONS(3867), + [anon_sym_import] = ACTIONS(3867), + [anon_sym_test] = ACTIONS(3867), + [anon_sym_hide] = ACTIONS(3867), + [anon_sym_func] = ACTIONS(3867), + [anon_sym_BANG] = ACTIONS(3865), + [anon_sym_struct] = ACTIONS(3867), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_RPAREN] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3865), + [anon_sym_RBRACE] = ACTIONS(3865), + [anon_sym_DASH] = ACTIONS(3865), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACK] = ACTIONS(3865), + [anon_sym_void] = ACTIONS(3867), + [anon_sym_anyopaque] = ACTIONS(3867), + [anon_sym_bool] = ACTIONS(3867), + [anon_sym_int] = ACTIONS(3867), + [anon_sym_uint] = ACTIONS(3867), + [anon_sym_float] = ACTIONS(3867), + [anon_sym_range] = ACTIONS(3867), + [anon_sym_i8] = ACTIONS(3867), + [anon_sym_i16] = ACTIONS(3867), + [anon_sym_i32] = ACTIONS(3867), + [anon_sym_i64] = ACTIONS(3867), + [anon_sym_u8] = ACTIONS(3867), + [anon_sym_u16] = ACTIONS(3867), + [anon_sym_u32] = ACTIONS(3867), + [anon_sym_u64] = ACTIONS(3867), + [anon_sym_isize] = ACTIONS(3867), + [anon_sym_usize] = ACTIONS(3867), + [anon_sym_f32] = ACTIONS(3867), + [anon_sym_f64] = ACTIONS(3867), + [anon_sym_c_char] = ACTIONS(3867), + [anon_sym_c_schar] = ACTIONS(3867), + [anon_sym_c_uchar] = ACTIONS(3867), + [anon_sym_c_short] = ACTIONS(3867), + [anon_sym_c_ushort] = ACTIONS(3867), + [anon_sym_c_int] = ACTIONS(3867), + [anon_sym_c_uint] = ACTIONS(3867), + [anon_sym_c_long] = ACTIONS(3867), + [anon_sym_c_ulong] = ACTIONS(3867), + [anon_sym_c_longlong] = ACTIONS(3867), + [anon_sym_c_ulonglong] = ACTIONS(3867), + [anon_sym_c_float] = ACTIONS(3867), + [anon_sym_c_double] = ACTIONS(3867), + [anon_sym_c_longdouble] = ACTIONS(3867), + [anon_sym_return] = ACTIONS(3867), + [anon_sym_yield] = ACTIONS(3867), + [anon_sym_break] = ACTIONS(3867), + [anon_sym_continue] = ACTIONS(3867), + [anon_sym_defer] = ACTIONS(3867), + [anon_sym_errdefer] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(3867), + [anon_sym_else] = ACTIONS(3867), + [anon_sym_while] = ACTIONS(3867), + [anon_sym_expand] = ACTIONS(3867), + [anon_sym_for] = ACTIONS(3867), + [anon_sym_match] = ACTIONS(3867), + [anon_sym_AMP] = ACTIONS(3865), + [anon_sym_TILDE] = ACTIONS(3865), + [anon_sym_try] = ACTIONS(3867), + [anon_sym_DOT] = ACTIONS(3865), + [anon_sym_true] = ACTIONS(3867), + [anon_sym_false] = ACTIONS(3867), + [sym_none] = ACTIONS(3867), + [sym_undefined] = ACTIONS(3867), + [sym_sink] = ACTIONS(3867), + [sym_integer] = ACTIONS(3867), + [sym_float] = ACTIONS(3865), + [anon_sym_DQUOTE] = ACTIONS(3865), + [sym_multiline_string] = ACTIONS(3865), + [sym_character] = ACTIONS(3865), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3865), + }, + [STATE(1652)] = { + [ts_builtin_sym_end] = ACTIONS(3869), + [sym_identifier] = ACTIONS(3871), + [anon_sym_import] = ACTIONS(3871), + [anon_sym_test] = ACTIONS(3871), + [anon_sym_hide] = ACTIONS(3871), + [anon_sym_func] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3871), + [anon_sym_LPAREN] = ACTIONS(3869), + [anon_sym_RPAREN] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3869), + [anon_sym_RBRACE] = ACTIONS(3869), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_DOLLAR] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_void] = ACTIONS(3871), + [anon_sym_anyopaque] = ACTIONS(3871), + [anon_sym_bool] = ACTIONS(3871), + [anon_sym_int] = ACTIONS(3871), + [anon_sym_uint] = ACTIONS(3871), + [anon_sym_float] = ACTIONS(3871), + [anon_sym_range] = ACTIONS(3871), + [anon_sym_i8] = ACTIONS(3871), + [anon_sym_i16] = ACTIONS(3871), + [anon_sym_i32] = ACTIONS(3871), + [anon_sym_i64] = ACTIONS(3871), + [anon_sym_u8] = ACTIONS(3871), + [anon_sym_u16] = ACTIONS(3871), + [anon_sym_u32] = ACTIONS(3871), + [anon_sym_u64] = ACTIONS(3871), + [anon_sym_isize] = ACTIONS(3871), + [anon_sym_usize] = ACTIONS(3871), + [anon_sym_f32] = ACTIONS(3871), + [anon_sym_f64] = ACTIONS(3871), + [anon_sym_c_char] = ACTIONS(3871), + [anon_sym_c_schar] = ACTIONS(3871), + [anon_sym_c_uchar] = ACTIONS(3871), + [anon_sym_c_short] = ACTIONS(3871), + [anon_sym_c_ushort] = ACTIONS(3871), + [anon_sym_c_int] = ACTIONS(3871), + [anon_sym_c_uint] = ACTIONS(3871), + [anon_sym_c_long] = ACTIONS(3871), + [anon_sym_c_ulong] = ACTIONS(3871), + [anon_sym_c_longlong] = ACTIONS(3871), + [anon_sym_c_ulonglong] = ACTIONS(3871), + [anon_sym_c_float] = ACTIONS(3871), + [anon_sym_c_double] = ACTIONS(3871), + [anon_sym_c_longdouble] = ACTIONS(3871), + [anon_sym_return] = ACTIONS(3871), + [anon_sym_yield] = ACTIONS(3871), + [anon_sym_break] = ACTIONS(3871), + [anon_sym_continue] = ACTIONS(3871), + [anon_sym_defer] = ACTIONS(3871), + [anon_sym_errdefer] = ACTIONS(3871), + [anon_sym_if] = ACTIONS(3871), + [anon_sym_else] = ACTIONS(3871), + [anon_sym_while] = ACTIONS(3871), + [anon_sym_expand] = ACTIONS(3871), + [anon_sym_for] = ACTIONS(3871), + [anon_sym_match] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_TILDE] = ACTIONS(3869), + [anon_sym_try] = ACTIONS(3871), + [anon_sym_DOT] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(3871), + [anon_sym_false] = ACTIONS(3871), + [sym_none] = ACTIONS(3871), + [sym_undefined] = ACTIONS(3871), + [sym_sink] = ACTIONS(3871), + [sym_integer] = ACTIONS(3871), + [sym_float] = ACTIONS(3869), + [anon_sym_DQUOTE] = ACTIONS(3869), + [sym_multiline_string] = ACTIONS(3869), + [sym_character] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3869), + }, + [STATE(1653)] = { + [ts_builtin_sym_end] = ACTIONS(3873), + [sym_identifier] = ACTIONS(3875), + [anon_sym_import] = ACTIONS(3875), + [anon_sym_test] = ACTIONS(3875), + [anon_sym_hide] = ACTIONS(3875), + [anon_sym_func] = ACTIONS(3875), + [anon_sym_BANG] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3875), + [anon_sym_LPAREN] = ACTIONS(3873), + [anon_sym_RPAREN] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3873), + [anon_sym_RBRACE] = ACTIONS(3873), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_DOLLAR] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_void] = ACTIONS(3875), + [anon_sym_anyopaque] = ACTIONS(3875), + [anon_sym_bool] = ACTIONS(3875), + [anon_sym_int] = ACTIONS(3875), + [anon_sym_uint] = ACTIONS(3875), + [anon_sym_float] = ACTIONS(3875), + [anon_sym_range] = ACTIONS(3875), + [anon_sym_i8] = ACTIONS(3875), + [anon_sym_i16] = ACTIONS(3875), + [anon_sym_i32] = ACTIONS(3875), + [anon_sym_i64] = ACTIONS(3875), + [anon_sym_u8] = ACTIONS(3875), + [anon_sym_u16] = ACTIONS(3875), + [anon_sym_u32] = ACTIONS(3875), + [anon_sym_u64] = ACTIONS(3875), + [anon_sym_isize] = ACTIONS(3875), + [anon_sym_usize] = ACTIONS(3875), + [anon_sym_f32] = ACTIONS(3875), + [anon_sym_f64] = ACTIONS(3875), + [anon_sym_c_char] = ACTIONS(3875), + [anon_sym_c_schar] = ACTIONS(3875), + [anon_sym_c_uchar] = ACTIONS(3875), + [anon_sym_c_short] = ACTIONS(3875), + [anon_sym_c_ushort] = ACTIONS(3875), + [anon_sym_c_int] = ACTIONS(3875), + [anon_sym_c_uint] = ACTIONS(3875), + [anon_sym_c_long] = ACTIONS(3875), + [anon_sym_c_ulong] = ACTIONS(3875), + [anon_sym_c_longlong] = ACTIONS(3875), + [anon_sym_c_ulonglong] = ACTIONS(3875), + [anon_sym_c_float] = ACTIONS(3875), + [anon_sym_c_double] = ACTIONS(3875), + [anon_sym_c_longdouble] = ACTIONS(3875), + [anon_sym_return] = ACTIONS(3875), + [anon_sym_yield] = ACTIONS(3875), + [anon_sym_break] = ACTIONS(3875), + [anon_sym_continue] = ACTIONS(3875), + [anon_sym_defer] = ACTIONS(3875), + [anon_sym_errdefer] = ACTIONS(3875), + [anon_sym_if] = ACTIONS(3875), + [anon_sym_else] = ACTIONS(3875), + [anon_sym_while] = ACTIONS(3875), + [anon_sym_expand] = ACTIONS(3875), + [anon_sym_for] = ACTIONS(3875), + [anon_sym_match] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3873), + [anon_sym_try] = ACTIONS(3875), + [anon_sym_DOT] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(3875), + [anon_sym_false] = ACTIONS(3875), + [sym_none] = ACTIONS(3875), + [sym_undefined] = ACTIONS(3875), + [sym_sink] = ACTIONS(3875), + [sym_integer] = ACTIONS(3875), + [sym_float] = ACTIONS(3873), + [anon_sym_DQUOTE] = ACTIONS(3873), + [sym_multiline_string] = ACTIONS(3873), + [sym_character] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3873), + }, + [STATE(1654)] = { + [ts_builtin_sym_end] = ACTIONS(3877), + [sym_identifier] = ACTIONS(3879), + [anon_sym_import] = ACTIONS(3879), + [anon_sym_test] = ACTIONS(3879), + [anon_sym_hide] = ACTIONS(3879), + [anon_sym_func] = ACTIONS(3879), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3879), + [anon_sym_LPAREN] = ACTIONS(3877), + [anon_sym_RPAREN] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3877), + [anon_sym_RBRACE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_DOLLAR] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_void] = ACTIONS(3879), + [anon_sym_anyopaque] = ACTIONS(3879), + [anon_sym_bool] = ACTIONS(3879), + [anon_sym_int] = ACTIONS(3879), + [anon_sym_uint] = ACTIONS(3879), + [anon_sym_float] = ACTIONS(3879), + [anon_sym_range] = ACTIONS(3879), + [anon_sym_i8] = ACTIONS(3879), + [anon_sym_i16] = ACTIONS(3879), + [anon_sym_i32] = ACTIONS(3879), + [anon_sym_i64] = ACTIONS(3879), + [anon_sym_u8] = ACTIONS(3879), + [anon_sym_u16] = ACTIONS(3879), + [anon_sym_u32] = ACTIONS(3879), + [anon_sym_u64] = ACTIONS(3879), + [anon_sym_isize] = ACTIONS(3879), + [anon_sym_usize] = ACTIONS(3879), + [anon_sym_f32] = ACTIONS(3879), + [anon_sym_f64] = ACTIONS(3879), + [anon_sym_c_char] = ACTIONS(3879), + [anon_sym_c_schar] = ACTIONS(3879), + [anon_sym_c_uchar] = ACTIONS(3879), + [anon_sym_c_short] = ACTIONS(3879), + [anon_sym_c_ushort] = ACTIONS(3879), + [anon_sym_c_int] = ACTIONS(3879), + [anon_sym_c_uint] = ACTIONS(3879), + [anon_sym_c_long] = ACTIONS(3879), + [anon_sym_c_ulong] = ACTIONS(3879), + [anon_sym_c_longlong] = ACTIONS(3879), + [anon_sym_c_ulonglong] = ACTIONS(3879), + [anon_sym_c_float] = ACTIONS(3879), + [anon_sym_c_double] = ACTIONS(3879), + [anon_sym_c_longdouble] = ACTIONS(3879), + [anon_sym_return] = ACTIONS(3879), + [anon_sym_yield] = ACTIONS(3879), + [anon_sym_break] = ACTIONS(3879), + [anon_sym_continue] = ACTIONS(3879), + [anon_sym_defer] = ACTIONS(3879), + [anon_sym_errdefer] = ACTIONS(3879), + [anon_sym_if] = ACTIONS(3879), + [anon_sym_else] = ACTIONS(3879), + [anon_sym_while] = ACTIONS(3879), + [anon_sym_expand] = ACTIONS(3879), + [anon_sym_for] = ACTIONS(3879), + [anon_sym_match] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_try] = ACTIONS(3879), + [anon_sym_DOT] = ACTIONS(3877), + [anon_sym_true] = ACTIONS(3879), + [anon_sym_false] = ACTIONS(3879), + [sym_none] = ACTIONS(3879), + [sym_undefined] = ACTIONS(3879), + [sym_sink] = ACTIONS(3879), + [sym_integer] = ACTIONS(3879), + [sym_float] = ACTIONS(3877), + [anon_sym_DQUOTE] = ACTIONS(3877), + [sym_multiline_string] = ACTIONS(3877), + [sym_character] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3877), + }, + [STATE(1655)] = { + [ts_builtin_sym_end] = ACTIONS(3881), + [sym_identifier] = ACTIONS(3883), + [anon_sym_import] = ACTIONS(3883), + [anon_sym_test] = ACTIONS(3883), + [anon_sym_hide] = ACTIONS(3883), + [anon_sym_func] = ACTIONS(3883), + [anon_sym_BANG] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3883), + [anon_sym_LPAREN] = ACTIONS(3881), + [anon_sym_RPAREN] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3881), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_DOLLAR] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_void] = ACTIONS(3883), + [anon_sym_anyopaque] = ACTIONS(3883), + [anon_sym_bool] = ACTIONS(3883), + [anon_sym_int] = ACTIONS(3883), + [anon_sym_uint] = ACTIONS(3883), + [anon_sym_float] = ACTIONS(3883), + [anon_sym_range] = ACTIONS(3883), + [anon_sym_i8] = ACTIONS(3883), + [anon_sym_i16] = ACTIONS(3883), + [anon_sym_i32] = ACTIONS(3883), + [anon_sym_i64] = ACTIONS(3883), + [anon_sym_u8] = ACTIONS(3883), + [anon_sym_u16] = ACTIONS(3883), + [anon_sym_u32] = ACTIONS(3883), + [anon_sym_u64] = ACTIONS(3883), + [anon_sym_isize] = ACTIONS(3883), + [anon_sym_usize] = ACTIONS(3883), + [anon_sym_f32] = ACTIONS(3883), + [anon_sym_f64] = ACTIONS(3883), + [anon_sym_c_char] = ACTIONS(3883), + [anon_sym_c_schar] = ACTIONS(3883), + [anon_sym_c_uchar] = ACTIONS(3883), + [anon_sym_c_short] = ACTIONS(3883), + [anon_sym_c_ushort] = ACTIONS(3883), + [anon_sym_c_int] = ACTIONS(3883), + [anon_sym_c_uint] = ACTIONS(3883), + [anon_sym_c_long] = ACTIONS(3883), + [anon_sym_c_ulong] = ACTIONS(3883), + [anon_sym_c_longlong] = ACTIONS(3883), + [anon_sym_c_ulonglong] = ACTIONS(3883), + [anon_sym_c_float] = ACTIONS(3883), + [anon_sym_c_double] = ACTIONS(3883), + [anon_sym_c_longdouble] = ACTIONS(3883), + [anon_sym_return] = ACTIONS(3883), + [anon_sym_yield] = ACTIONS(3883), + [anon_sym_break] = ACTIONS(3883), + [anon_sym_continue] = ACTIONS(3883), + [anon_sym_defer] = ACTIONS(3883), + [anon_sym_errdefer] = ACTIONS(3883), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_else] = ACTIONS(3883), + [anon_sym_while] = ACTIONS(3883), + [anon_sym_expand] = ACTIONS(3883), + [anon_sym_for] = ACTIONS(3883), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_TILDE] = ACTIONS(3881), + [anon_sym_try] = ACTIONS(3883), + [anon_sym_DOT] = ACTIONS(3881), + [anon_sym_true] = ACTIONS(3883), + [anon_sym_false] = ACTIONS(3883), + [sym_none] = ACTIONS(3883), + [sym_undefined] = ACTIONS(3883), + [sym_sink] = ACTIONS(3883), + [sym_integer] = ACTIONS(3883), + [sym_float] = ACTIONS(3881), + [anon_sym_DQUOTE] = ACTIONS(3881), + [sym_multiline_string] = ACTIONS(3881), + [sym_character] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3881), + }, + [STATE(1656)] = { + [ts_builtin_sym_end] = ACTIONS(3885), + [sym_identifier] = ACTIONS(3887), + [anon_sym_import] = ACTIONS(3887), + [anon_sym_test] = ACTIONS(3887), + [anon_sym_hide] = ACTIONS(3887), + [anon_sym_func] = ACTIONS(3887), + [anon_sym_BANG] = ACTIONS(3885), + [anon_sym_struct] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3885), + [anon_sym_RPAREN] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3885), + [anon_sym_RBRACE] = ACTIONS(3885), + [anon_sym_DASH] = ACTIONS(3885), + [anon_sym_DOLLAR] = ACTIONS(3885), + [anon_sym_LBRACK] = ACTIONS(3885), + [anon_sym_void] = ACTIONS(3887), + [anon_sym_anyopaque] = ACTIONS(3887), + [anon_sym_bool] = ACTIONS(3887), + [anon_sym_int] = ACTIONS(3887), + [anon_sym_uint] = ACTIONS(3887), + [anon_sym_float] = ACTIONS(3887), + [anon_sym_range] = ACTIONS(3887), + [anon_sym_i8] = ACTIONS(3887), + [anon_sym_i16] = ACTIONS(3887), + [anon_sym_i32] = ACTIONS(3887), + [anon_sym_i64] = ACTIONS(3887), + [anon_sym_u8] = ACTIONS(3887), + [anon_sym_u16] = ACTIONS(3887), + [anon_sym_u32] = ACTIONS(3887), + [anon_sym_u64] = ACTIONS(3887), + [anon_sym_isize] = ACTIONS(3887), + [anon_sym_usize] = ACTIONS(3887), + [anon_sym_f32] = ACTIONS(3887), + [anon_sym_f64] = ACTIONS(3887), + [anon_sym_c_char] = ACTIONS(3887), + [anon_sym_c_schar] = ACTIONS(3887), + [anon_sym_c_uchar] = ACTIONS(3887), + [anon_sym_c_short] = ACTIONS(3887), + [anon_sym_c_ushort] = ACTIONS(3887), + [anon_sym_c_int] = ACTIONS(3887), + [anon_sym_c_uint] = ACTIONS(3887), + [anon_sym_c_long] = ACTIONS(3887), + [anon_sym_c_ulong] = ACTIONS(3887), + [anon_sym_c_longlong] = ACTIONS(3887), + [anon_sym_c_ulonglong] = ACTIONS(3887), + [anon_sym_c_float] = ACTIONS(3887), + [anon_sym_c_double] = ACTIONS(3887), + [anon_sym_c_longdouble] = ACTIONS(3887), + [anon_sym_return] = ACTIONS(3887), + [anon_sym_yield] = ACTIONS(3887), + [anon_sym_break] = ACTIONS(3887), + [anon_sym_continue] = ACTIONS(3887), + [anon_sym_defer] = ACTIONS(3887), + [anon_sym_errdefer] = ACTIONS(3887), + [anon_sym_if] = ACTIONS(3887), + [anon_sym_else] = ACTIONS(3887), + [anon_sym_while] = ACTIONS(3887), + [anon_sym_expand] = ACTIONS(3887), + [anon_sym_for] = ACTIONS(3887), + [anon_sym_match] = ACTIONS(3887), + [anon_sym_AMP] = ACTIONS(3885), + [anon_sym_TILDE] = ACTIONS(3885), + [anon_sym_try] = ACTIONS(3887), + [anon_sym_DOT] = ACTIONS(3885), + [anon_sym_true] = ACTIONS(3887), + [anon_sym_false] = ACTIONS(3887), + [sym_none] = ACTIONS(3887), + [sym_undefined] = ACTIONS(3887), + [sym_sink] = ACTIONS(3887), + [sym_integer] = ACTIONS(3887), + [sym_float] = ACTIONS(3885), + [anon_sym_DQUOTE] = ACTIONS(3885), + [sym_multiline_string] = ACTIONS(3885), + [sym_character] = ACTIONS(3885), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3885), + }, + [STATE(1657)] = { + [ts_builtin_sym_end] = ACTIONS(3889), + [sym_identifier] = ACTIONS(3891), + [anon_sym_import] = ACTIONS(3891), + [anon_sym_test] = ACTIONS(3891), + [anon_sym_hide] = ACTIONS(3891), + [anon_sym_func] = ACTIONS(3891), + [anon_sym_BANG] = ACTIONS(3889), + [anon_sym_struct] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3889), + [anon_sym_RPAREN] = ACTIONS(3889), + [anon_sym_LBRACE] = ACTIONS(3889), + [anon_sym_RBRACE] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_DOLLAR] = ACTIONS(3889), + [anon_sym_LBRACK] = ACTIONS(3889), + [anon_sym_void] = ACTIONS(3891), + [anon_sym_anyopaque] = ACTIONS(3891), + [anon_sym_bool] = ACTIONS(3891), + [anon_sym_int] = ACTIONS(3891), + [anon_sym_uint] = ACTIONS(3891), + [anon_sym_float] = ACTIONS(3891), + [anon_sym_range] = ACTIONS(3891), + [anon_sym_i8] = ACTIONS(3891), + [anon_sym_i16] = ACTIONS(3891), + [anon_sym_i32] = ACTIONS(3891), + [anon_sym_i64] = ACTIONS(3891), + [anon_sym_u8] = ACTIONS(3891), + [anon_sym_u16] = ACTIONS(3891), + [anon_sym_u32] = ACTIONS(3891), + [anon_sym_u64] = ACTIONS(3891), + [anon_sym_isize] = ACTIONS(3891), + [anon_sym_usize] = ACTIONS(3891), + [anon_sym_f32] = ACTIONS(3891), + [anon_sym_f64] = ACTIONS(3891), + [anon_sym_c_char] = ACTIONS(3891), + [anon_sym_c_schar] = ACTIONS(3891), + [anon_sym_c_uchar] = ACTIONS(3891), + [anon_sym_c_short] = ACTIONS(3891), + [anon_sym_c_ushort] = ACTIONS(3891), + [anon_sym_c_int] = ACTIONS(3891), + [anon_sym_c_uint] = ACTIONS(3891), + [anon_sym_c_long] = ACTIONS(3891), + [anon_sym_c_ulong] = ACTIONS(3891), + [anon_sym_c_longlong] = ACTIONS(3891), + [anon_sym_c_ulonglong] = ACTIONS(3891), + [anon_sym_c_float] = ACTIONS(3891), + [anon_sym_c_double] = ACTIONS(3891), + [anon_sym_c_longdouble] = ACTIONS(3891), + [anon_sym_return] = ACTIONS(3891), + [anon_sym_yield] = ACTIONS(3891), + [anon_sym_break] = ACTIONS(3891), + [anon_sym_continue] = ACTIONS(3891), + [anon_sym_defer] = ACTIONS(3891), + [anon_sym_errdefer] = ACTIONS(3891), + [anon_sym_if] = ACTIONS(3891), + [anon_sym_else] = ACTIONS(3891), + [anon_sym_while] = ACTIONS(3891), + [anon_sym_expand] = ACTIONS(3891), + [anon_sym_for] = ACTIONS(3891), + [anon_sym_match] = ACTIONS(3891), + [anon_sym_AMP] = ACTIONS(3889), + [anon_sym_TILDE] = ACTIONS(3889), + [anon_sym_try] = ACTIONS(3891), + [anon_sym_DOT] = ACTIONS(3889), + [anon_sym_true] = ACTIONS(3891), + [anon_sym_false] = ACTIONS(3891), + [sym_none] = ACTIONS(3891), + [sym_undefined] = ACTIONS(3891), + [sym_sink] = ACTIONS(3891), + [sym_integer] = ACTIONS(3891), + [sym_float] = ACTIONS(3889), + [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_multiline_string] = ACTIONS(3889), + [sym_character] = ACTIONS(3889), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3889), + }, + [STATE(1658)] = { + [ts_builtin_sym_end] = ACTIONS(3893), + [sym_identifier] = ACTIONS(3895), + [anon_sym_import] = ACTIONS(3895), + [anon_sym_test] = ACTIONS(3895), + [anon_sym_hide] = ACTIONS(3895), + [anon_sym_func] = ACTIONS(3895), + [anon_sym_BANG] = ACTIONS(3893), + [anon_sym_struct] = ACTIONS(3895), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_RPAREN] = ACTIONS(3893), + [anon_sym_LBRACE] = ACTIONS(3893), + [anon_sym_RBRACE] = ACTIONS(3893), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_DOLLAR] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3893), + [anon_sym_void] = ACTIONS(3895), + [anon_sym_anyopaque] = ACTIONS(3895), + [anon_sym_bool] = ACTIONS(3895), + [anon_sym_int] = ACTIONS(3895), + [anon_sym_uint] = ACTIONS(3895), + [anon_sym_float] = ACTIONS(3895), + [anon_sym_range] = ACTIONS(3895), + [anon_sym_i8] = ACTIONS(3895), + [anon_sym_i16] = ACTIONS(3895), + [anon_sym_i32] = ACTIONS(3895), + [anon_sym_i64] = ACTIONS(3895), + [anon_sym_u8] = ACTIONS(3895), + [anon_sym_u16] = ACTIONS(3895), + [anon_sym_u32] = ACTIONS(3895), + [anon_sym_u64] = ACTIONS(3895), + [anon_sym_isize] = ACTIONS(3895), + [anon_sym_usize] = ACTIONS(3895), + [anon_sym_f32] = ACTIONS(3895), + [anon_sym_f64] = ACTIONS(3895), + [anon_sym_c_char] = ACTIONS(3895), + [anon_sym_c_schar] = ACTIONS(3895), + [anon_sym_c_uchar] = ACTIONS(3895), + [anon_sym_c_short] = ACTIONS(3895), + [anon_sym_c_ushort] = ACTIONS(3895), + [anon_sym_c_int] = ACTIONS(3895), + [anon_sym_c_uint] = ACTIONS(3895), + [anon_sym_c_long] = ACTIONS(3895), + [anon_sym_c_ulong] = ACTIONS(3895), + [anon_sym_c_longlong] = ACTIONS(3895), + [anon_sym_c_ulonglong] = ACTIONS(3895), + [anon_sym_c_float] = ACTIONS(3895), + [anon_sym_c_double] = ACTIONS(3895), + [anon_sym_c_longdouble] = ACTIONS(3895), + [anon_sym_return] = ACTIONS(3895), + [anon_sym_yield] = ACTIONS(3895), + [anon_sym_break] = ACTIONS(3895), + [anon_sym_continue] = ACTIONS(3895), + [anon_sym_defer] = ACTIONS(3895), + [anon_sym_errdefer] = ACTIONS(3895), + [anon_sym_if] = ACTIONS(3895), + [anon_sym_else] = ACTIONS(3895), + [anon_sym_while] = ACTIONS(3895), + [anon_sym_expand] = ACTIONS(3895), + [anon_sym_for] = ACTIONS(3895), + [anon_sym_match] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3893), + [anon_sym_try] = ACTIONS(3895), + [anon_sym_DOT] = ACTIONS(3893), + [anon_sym_true] = ACTIONS(3895), + [anon_sym_false] = ACTIONS(3895), + [sym_none] = ACTIONS(3895), + [sym_undefined] = ACTIONS(3895), + [sym_sink] = ACTIONS(3895), + [sym_integer] = ACTIONS(3895), + [sym_float] = ACTIONS(3893), + [anon_sym_DQUOTE] = ACTIONS(3893), + [sym_multiline_string] = ACTIONS(3893), + [sym_character] = ACTIONS(3893), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3893), + }, + [STATE(1659)] = { + [ts_builtin_sym_end] = ACTIONS(3897), + [sym_identifier] = ACTIONS(3899), + [anon_sym_import] = ACTIONS(3899), + [anon_sym_test] = ACTIONS(3899), + [anon_sym_hide] = ACTIONS(3899), + [anon_sym_func] = ACTIONS(3899), + [anon_sym_BANG] = ACTIONS(3897), + [anon_sym_struct] = ACTIONS(3899), + [anon_sym_LPAREN] = ACTIONS(3897), + [anon_sym_RPAREN] = ACTIONS(3897), + [anon_sym_LBRACE] = ACTIONS(3897), + [anon_sym_RBRACE] = ACTIONS(3897), + [anon_sym_DASH] = ACTIONS(3897), + [anon_sym_DOLLAR] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3897), + [anon_sym_void] = ACTIONS(3899), + [anon_sym_anyopaque] = ACTIONS(3899), + [anon_sym_bool] = ACTIONS(3899), + [anon_sym_int] = ACTIONS(3899), + [anon_sym_uint] = ACTIONS(3899), + [anon_sym_float] = ACTIONS(3899), + [anon_sym_range] = ACTIONS(3899), + [anon_sym_i8] = ACTIONS(3899), + [anon_sym_i16] = ACTIONS(3899), + [anon_sym_i32] = ACTIONS(3899), + [anon_sym_i64] = ACTIONS(3899), + [anon_sym_u8] = ACTIONS(3899), + [anon_sym_u16] = ACTIONS(3899), + [anon_sym_u32] = ACTIONS(3899), + [anon_sym_u64] = ACTIONS(3899), + [anon_sym_isize] = ACTIONS(3899), + [anon_sym_usize] = ACTIONS(3899), + [anon_sym_f32] = ACTIONS(3899), + [anon_sym_f64] = ACTIONS(3899), + [anon_sym_c_char] = ACTIONS(3899), + [anon_sym_c_schar] = ACTIONS(3899), + [anon_sym_c_uchar] = ACTIONS(3899), + [anon_sym_c_short] = ACTIONS(3899), + [anon_sym_c_ushort] = ACTIONS(3899), + [anon_sym_c_int] = ACTIONS(3899), + [anon_sym_c_uint] = ACTIONS(3899), + [anon_sym_c_long] = ACTIONS(3899), + [anon_sym_c_ulong] = ACTIONS(3899), + [anon_sym_c_longlong] = ACTIONS(3899), + [anon_sym_c_ulonglong] = ACTIONS(3899), + [anon_sym_c_float] = ACTIONS(3899), + [anon_sym_c_double] = ACTIONS(3899), + [anon_sym_c_longdouble] = ACTIONS(3899), + [anon_sym_return] = ACTIONS(3899), + [anon_sym_yield] = ACTIONS(3899), + [anon_sym_break] = ACTIONS(3899), + [anon_sym_continue] = ACTIONS(3899), + [anon_sym_defer] = ACTIONS(3899), + [anon_sym_errdefer] = ACTIONS(3899), + [anon_sym_if] = ACTIONS(3899), + [anon_sym_else] = ACTIONS(3899), + [anon_sym_while] = ACTIONS(3899), + [anon_sym_expand] = ACTIONS(3899), + [anon_sym_for] = ACTIONS(3899), + [anon_sym_match] = ACTIONS(3899), + [anon_sym_AMP] = ACTIONS(3897), + [anon_sym_TILDE] = ACTIONS(3897), + [anon_sym_try] = ACTIONS(3899), + [anon_sym_DOT] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(3899), + [anon_sym_false] = ACTIONS(3899), + [sym_none] = ACTIONS(3899), + [sym_undefined] = ACTIONS(3899), + [sym_sink] = ACTIONS(3899), + [sym_integer] = ACTIONS(3899), + [sym_float] = ACTIONS(3897), + [anon_sym_DQUOTE] = ACTIONS(3897), + [sym_multiline_string] = ACTIONS(3897), + [sym_character] = ACTIONS(3897), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3897), + }, + [STATE(1660)] = { + [ts_builtin_sym_end] = ACTIONS(3901), + [sym_identifier] = ACTIONS(3903), + [anon_sym_import] = ACTIONS(3903), + [anon_sym_test] = ACTIONS(3903), + [anon_sym_hide] = ACTIONS(3903), + [anon_sym_func] = ACTIONS(3903), + [anon_sym_BANG] = ACTIONS(3901), + [anon_sym_struct] = ACTIONS(3903), + [anon_sym_LPAREN] = ACTIONS(3901), + [anon_sym_RPAREN] = ACTIONS(3901), + [anon_sym_LBRACE] = ACTIONS(3901), + [anon_sym_RBRACE] = ACTIONS(3901), + [anon_sym_DASH] = ACTIONS(3901), + [anon_sym_DOLLAR] = ACTIONS(3901), + [anon_sym_LBRACK] = ACTIONS(3901), + [anon_sym_void] = ACTIONS(3903), + [anon_sym_anyopaque] = ACTIONS(3903), + [anon_sym_bool] = ACTIONS(3903), + [anon_sym_int] = ACTIONS(3903), + [anon_sym_uint] = ACTIONS(3903), + [anon_sym_float] = ACTIONS(3903), + [anon_sym_range] = ACTIONS(3903), + [anon_sym_i8] = ACTIONS(3903), + [anon_sym_i16] = ACTIONS(3903), + [anon_sym_i32] = ACTIONS(3903), + [anon_sym_i64] = ACTIONS(3903), + [anon_sym_u8] = ACTIONS(3903), + [anon_sym_u16] = ACTIONS(3903), + [anon_sym_u32] = ACTIONS(3903), + [anon_sym_u64] = ACTIONS(3903), + [anon_sym_isize] = ACTIONS(3903), + [anon_sym_usize] = ACTIONS(3903), + [anon_sym_f32] = ACTIONS(3903), + [anon_sym_f64] = ACTIONS(3903), + [anon_sym_c_char] = ACTIONS(3903), + [anon_sym_c_schar] = ACTIONS(3903), + [anon_sym_c_uchar] = ACTIONS(3903), + [anon_sym_c_short] = ACTIONS(3903), + [anon_sym_c_ushort] = ACTIONS(3903), + [anon_sym_c_int] = ACTIONS(3903), + [anon_sym_c_uint] = ACTIONS(3903), + [anon_sym_c_long] = ACTIONS(3903), + [anon_sym_c_ulong] = ACTIONS(3903), + [anon_sym_c_longlong] = ACTIONS(3903), + [anon_sym_c_ulonglong] = ACTIONS(3903), + [anon_sym_c_float] = ACTIONS(3903), + [anon_sym_c_double] = ACTIONS(3903), + [anon_sym_c_longdouble] = ACTIONS(3903), + [anon_sym_return] = ACTIONS(3903), + [anon_sym_yield] = ACTIONS(3903), + [anon_sym_break] = ACTIONS(3903), + [anon_sym_continue] = ACTIONS(3903), + [anon_sym_defer] = ACTIONS(3903), + [anon_sym_errdefer] = ACTIONS(3903), + [anon_sym_if] = ACTIONS(3903), + [anon_sym_else] = ACTIONS(3903), + [anon_sym_while] = ACTIONS(3903), + [anon_sym_expand] = ACTIONS(3903), + [anon_sym_for] = ACTIONS(3903), + [anon_sym_match] = ACTIONS(3903), + [anon_sym_AMP] = ACTIONS(3901), + [anon_sym_TILDE] = ACTIONS(3901), + [anon_sym_try] = ACTIONS(3903), + [anon_sym_DOT] = ACTIONS(3901), + [anon_sym_true] = ACTIONS(3903), + [anon_sym_false] = ACTIONS(3903), + [sym_none] = ACTIONS(3903), + [sym_undefined] = ACTIONS(3903), + [sym_sink] = ACTIONS(3903), + [sym_integer] = ACTIONS(3903), + [sym_float] = ACTIONS(3901), + [anon_sym_DQUOTE] = ACTIONS(3901), + [sym_multiline_string] = ACTIONS(3901), + [sym_character] = ACTIONS(3901), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3901), + }, + [STATE(1661)] = { + [ts_builtin_sym_end] = ACTIONS(3905), + [sym_identifier] = ACTIONS(3907), + [anon_sym_import] = ACTIONS(3907), + [anon_sym_test] = ACTIONS(3907), + [anon_sym_hide] = ACTIONS(3907), + [anon_sym_func] = ACTIONS(3907), + [anon_sym_BANG] = ACTIONS(3905), + [anon_sym_struct] = ACTIONS(3907), + [anon_sym_LPAREN] = ACTIONS(3905), + [anon_sym_RPAREN] = ACTIONS(3905), + [anon_sym_LBRACE] = ACTIONS(3905), + [anon_sym_RBRACE] = ACTIONS(3905), + [anon_sym_DASH] = ACTIONS(3905), + [anon_sym_DOLLAR] = ACTIONS(3905), + [anon_sym_LBRACK] = ACTIONS(3905), + [anon_sym_void] = ACTIONS(3907), + [anon_sym_anyopaque] = ACTIONS(3907), + [anon_sym_bool] = ACTIONS(3907), + [anon_sym_int] = ACTIONS(3907), + [anon_sym_uint] = ACTIONS(3907), + [anon_sym_float] = ACTIONS(3907), + [anon_sym_range] = ACTIONS(3907), + [anon_sym_i8] = ACTIONS(3907), + [anon_sym_i16] = ACTIONS(3907), + [anon_sym_i32] = ACTIONS(3907), + [anon_sym_i64] = ACTIONS(3907), + [anon_sym_u8] = ACTIONS(3907), + [anon_sym_u16] = ACTIONS(3907), + [anon_sym_u32] = ACTIONS(3907), + [anon_sym_u64] = ACTIONS(3907), + [anon_sym_isize] = ACTIONS(3907), + [anon_sym_usize] = ACTIONS(3907), + [anon_sym_f32] = ACTIONS(3907), + [anon_sym_f64] = ACTIONS(3907), + [anon_sym_c_char] = ACTIONS(3907), + [anon_sym_c_schar] = ACTIONS(3907), + [anon_sym_c_uchar] = ACTIONS(3907), + [anon_sym_c_short] = ACTIONS(3907), + [anon_sym_c_ushort] = ACTIONS(3907), + [anon_sym_c_int] = ACTIONS(3907), + [anon_sym_c_uint] = ACTIONS(3907), + [anon_sym_c_long] = ACTIONS(3907), + [anon_sym_c_ulong] = ACTIONS(3907), + [anon_sym_c_longlong] = ACTIONS(3907), + [anon_sym_c_ulonglong] = ACTIONS(3907), + [anon_sym_c_float] = ACTIONS(3907), + [anon_sym_c_double] = ACTIONS(3907), + [anon_sym_c_longdouble] = ACTIONS(3907), + [anon_sym_return] = ACTIONS(3907), + [anon_sym_yield] = ACTIONS(3907), + [anon_sym_break] = ACTIONS(3907), + [anon_sym_continue] = ACTIONS(3907), + [anon_sym_defer] = ACTIONS(3907), + [anon_sym_errdefer] = ACTIONS(3907), + [anon_sym_if] = ACTIONS(3907), + [anon_sym_else] = ACTIONS(3907), + [anon_sym_while] = ACTIONS(3907), + [anon_sym_expand] = ACTIONS(3907), + [anon_sym_for] = ACTIONS(3907), + [anon_sym_match] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(3905), + [anon_sym_TILDE] = ACTIONS(3905), + [anon_sym_try] = ACTIONS(3907), + [anon_sym_DOT] = ACTIONS(3905), + [anon_sym_true] = ACTIONS(3907), + [anon_sym_false] = ACTIONS(3907), + [sym_none] = ACTIONS(3907), + [sym_undefined] = ACTIONS(3907), + [sym_sink] = ACTIONS(3907), + [sym_integer] = ACTIONS(3907), + [sym_float] = ACTIONS(3905), + [anon_sym_DQUOTE] = ACTIONS(3905), + [sym_multiline_string] = ACTIONS(3905), + [sym_character] = ACTIONS(3905), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3905), + }, + [STATE(1662)] = { + [ts_builtin_sym_end] = ACTIONS(3909), + [sym_identifier] = ACTIONS(3911), + [anon_sym_import] = ACTIONS(3911), + [anon_sym_test] = ACTIONS(3911), + [anon_sym_hide] = ACTIONS(3911), + [anon_sym_func] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3911), + [anon_sym_LPAREN] = ACTIONS(3909), + [anon_sym_RPAREN] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_DOLLAR] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_void] = ACTIONS(3911), + [anon_sym_anyopaque] = ACTIONS(3911), + [anon_sym_bool] = ACTIONS(3911), + [anon_sym_int] = ACTIONS(3911), + [anon_sym_uint] = ACTIONS(3911), + [anon_sym_float] = ACTIONS(3911), + [anon_sym_range] = ACTIONS(3911), + [anon_sym_i8] = ACTIONS(3911), + [anon_sym_i16] = ACTIONS(3911), + [anon_sym_i32] = ACTIONS(3911), + [anon_sym_i64] = ACTIONS(3911), + [anon_sym_u8] = ACTIONS(3911), + [anon_sym_u16] = ACTIONS(3911), + [anon_sym_u32] = ACTIONS(3911), + [anon_sym_u64] = ACTIONS(3911), + [anon_sym_isize] = ACTIONS(3911), + [anon_sym_usize] = ACTIONS(3911), + [anon_sym_f32] = ACTIONS(3911), + [anon_sym_f64] = ACTIONS(3911), + [anon_sym_c_char] = ACTIONS(3911), + [anon_sym_c_schar] = ACTIONS(3911), + [anon_sym_c_uchar] = ACTIONS(3911), + [anon_sym_c_short] = ACTIONS(3911), + [anon_sym_c_ushort] = ACTIONS(3911), + [anon_sym_c_int] = ACTIONS(3911), + [anon_sym_c_uint] = ACTIONS(3911), + [anon_sym_c_long] = ACTIONS(3911), + [anon_sym_c_ulong] = ACTIONS(3911), + [anon_sym_c_longlong] = ACTIONS(3911), + [anon_sym_c_ulonglong] = ACTIONS(3911), + [anon_sym_c_float] = ACTIONS(3911), + [anon_sym_c_double] = ACTIONS(3911), + [anon_sym_c_longdouble] = ACTIONS(3911), + [anon_sym_return] = ACTIONS(3911), + [anon_sym_yield] = ACTIONS(3911), + [anon_sym_break] = ACTIONS(3911), + [anon_sym_continue] = ACTIONS(3911), + [anon_sym_defer] = ACTIONS(3911), + [anon_sym_errdefer] = ACTIONS(3911), + [anon_sym_if] = ACTIONS(3911), + [anon_sym_else] = ACTIONS(3911), + [anon_sym_while] = ACTIONS(3911), + [anon_sym_expand] = ACTIONS(3911), + [anon_sym_for] = ACTIONS(3911), + [anon_sym_match] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_TILDE] = ACTIONS(3909), + [anon_sym_try] = ACTIONS(3911), + [anon_sym_DOT] = ACTIONS(3909), + [anon_sym_true] = ACTIONS(3911), + [anon_sym_false] = ACTIONS(3911), + [sym_none] = ACTIONS(3911), + [sym_undefined] = ACTIONS(3911), + [sym_sink] = ACTIONS(3911), + [sym_integer] = ACTIONS(3911), + [sym_float] = ACTIONS(3909), + [anon_sym_DQUOTE] = ACTIONS(3909), + [sym_multiline_string] = ACTIONS(3909), + [sym_character] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3909), + }, + [STATE(1663)] = { + [ts_builtin_sym_end] = ACTIONS(3913), + [sym_identifier] = ACTIONS(3915), + [anon_sym_import] = ACTIONS(3915), + [anon_sym_test] = ACTIONS(3915), + [anon_sym_hide] = ACTIONS(3915), + [anon_sym_func] = ACTIONS(3915), + [anon_sym_BANG] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3915), + [anon_sym_LPAREN] = ACTIONS(3913), + [anon_sym_RPAREN] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3913), + [anon_sym_RBRACE] = ACTIONS(3913), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_DOLLAR] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_void] = ACTIONS(3915), + [anon_sym_anyopaque] = ACTIONS(3915), + [anon_sym_bool] = ACTIONS(3915), + [anon_sym_int] = ACTIONS(3915), + [anon_sym_uint] = ACTIONS(3915), + [anon_sym_float] = ACTIONS(3915), + [anon_sym_range] = ACTIONS(3915), + [anon_sym_i8] = ACTIONS(3915), + [anon_sym_i16] = ACTIONS(3915), + [anon_sym_i32] = ACTIONS(3915), + [anon_sym_i64] = ACTIONS(3915), + [anon_sym_u8] = ACTIONS(3915), + [anon_sym_u16] = ACTIONS(3915), + [anon_sym_u32] = ACTIONS(3915), + [anon_sym_u64] = ACTIONS(3915), + [anon_sym_isize] = ACTIONS(3915), + [anon_sym_usize] = ACTIONS(3915), + [anon_sym_f32] = ACTIONS(3915), + [anon_sym_f64] = ACTIONS(3915), + [anon_sym_c_char] = ACTIONS(3915), + [anon_sym_c_schar] = ACTIONS(3915), + [anon_sym_c_uchar] = ACTIONS(3915), + [anon_sym_c_short] = ACTIONS(3915), + [anon_sym_c_ushort] = ACTIONS(3915), + [anon_sym_c_int] = ACTIONS(3915), + [anon_sym_c_uint] = ACTIONS(3915), + [anon_sym_c_long] = ACTIONS(3915), + [anon_sym_c_ulong] = ACTIONS(3915), + [anon_sym_c_longlong] = ACTIONS(3915), + [anon_sym_c_ulonglong] = ACTIONS(3915), + [anon_sym_c_float] = ACTIONS(3915), + [anon_sym_c_double] = ACTIONS(3915), + [anon_sym_c_longdouble] = ACTIONS(3915), + [anon_sym_return] = ACTIONS(3915), + [anon_sym_yield] = ACTIONS(3915), + [anon_sym_break] = ACTIONS(3915), + [anon_sym_continue] = ACTIONS(3915), + [anon_sym_defer] = ACTIONS(3915), + [anon_sym_errdefer] = ACTIONS(3915), + [anon_sym_if] = ACTIONS(3915), + [anon_sym_else] = ACTIONS(3915), + [anon_sym_while] = ACTIONS(3915), + [anon_sym_expand] = ACTIONS(3915), + [anon_sym_for] = ACTIONS(3915), + [anon_sym_match] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_TILDE] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3915), + [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_true] = ACTIONS(3915), + [anon_sym_false] = ACTIONS(3915), + [sym_none] = ACTIONS(3915), + [sym_undefined] = ACTIONS(3915), + [sym_sink] = ACTIONS(3915), + [sym_integer] = ACTIONS(3915), + [sym_float] = ACTIONS(3913), + [anon_sym_DQUOTE] = ACTIONS(3913), + [sym_multiline_string] = ACTIONS(3913), + [sym_character] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3913), + }, + [STATE(1664)] = { + [ts_builtin_sym_end] = ACTIONS(3917), + [sym_identifier] = ACTIONS(3919), + [anon_sym_import] = ACTIONS(3919), + [anon_sym_test] = ACTIONS(3919), + [anon_sym_hide] = ACTIONS(3919), + [anon_sym_func] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3919), + [anon_sym_LPAREN] = ACTIONS(3917), + [anon_sym_RPAREN] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3917), + [anon_sym_RBRACE] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_DOLLAR] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_void] = ACTIONS(3919), + [anon_sym_anyopaque] = ACTIONS(3919), + [anon_sym_bool] = ACTIONS(3919), + [anon_sym_int] = ACTIONS(3919), + [anon_sym_uint] = ACTIONS(3919), + [anon_sym_float] = ACTIONS(3919), + [anon_sym_range] = ACTIONS(3919), + [anon_sym_i8] = ACTIONS(3919), + [anon_sym_i16] = ACTIONS(3919), + [anon_sym_i32] = ACTIONS(3919), + [anon_sym_i64] = ACTIONS(3919), + [anon_sym_u8] = ACTIONS(3919), + [anon_sym_u16] = ACTIONS(3919), + [anon_sym_u32] = ACTIONS(3919), + [anon_sym_u64] = ACTIONS(3919), + [anon_sym_isize] = ACTIONS(3919), + [anon_sym_usize] = ACTIONS(3919), + [anon_sym_f32] = ACTIONS(3919), + [anon_sym_f64] = ACTIONS(3919), + [anon_sym_c_char] = ACTIONS(3919), + [anon_sym_c_schar] = ACTIONS(3919), + [anon_sym_c_uchar] = ACTIONS(3919), + [anon_sym_c_short] = ACTIONS(3919), + [anon_sym_c_ushort] = ACTIONS(3919), + [anon_sym_c_int] = ACTIONS(3919), + [anon_sym_c_uint] = ACTIONS(3919), + [anon_sym_c_long] = ACTIONS(3919), + [anon_sym_c_ulong] = ACTIONS(3919), + [anon_sym_c_longlong] = ACTIONS(3919), + [anon_sym_c_ulonglong] = ACTIONS(3919), + [anon_sym_c_float] = ACTIONS(3919), + [anon_sym_c_double] = ACTIONS(3919), + [anon_sym_c_longdouble] = ACTIONS(3919), + [anon_sym_return] = ACTIONS(3919), + [anon_sym_yield] = ACTIONS(3919), + [anon_sym_break] = ACTIONS(3919), + [anon_sym_continue] = ACTIONS(3919), + [anon_sym_defer] = ACTIONS(3919), + [anon_sym_errdefer] = ACTIONS(3919), + [anon_sym_if] = ACTIONS(3919), + [anon_sym_else] = ACTIONS(3919), + [anon_sym_while] = ACTIONS(3919), + [anon_sym_expand] = ACTIONS(3919), + [anon_sym_for] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_TILDE] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3919), + [anon_sym_DOT] = ACTIONS(3917), + [anon_sym_true] = ACTIONS(3919), + [anon_sym_false] = ACTIONS(3919), + [sym_none] = ACTIONS(3919), + [sym_undefined] = ACTIONS(3919), + [sym_sink] = ACTIONS(3919), + [sym_integer] = ACTIONS(3919), + [sym_float] = ACTIONS(3917), + [anon_sym_DQUOTE] = ACTIONS(3917), + [sym_multiline_string] = ACTIONS(3917), + [sym_character] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3917), + }, + [STATE(1665)] = { + [ts_builtin_sym_end] = ACTIONS(3921), + [sym_identifier] = ACTIONS(3923), + [anon_sym_import] = ACTIONS(3923), + [anon_sym_test] = ACTIONS(3923), + [anon_sym_hide] = ACTIONS(3923), + [anon_sym_func] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3923), + [anon_sym_LPAREN] = ACTIONS(3921), + [anon_sym_RPAREN] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_DOLLAR] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_void] = ACTIONS(3923), + [anon_sym_anyopaque] = ACTIONS(3923), + [anon_sym_bool] = ACTIONS(3923), + [anon_sym_int] = ACTIONS(3923), + [anon_sym_uint] = ACTIONS(3923), + [anon_sym_float] = ACTIONS(3923), + [anon_sym_range] = ACTIONS(3923), + [anon_sym_i8] = ACTIONS(3923), + [anon_sym_i16] = ACTIONS(3923), + [anon_sym_i32] = ACTIONS(3923), + [anon_sym_i64] = ACTIONS(3923), + [anon_sym_u8] = ACTIONS(3923), + [anon_sym_u16] = ACTIONS(3923), + [anon_sym_u32] = ACTIONS(3923), + [anon_sym_u64] = ACTIONS(3923), + [anon_sym_isize] = ACTIONS(3923), + [anon_sym_usize] = ACTIONS(3923), + [anon_sym_f32] = ACTIONS(3923), + [anon_sym_f64] = ACTIONS(3923), + [anon_sym_c_char] = ACTIONS(3923), + [anon_sym_c_schar] = ACTIONS(3923), + [anon_sym_c_uchar] = ACTIONS(3923), + [anon_sym_c_short] = ACTIONS(3923), + [anon_sym_c_ushort] = ACTIONS(3923), + [anon_sym_c_int] = ACTIONS(3923), + [anon_sym_c_uint] = ACTIONS(3923), + [anon_sym_c_long] = ACTIONS(3923), + [anon_sym_c_ulong] = ACTIONS(3923), + [anon_sym_c_longlong] = ACTIONS(3923), + [anon_sym_c_ulonglong] = ACTIONS(3923), + [anon_sym_c_float] = ACTIONS(3923), + [anon_sym_c_double] = ACTIONS(3923), + [anon_sym_c_longdouble] = ACTIONS(3923), + [anon_sym_return] = ACTIONS(3923), + [anon_sym_yield] = ACTIONS(3923), + [anon_sym_break] = ACTIONS(3923), + [anon_sym_continue] = ACTIONS(3923), + [anon_sym_defer] = ACTIONS(3923), + [anon_sym_errdefer] = ACTIONS(3923), + [anon_sym_if] = ACTIONS(3923), + [anon_sym_else] = ACTIONS(3923), + [anon_sym_while] = ACTIONS(3923), + [anon_sym_expand] = ACTIONS(3923), + [anon_sym_for] = ACTIONS(3923), + [anon_sym_match] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_TILDE] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3923), + [anon_sym_DOT] = ACTIONS(3921), + [anon_sym_true] = ACTIONS(3923), + [anon_sym_false] = ACTIONS(3923), + [sym_none] = ACTIONS(3923), + [sym_undefined] = ACTIONS(3923), + [sym_sink] = ACTIONS(3923), + [sym_integer] = ACTIONS(3923), + [sym_float] = ACTIONS(3921), + [anon_sym_DQUOTE] = ACTIONS(3921), + [sym_multiline_string] = ACTIONS(3921), + [sym_character] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3921), + }, + [STATE(1666)] = { + [ts_builtin_sym_end] = ACTIONS(3925), + [sym_identifier] = ACTIONS(3927), + [anon_sym_import] = ACTIONS(3927), + [anon_sym_test] = ACTIONS(3927), + [anon_sym_hide] = ACTIONS(3927), + [anon_sym_func] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3925), + [anon_sym_struct] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3925), + [anon_sym_RPAREN] = ACTIONS(3925), + [anon_sym_LBRACE] = ACTIONS(3925), + [anon_sym_RBRACE] = ACTIONS(3925), + [anon_sym_DASH] = ACTIONS(3925), + [anon_sym_DOLLAR] = ACTIONS(3925), + [anon_sym_LBRACK] = ACTIONS(3925), + [anon_sym_void] = ACTIONS(3927), + [anon_sym_anyopaque] = ACTIONS(3927), + [anon_sym_bool] = ACTIONS(3927), + [anon_sym_int] = ACTIONS(3927), + [anon_sym_uint] = ACTIONS(3927), + [anon_sym_float] = ACTIONS(3927), + [anon_sym_range] = ACTIONS(3927), + [anon_sym_i8] = ACTIONS(3927), + [anon_sym_i16] = ACTIONS(3927), + [anon_sym_i32] = ACTIONS(3927), + [anon_sym_i64] = ACTIONS(3927), + [anon_sym_u8] = ACTIONS(3927), + [anon_sym_u16] = ACTIONS(3927), + [anon_sym_u32] = ACTIONS(3927), + [anon_sym_u64] = ACTIONS(3927), + [anon_sym_isize] = ACTIONS(3927), + [anon_sym_usize] = ACTIONS(3927), + [anon_sym_f32] = ACTIONS(3927), + [anon_sym_f64] = ACTIONS(3927), + [anon_sym_c_char] = ACTIONS(3927), + [anon_sym_c_schar] = ACTIONS(3927), + [anon_sym_c_uchar] = ACTIONS(3927), + [anon_sym_c_short] = ACTIONS(3927), + [anon_sym_c_ushort] = ACTIONS(3927), + [anon_sym_c_int] = ACTIONS(3927), + [anon_sym_c_uint] = ACTIONS(3927), + [anon_sym_c_long] = ACTIONS(3927), + [anon_sym_c_ulong] = ACTIONS(3927), + [anon_sym_c_longlong] = ACTIONS(3927), + [anon_sym_c_ulonglong] = ACTIONS(3927), + [anon_sym_c_float] = ACTIONS(3927), + [anon_sym_c_double] = ACTIONS(3927), + [anon_sym_c_longdouble] = ACTIONS(3927), + [anon_sym_return] = ACTIONS(3927), + [anon_sym_yield] = ACTIONS(3927), + [anon_sym_break] = ACTIONS(3927), + [anon_sym_continue] = ACTIONS(3927), + [anon_sym_defer] = ACTIONS(3927), + [anon_sym_errdefer] = ACTIONS(3927), + [anon_sym_if] = ACTIONS(3927), + [anon_sym_else] = ACTIONS(3927), + [anon_sym_while] = ACTIONS(3927), + [anon_sym_expand] = ACTIONS(3927), + [anon_sym_for] = ACTIONS(3927), + [anon_sym_match] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_TILDE] = ACTIONS(3925), + [anon_sym_try] = ACTIONS(3927), + [anon_sym_DOT] = ACTIONS(3925), + [anon_sym_true] = ACTIONS(3927), + [anon_sym_false] = ACTIONS(3927), + [sym_none] = ACTIONS(3927), + [sym_undefined] = ACTIONS(3927), + [sym_sink] = ACTIONS(3927), + [sym_integer] = ACTIONS(3927), + [sym_float] = ACTIONS(3925), + [anon_sym_DQUOTE] = ACTIONS(3925), + [sym_multiline_string] = ACTIONS(3925), + [sym_character] = ACTIONS(3925), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3925), + }, + [STATE(1667)] = { + [ts_builtin_sym_end] = ACTIONS(3929), + [sym_identifier] = ACTIONS(3931), + [anon_sym_import] = ACTIONS(3931), + [anon_sym_test] = ACTIONS(3931), + [anon_sym_hide] = ACTIONS(3931), + [anon_sym_func] = ACTIONS(3931), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_RPAREN] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_RBRACE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_void] = ACTIONS(3931), + [anon_sym_anyopaque] = ACTIONS(3931), + [anon_sym_bool] = ACTIONS(3931), + [anon_sym_int] = ACTIONS(3931), + [anon_sym_uint] = ACTIONS(3931), + [anon_sym_float] = ACTIONS(3931), + [anon_sym_range] = ACTIONS(3931), + [anon_sym_i8] = ACTIONS(3931), + [anon_sym_i16] = ACTIONS(3931), + [anon_sym_i32] = ACTIONS(3931), + [anon_sym_i64] = ACTIONS(3931), + [anon_sym_u8] = ACTIONS(3931), + [anon_sym_u16] = ACTIONS(3931), + [anon_sym_u32] = ACTIONS(3931), + [anon_sym_u64] = ACTIONS(3931), + [anon_sym_isize] = ACTIONS(3931), + [anon_sym_usize] = ACTIONS(3931), + [anon_sym_f32] = ACTIONS(3931), + [anon_sym_f64] = ACTIONS(3931), + [anon_sym_c_char] = ACTIONS(3931), + [anon_sym_c_schar] = ACTIONS(3931), + [anon_sym_c_uchar] = ACTIONS(3931), + [anon_sym_c_short] = ACTIONS(3931), + [anon_sym_c_ushort] = ACTIONS(3931), + [anon_sym_c_int] = ACTIONS(3931), + [anon_sym_c_uint] = ACTIONS(3931), + [anon_sym_c_long] = ACTIONS(3931), + [anon_sym_c_ulong] = ACTIONS(3931), + [anon_sym_c_longlong] = ACTIONS(3931), + [anon_sym_c_ulonglong] = ACTIONS(3931), + [anon_sym_c_float] = ACTIONS(3931), + [anon_sym_c_double] = ACTIONS(3931), + [anon_sym_c_longdouble] = ACTIONS(3931), + [anon_sym_return] = ACTIONS(3931), + [anon_sym_yield] = ACTIONS(3931), + [anon_sym_break] = ACTIONS(3931), + [anon_sym_continue] = ACTIONS(3931), + [anon_sym_defer] = ACTIONS(3931), + [anon_sym_errdefer] = ACTIONS(3931), + [anon_sym_if] = ACTIONS(3931), + [anon_sym_else] = ACTIONS(3931), + [anon_sym_while] = ACTIONS(3931), + [anon_sym_expand] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(3931), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_DOT] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3931), + [anon_sym_false] = ACTIONS(3931), + [sym_none] = ACTIONS(3931), + [sym_undefined] = ACTIONS(3931), + [sym_sink] = ACTIONS(3931), + [sym_integer] = ACTIONS(3931), + [sym_float] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym_multiline_string] = ACTIONS(3929), + [sym_character] = ACTIONS(3929), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3929), + }, + [STATE(1668)] = { + [ts_builtin_sym_end] = ACTIONS(3933), + [sym_identifier] = ACTIONS(3935), + [anon_sym_import] = ACTIONS(3935), + [anon_sym_test] = ACTIONS(3935), + [anon_sym_hide] = ACTIONS(3935), + [anon_sym_func] = ACTIONS(3935), + [anon_sym_BANG] = ACTIONS(3933), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3933), + [anon_sym_RPAREN] = ACTIONS(3933), + [anon_sym_LBRACE] = ACTIONS(3933), + [anon_sym_RBRACE] = ACTIONS(3933), + [anon_sym_DASH] = ACTIONS(3933), + [anon_sym_DOLLAR] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3933), + [anon_sym_void] = ACTIONS(3935), + [anon_sym_anyopaque] = ACTIONS(3935), + [anon_sym_bool] = ACTIONS(3935), + [anon_sym_int] = ACTIONS(3935), + [anon_sym_uint] = ACTIONS(3935), + [anon_sym_float] = ACTIONS(3935), + [anon_sym_range] = ACTIONS(3935), + [anon_sym_i8] = ACTIONS(3935), + [anon_sym_i16] = ACTIONS(3935), + [anon_sym_i32] = ACTIONS(3935), + [anon_sym_i64] = ACTIONS(3935), + [anon_sym_u8] = ACTIONS(3935), + [anon_sym_u16] = ACTIONS(3935), + [anon_sym_u32] = ACTIONS(3935), + [anon_sym_u64] = ACTIONS(3935), + [anon_sym_isize] = ACTIONS(3935), + [anon_sym_usize] = ACTIONS(3935), + [anon_sym_f32] = ACTIONS(3935), + [anon_sym_f64] = ACTIONS(3935), + [anon_sym_c_char] = ACTIONS(3935), + [anon_sym_c_schar] = ACTIONS(3935), + [anon_sym_c_uchar] = ACTIONS(3935), + [anon_sym_c_short] = ACTIONS(3935), + [anon_sym_c_ushort] = ACTIONS(3935), + [anon_sym_c_int] = ACTIONS(3935), + [anon_sym_c_uint] = ACTIONS(3935), + [anon_sym_c_long] = ACTIONS(3935), + [anon_sym_c_ulong] = ACTIONS(3935), + [anon_sym_c_longlong] = ACTIONS(3935), + [anon_sym_c_ulonglong] = ACTIONS(3935), + [anon_sym_c_float] = ACTIONS(3935), + [anon_sym_c_double] = ACTIONS(3935), + [anon_sym_c_longdouble] = ACTIONS(3935), + [anon_sym_return] = ACTIONS(3935), + [anon_sym_yield] = ACTIONS(3935), + [anon_sym_break] = ACTIONS(3935), + [anon_sym_continue] = ACTIONS(3935), + [anon_sym_defer] = ACTIONS(3935), + [anon_sym_errdefer] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3935), + [anon_sym_else] = ACTIONS(3935), + [anon_sym_while] = ACTIONS(3935), + [anon_sym_expand] = ACTIONS(3935), + [anon_sym_for] = ACTIONS(3935), + [anon_sym_match] = ACTIONS(3935), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_try] = ACTIONS(3935), + [anon_sym_DOT] = ACTIONS(3933), + [anon_sym_true] = ACTIONS(3935), + [anon_sym_false] = ACTIONS(3935), + [sym_none] = ACTIONS(3935), + [sym_undefined] = ACTIONS(3935), + [sym_sink] = ACTIONS(3935), + [sym_integer] = ACTIONS(3935), + [sym_float] = ACTIONS(3933), + [anon_sym_DQUOTE] = ACTIONS(3933), + [sym_multiline_string] = ACTIONS(3933), + [sym_character] = ACTIONS(3933), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3933), + }, + [STATE(1669)] = { + [ts_builtin_sym_end] = ACTIONS(3937), + [sym_identifier] = ACTIONS(3939), + [anon_sym_import] = ACTIONS(3939), + [anon_sym_test] = ACTIONS(3939), + [anon_sym_hide] = ACTIONS(3939), + [anon_sym_func] = ACTIONS(3939), + [anon_sym_BANG] = ACTIONS(3937), + [anon_sym_struct] = ACTIONS(3939), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_RPAREN] = ACTIONS(3937), + [anon_sym_LBRACE] = ACTIONS(3937), + [anon_sym_RBRACE] = ACTIONS(3937), + [anon_sym_DASH] = ACTIONS(3937), + [anon_sym_DOLLAR] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3937), + [anon_sym_void] = ACTIONS(3939), + [anon_sym_anyopaque] = ACTIONS(3939), + [anon_sym_bool] = ACTIONS(3939), + [anon_sym_int] = ACTIONS(3939), + [anon_sym_uint] = ACTIONS(3939), + [anon_sym_float] = ACTIONS(3939), + [anon_sym_range] = ACTIONS(3939), + [anon_sym_i8] = ACTIONS(3939), + [anon_sym_i16] = ACTIONS(3939), + [anon_sym_i32] = ACTIONS(3939), + [anon_sym_i64] = ACTIONS(3939), + [anon_sym_u8] = ACTIONS(3939), + [anon_sym_u16] = ACTIONS(3939), + [anon_sym_u32] = ACTIONS(3939), + [anon_sym_u64] = ACTIONS(3939), + [anon_sym_isize] = ACTIONS(3939), + [anon_sym_usize] = ACTIONS(3939), + [anon_sym_f32] = ACTIONS(3939), + [anon_sym_f64] = ACTIONS(3939), + [anon_sym_c_char] = ACTIONS(3939), + [anon_sym_c_schar] = ACTIONS(3939), + [anon_sym_c_uchar] = ACTIONS(3939), + [anon_sym_c_short] = ACTIONS(3939), + [anon_sym_c_ushort] = ACTIONS(3939), + [anon_sym_c_int] = ACTIONS(3939), + [anon_sym_c_uint] = ACTIONS(3939), + [anon_sym_c_long] = ACTIONS(3939), + [anon_sym_c_ulong] = ACTIONS(3939), + [anon_sym_c_longlong] = ACTIONS(3939), + [anon_sym_c_ulonglong] = ACTIONS(3939), + [anon_sym_c_float] = ACTIONS(3939), + [anon_sym_c_double] = ACTIONS(3939), + [anon_sym_c_longdouble] = ACTIONS(3939), + [anon_sym_return] = ACTIONS(3939), + [anon_sym_yield] = ACTIONS(3939), + [anon_sym_break] = ACTIONS(3939), + [anon_sym_continue] = ACTIONS(3939), + [anon_sym_defer] = ACTIONS(3939), + [anon_sym_errdefer] = ACTIONS(3939), + [anon_sym_if] = ACTIONS(3939), + [anon_sym_else] = ACTIONS(3939), + [anon_sym_while] = ACTIONS(3939), + [anon_sym_expand] = ACTIONS(3939), + [anon_sym_for] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3937), + [anon_sym_TILDE] = ACTIONS(3937), + [anon_sym_try] = ACTIONS(3939), + [anon_sym_DOT] = ACTIONS(3937), + [anon_sym_true] = ACTIONS(3939), + [anon_sym_false] = ACTIONS(3939), + [sym_none] = ACTIONS(3939), + [sym_undefined] = ACTIONS(3939), + [sym_sink] = ACTIONS(3939), + [sym_integer] = ACTIONS(3939), + [sym_float] = ACTIONS(3937), + [anon_sym_DQUOTE] = ACTIONS(3937), + [sym_multiline_string] = ACTIONS(3937), + [sym_character] = ACTIONS(3937), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3937), + }, + [STATE(1670)] = { + [ts_builtin_sym_end] = ACTIONS(3941), + [sym_identifier] = ACTIONS(3943), + [anon_sym_import] = ACTIONS(3943), + [anon_sym_test] = ACTIONS(3943), + [anon_sym_hide] = ACTIONS(3943), + [anon_sym_func] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3941), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_void] = ACTIONS(3943), + [anon_sym_anyopaque] = ACTIONS(3943), + [anon_sym_bool] = ACTIONS(3943), + [anon_sym_int] = ACTIONS(3943), + [anon_sym_uint] = ACTIONS(3943), + [anon_sym_float] = ACTIONS(3943), + [anon_sym_range] = ACTIONS(3943), + [anon_sym_i8] = ACTIONS(3943), + [anon_sym_i16] = ACTIONS(3943), + [anon_sym_i32] = ACTIONS(3943), + [anon_sym_i64] = ACTIONS(3943), + [anon_sym_u8] = ACTIONS(3943), + [anon_sym_u16] = ACTIONS(3943), + [anon_sym_u32] = ACTIONS(3943), + [anon_sym_u64] = ACTIONS(3943), + [anon_sym_isize] = ACTIONS(3943), + [anon_sym_usize] = ACTIONS(3943), + [anon_sym_f32] = ACTIONS(3943), + [anon_sym_f64] = ACTIONS(3943), + [anon_sym_c_char] = ACTIONS(3943), + [anon_sym_c_schar] = ACTIONS(3943), + [anon_sym_c_uchar] = ACTIONS(3943), + [anon_sym_c_short] = ACTIONS(3943), + [anon_sym_c_ushort] = ACTIONS(3943), + [anon_sym_c_int] = ACTIONS(3943), + [anon_sym_c_uint] = ACTIONS(3943), + [anon_sym_c_long] = ACTIONS(3943), + [anon_sym_c_ulong] = ACTIONS(3943), + [anon_sym_c_longlong] = ACTIONS(3943), + [anon_sym_c_ulonglong] = ACTIONS(3943), + [anon_sym_c_float] = ACTIONS(3943), + [anon_sym_c_double] = ACTIONS(3943), + [anon_sym_c_longdouble] = ACTIONS(3943), + [anon_sym_return] = ACTIONS(3943), + [anon_sym_yield] = ACTIONS(3943), + [anon_sym_break] = ACTIONS(3943), + [anon_sym_continue] = ACTIONS(3943), + [anon_sym_defer] = ACTIONS(3943), + [anon_sym_errdefer] = ACTIONS(3943), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3943), + [anon_sym_while] = ACTIONS(3943), + [anon_sym_expand] = ACTIONS(3943), + [anon_sym_for] = ACTIONS(3943), + [anon_sym_match] = ACTIONS(3943), + [anon_sym_AMP] = ACTIONS(3941), + [anon_sym_TILDE] = ACTIONS(3941), + [anon_sym_try] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3941), + [anon_sym_true] = ACTIONS(3943), + [anon_sym_false] = ACTIONS(3943), + [sym_none] = ACTIONS(3943), + [sym_undefined] = ACTIONS(3943), + [sym_sink] = ACTIONS(3943), + [sym_integer] = ACTIONS(3943), + [sym_float] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym_multiline_string] = ACTIONS(3941), + [sym_character] = ACTIONS(3941), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3941), + }, + [STATE(1671)] = { + [ts_builtin_sym_end] = ACTIONS(3945), + [sym_identifier] = ACTIONS(3947), + [anon_sym_import] = ACTIONS(3947), + [anon_sym_test] = ACTIONS(3947), + [anon_sym_hide] = ACTIONS(3947), + [anon_sym_func] = ACTIONS(3947), + [anon_sym_BANG] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3945), + [anon_sym_RPAREN] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_RBRACE] = ACTIONS(3945), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_DOLLAR] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3947), + [anon_sym_anyopaque] = ACTIONS(3947), + [anon_sym_bool] = ACTIONS(3947), + [anon_sym_int] = ACTIONS(3947), + [anon_sym_uint] = ACTIONS(3947), + [anon_sym_float] = ACTIONS(3947), + [anon_sym_range] = ACTIONS(3947), + [anon_sym_i8] = ACTIONS(3947), + [anon_sym_i16] = ACTIONS(3947), + [anon_sym_i32] = ACTIONS(3947), + [anon_sym_i64] = ACTIONS(3947), + [anon_sym_u8] = ACTIONS(3947), + [anon_sym_u16] = ACTIONS(3947), + [anon_sym_u32] = ACTIONS(3947), + [anon_sym_u64] = ACTIONS(3947), + [anon_sym_isize] = ACTIONS(3947), + [anon_sym_usize] = ACTIONS(3947), + [anon_sym_f32] = ACTIONS(3947), + [anon_sym_f64] = ACTIONS(3947), + [anon_sym_c_char] = ACTIONS(3947), + [anon_sym_c_schar] = ACTIONS(3947), + [anon_sym_c_uchar] = ACTIONS(3947), + [anon_sym_c_short] = ACTIONS(3947), + [anon_sym_c_ushort] = ACTIONS(3947), + [anon_sym_c_int] = ACTIONS(3947), + [anon_sym_c_uint] = ACTIONS(3947), + [anon_sym_c_long] = ACTIONS(3947), + [anon_sym_c_ulong] = ACTIONS(3947), + [anon_sym_c_longlong] = ACTIONS(3947), + [anon_sym_c_ulonglong] = ACTIONS(3947), + [anon_sym_c_float] = ACTIONS(3947), + [anon_sym_c_double] = ACTIONS(3947), + [anon_sym_c_longdouble] = ACTIONS(3947), + [anon_sym_return] = ACTIONS(3947), + [anon_sym_yield] = ACTIONS(3947), + [anon_sym_break] = ACTIONS(3947), + [anon_sym_continue] = ACTIONS(3947), + [anon_sym_defer] = ACTIONS(3947), + [anon_sym_errdefer] = ACTIONS(3947), + [anon_sym_if] = ACTIONS(3947), + [anon_sym_else] = ACTIONS(3947), + [anon_sym_while] = ACTIONS(3947), + [anon_sym_expand] = ACTIONS(3947), + [anon_sym_for] = ACTIONS(3947), + [anon_sym_match] = ACTIONS(3947), + [anon_sym_AMP] = ACTIONS(3945), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_try] = ACTIONS(3947), + [anon_sym_DOT] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(3947), + [anon_sym_false] = ACTIONS(3947), + [sym_none] = ACTIONS(3947), + [sym_undefined] = ACTIONS(3947), + [sym_sink] = ACTIONS(3947), + [sym_integer] = ACTIONS(3947), + [sym_float] = ACTIONS(3945), + [anon_sym_DQUOTE] = ACTIONS(3945), + [sym_multiline_string] = ACTIONS(3945), + [sym_character] = ACTIONS(3945), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3945), + }, + [STATE(1672)] = { + [ts_builtin_sym_end] = ACTIONS(3949), + [sym_identifier] = ACTIONS(3951), + [anon_sym_import] = ACTIONS(3951), + [anon_sym_test] = ACTIONS(3951), + [anon_sym_hide] = ACTIONS(3951), + [anon_sym_func] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(3949), + [anon_sym_struct] = ACTIONS(3951), + [anon_sym_LPAREN] = ACTIONS(3949), + [anon_sym_RPAREN] = ACTIONS(3949), + [anon_sym_LBRACE] = ACTIONS(3949), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_DASH] = ACTIONS(3949), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(3949), + [anon_sym_void] = ACTIONS(3951), + [anon_sym_anyopaque] = ACTIONS(3951), + [anon_sym_bool] = ACTIONS(3951), + [anon_sym_int] = ACTIONS(3951), + [anon_sym_uint] = ACTIONS(3951), + [anon_sym_float] = ACTIONS(3951), + [anon_sym_range] = ACTIONS(3951), + [anon_sym_i8] = ACTIONS(3951), + [anon_sym_i16] = ACTIONS(3951), + [anon_sym_i32] = ACTIONS(3951), + [anon_sym_i64] = ACTIONS(3951), + [anon_sym_u8] = ACTIONS(3951), + [anon_sym_u16] = ACTIONS(3951), + [anon_sym_u32] = ACTIONS(3951), + [anon_sym_u64] = ACTIONS(3951), + [anon_sym_isize] = ACTIONS(3951), + [anon_sym_usize] = ACTIONS(3951), + [anon_sym_f32] = ACTIONS(3951), + [anon_sym_f64] = ACTIONS(3951), + [anon_sym_c_char] = ACTIONS(3951), + [anon_sym_c_schar] = ACTIONS(3951), + [anon_sym_c_uchar] = ACTIONS(3951), + [anon_sym_c_short] = ACTIONS(3951), + [anon_sym_c_ushort] = ACTIONS(3951), + [anon_sym_c_int] = ACTIONS(3951), + [anon_sym_c_uint] = ACTIONS(3951), + [anon_sym_c_long] = ACTIONS(3951), + [anon_sym_c_ulong] = ACTIONS(3951), + [anon_sym_c_longlong] = ACTIONS(3951), + [anon_sym_c_ulonglong] = ACTIONS(3951), + [anon_sym_c_float] = ACTIONS(3951), + [anon_sym_c_double] = ACTIONS(3951), + [anon_sym_c_longdouble] = ACTIONS(3951), + [anon_sym_return] = ACTIONS(3951), + [anon_sym_yield] = ACTIONS(3951), + [anon_sym_break] = ACTIONS(3951), + [anon_sym_continue] = ACTIONS(3951), + [anon_sym_defer] = ACTIONS(3951), + [anon_sym_errdefer] = ACTIONS(3951), + [anon_sym_if] = ACTIONS(3951), + [anon_sym_else] = ACTIONS(3951), + [anon_sym_while] = ACTIONS(3951), + [anon_sym_expand] = ACTIONS(3951), + [anon_sym_for] = ACTIONS(3951), + [anon_sym_match] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), + [anon_sym_TILDE] = ACTIONS(3949), + [anon_sym_try] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3949), + [anon_sym_true] = ACTIONS(3951), + [anon_sym_false] = ACTIONS(3951), + [sym_none] = ACTIONS(3951), + [sym_undefined] = ACTIONS(3951), + [sym_sink] = ACTIONS(3951), + [sym_integer] = ACTIONS(3951), + [sym_float] = ACTIONS(3949), + [anon_sym_DQUOTE] = ACTIONS(3949), + [sym_multiline_string] = ACTIONS(3949), + [sym_character] = ACTIONS(3949), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3949), + }, + [STATE(1673)] = { + [ts_builtin_sym_end] = ACTIONS(3953), + [sym_identifier] = ACTIONS(3955), + [anon_sym_import] = ACTIONS(3955), + [anon_sym_test] = ACTIONS(3955), + [anon_sym_hide] = ACTIONS(3955), + [anon_sym_func] = ACTIONS(3955), + [anon_sym_BANG] = ACTIONS(3953), + [anon_sym_struct] = ACTIONS(3955), + [anon_sym_LPAREN] = ACTIONS(3953), + [anon_sym_RPAREN] = ACTIONS(3953), + [anon_sym_LBRACE] = ACTIONS(3953), + [anon_sym_RBRACE] = ACTIONS(3953), + [anon_sym_DASH] = ACTIONS(3953), + [anon_sym_DOLLAR] = ACTIONS(3953), + [anon_sym_LBRACK] = ACTIONS(3953), + [anon_sym_void] = ACTIONS(3955), + [anon_sym_anyopaque] = ACTIONS(3955), + [anon_sym_bool] = ACTIONS(3955), + [anon_sym_int] = ACTIONS(3955), + [anon_sym_uint] = ACTIONS(3955), + [anon_sym_float] = ACTIONS(3955), + [anon_sym_range] = ACTIONS(3955), + [anon_sym_i8] = ACTIONS(3955), + [anon_sym_i16] = ACTIONS(3955), + [anon_sym_i32] = ACTIONS(3955), + [anon_sym_i64] = ACTIONS(3955), + [anon_sym_u8] = ACTIONS(3955), + [anon_sym_u16] = ACTIONS(3955), + [anon_sym_u32] = ACTIONS(3955), + [anon_sym_u64] = ACTIONS(3955), + [anon_sym_isize] = ACTIONS(3955), + [anon_sym_usize] = ACTIONS(3955), + [anon_sym_f32] = ACTIONS(3955), + [anon_sym_f64] = ACTIONS(3955), + [anon_sym_c_char] = ACTIONS(3955), + [anon_sym_c_schar] = ACTIONS(3955), + [anon_sym_c_uchar] = ACTIONS(3955), + [anon_sym_c_short] = ACTIONS(3955), + [anon_sym_c_ushort] = ACTIONS(3955), + [anon_sym_c_int] = ACTIONS(3955), + [anon_sym_c_uint] = ACTIONS(3955), + [anon_sym_c_long] = ACTIONS(3955), + [anon_sym_c_ulong] = ACTIONS(3955), + [anon_sym_c_longlong] = ACTIONS(3955), + [anon_sym_c_ulonglong] = ACTIONS(3955), + [anon_sym_c_float] = ACTIONS(3955), + [anon_sym_c_double] = ACTIONS(3955), + [anon_sym_c_longdouble] = ACTIONS(3955), + [anon_sym_return] = ACTIONS(3955), + [anon_sym_yield] = ACTIONS(3955), + [anon_sym_break] = ACTIONS(3955), + [anon_sym_continue] = ACTIONS(3955), + [anon_sym_defer] = ACTIONS(3955), + [anon_sym_errdefer] = ACTIONS(3955), + [anon_sym_if] = ACTIONS(3955), + [anon_sym_else] = ACTIONS(3955), + [anon_sym_while] = ACTIONS(3955), + [anon_sym_expand] = ACTIONS(3955), + [anon_sym_for] = ACTIONS(3955), + [anon_sym_match] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), + [anon_sym_TILDE] = ACTIONS(3953), + [anon_sym_try] = ACTIONS(3955), + [anon_sym_DOT] = ACTIONS(3953), + [anon_sym_true] = ACTIONS(3955), + [anon_sym_false] = ACTIONS(3955), + [sym_none] = ACTIONS(3955), + [sym_undefined] = ACTIONS(3955), + [sym_sink] = ACTIONS(3955), + [sym_integer] = ACTIONS(3955), + [sym_float] = ACTIONS(3953), + [anon_sym_DQUOTE] = ACTIONS(3953), + [sym_multiline_string] = ACTIONS(3953), + [sym_character] = ACTIONS(3953), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3953), + }, + [STATE(1674)] = { + [ts_builtin_sym_end] = ACTIONS(3957), + [sym_identifier] = ACTIONS(3959), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_test] = ACTIONS(3959), + [anon_sym_hide] = ACTIONS(3959), + [anon_sym_func] = ACTIONS(3959), + [anon_sym_BANG] = ACTIONS(3957), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACE] = ACTIONS(3957), + [anon_sym_RBRACE] = ACTIONS(3957), + [anon_sym_DASH] = ACTIONS(3957), + [anon_sym_DOLLAR] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3957), + [anon_sym_void] = ACTIONS(3959), + [anon_sym_anyopaque] = ACTIONS(3959), + [anon_sym_bool] = ACTIONS(3959), + [anon_sym_int] = ACTIONS(3959), + [anon_sym_uint] = ACTIONS(3959), + [anon_sym_float] = ACTIONS(3959), + [anon_sym_range] = ACTIONS(3959), + [anon_sym_i8] = ACTIONS(3959), + [anon_sym_i16] = ACTIONS(3959), + [anon_sym_i32] = ACTIONS(3959), + [anon_sym_i64] = ACTIONS(3959), + [anon_sym_u8] = ACTIONS(3959), + [anon_sym_u16] = ACTIONS(3959), + [anon_sym_u32] = ACTIONS(3959), + [anon_sym_u64] = ACTIONS(3959), + [anon_sym_isize] = ACTIONS(3959), + [anon_sym_usize] = ACTIONS(3959), + [anon_sym_f32] = ACTIONS(3959), + [anon_sym_f64] = ACTIONS(3959), + [anon_sym_c_char] = ACTIONS(3959), + [anon_sym_c_schar] = ACTIONS(3959), + [anon_sym_c_uchar] = ACTIONS(3959), + [anon_sym_c_short] = ACTIONS(3959), + [anon_sym_c_ushort] = ACTIONS(3959), + [anon_sym_c_int] = ACTIONS(3959), + [anon_sym_c_uint] = ACTIONS(3959), + [anon_sym_c_long] = ACTIONS(3959), + [anon_sym_c_ulong] = ACTIONS(3959), + [anon_sym_c_longlong] = ACTIONS(3959), + [anon_sym_c_ulonglong] = ACTIONS(3959), + [anon_sym_c_float] = ACTIONS(3959), + [anon_sym_c_double] = ACTIONS(3959), + [anon_sym_c_longdouble] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_yield] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_defer] = ACTIONS(3959), + [anon_sym_errdefer] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_else] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_expand] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_match] = ACTIONS(3959), + [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_TILDE] = ACTIONS(3957), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_true] = ACTIONS(3959), + [anon_sym_false] = ACTIONS(3959), + [sym_none] = ACTIONS(3959), + [sym_undefined] = ACTIONS(3959), + [sym_sink] = ACTIONS(3959), + [sym_integer] = ACTIONS(3959), + [sym_float] = ACTIONS(3957), + [anon_sym_DQUOTE] = ACTIONS(3957), + [sym_multiline_string] = ACTIONS(3957), + [sym_character] = ACTIONS(3957), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3957), + }, + [STATE(1675)] = { + [ts_builtin_sym_end] = ACTIONS(3961), + [sym_identifier] = ACTIONS(3963), + [anon_sym_import] = ACTIONS(3963), + [anon_sym_test] = ACTIONS(3963), + [anon_sym_hide] = ACTIONS(3963), + [anon_sym_func] = ACTIONS(3963), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_struct] = ACTIONS(3963), + [anon_sym_LPAREN] = ACTIONS(3961), + [anon_sym_RPAREN] = ACTIONS(3961), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3961), + [anon_sym_void] = ACTIONS(3963), + [anon_sym_anyopaque] = ACTIONS(3963), + [anon_sym_bool] = ACTIONS(3963), + [anon_sym_int] = ACTIONS(3963), + [anon_sym_uint] = ACTIONS(3963), + [anon_sym_float] = ACTIONS(3963), + [anon_sym_range] = ACTIONS(3963), + [anon_sym_i8] = ACTIONS(3963), + [anon_sym_i16] = ACTIONS(3963), + [anon_sym_i32] = ACTIONS(3963), + [anon_sym_i64] = ACTIONS(3963), + [anon_sym_u8] = ACTIONS(3963), + [anon_sym_u16] = ACTIONS(3963), + [anon_sym_u32] = ACTIONS(3963), + [anon_sym_u64] = ACTIONS(3963), + [anon_sym_isize] = ACTIONS(3963), + [anon_sym_usize] = ACTIONS(3963), + [anon_sym_f32] = ACTIONS(3963), + [anon_sym_f64] = ACTIONS(3963), + [anon_sym_c_char] = ACTIONS(3963), + [anon_sym_c_schar] = ACTIONS(3963), + [anon_sym_c_uchar] = ACTIONS(3963), + [anon_sym_c_short] = ACTIONS(3963), + [anon_sym_c_ushort] = ACTIONS(3963), + [anon_sym_c_int] = ACTIONS(3963), + [anon_sym_c_uint] = ACTIONS(3963), + [anon_sym_c_long] = ACTIONS(3963), + [anon_sym_c_ulong] = ACTIONS(3963), + [anon_sym_c_longlong] = ACTIONS(3963), + [anon_sym_c_ulonglong] = ACTIONS(3963), + [anon_sym_c_float] = ACTIONS(3963), + [anon_sym_c_double] = ACTIONS(3963), + [anon_sym_c_longdouble] = ACTIONS(3963), + [anon_sym_return] = ACTIONS(3963), + [anon_sym_yield] = ACTIONS(3963), + [anon_sym_break] = ACTIONS(3963), + [anon_sym_continue] = ACTIONS(3963), + [anon_sym_defer] = ACTIONS(3963), + [anon_sym_errdefer] = ACTIONS(3963), + [anon_sym_if] = ACTIONS(3963), + [anon_sym_else] = ACTIONS(3963), + [anon_sym_while] = ACTIONS(3963), + [anon_sym_expand] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3963), + [anon_sym_match] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(3961), + [anon_sym_true] = ACTIONS(3963), + [anon_sym_false] = ACTIONS(3963), + [sym_none] = ACTIONS(3963), + [sym_undefined] = ACTIONS(3963), + [sym_sink] = ACTIONS(3963), + [sym_integer] = ACTIONS(3963), + [sym_float] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_multiline_string] = ACTIONS(3961), + [sym_character] = ACTIONS(3961), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3961), + }, + [STATE(1676)] = { + [ts_builtin_sym_end] = ACTIONS(3965), + [sym_identifier] = ACTIONS(3967), + [anon_sym_import] = ACTIONS(3967), + [anon_sym_test] = ACTIONS(3967), + [anon_sym_hide] = ACTIONS(3967), + [anon_sym_func] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3965), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_LPAREN] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_DOLLAR] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_void] = ACTIONS(3967), + [anon_sym_anyopaque] = ACTIONS(3967), + [anon_sym_bool] = ACTIONS(3967), + [anon_sym_int] = ACTIONS(3967), + [anon_sym_uint] = ACTIONS(3967), + [anon_sym_float] = ACTIONS(3967), + [anon_sym_range] = ACTIONS(3967), + [anon_sym_i8] = ACTIONS(3967), + [anon_sym_i16] = ACTIONS(3967), + [anon_sym_i32] = ACTIONS(3967), + [anon_sym_i64] = ACTIONS(3967), + [anon_sym_u8] = ACTIONS(3967), + [anon_sym_u16] = ACTIONS(3967), + [anon_sym_u32] = ACTIONS(3967), + [anon_sym_u64] = ACTIONS(3967), + [anon_sym_isize] = ACTIONS(3967), + [anon_sym_usize] = ACTIONS(3967), + [anon_sym_f32] = ACTIONS(3967), + [anon_sym_f64] = ACTIONS(3967), + [anon_sym_c_char] = ACTIONS(3967), + [anon_sym_c_schar] = ACTIONS(3967), + [anon_sym_c_uchar] = ACTIONS(3967), + [anon_sym_c_short] = ACTIONS(3967), + [anon_sym_c_ushort] = ACTIONS(3967), + [anon_sym_c_int] = ACTIONS(3967), + [anon_sym_c_uint] = ACTIONS(3967), + [anon_sym_c_long] = ACTIONS(3967), + [anon_sym_c_ulong] = ACTIONS(3967), + [anon_sym_c_longlong] = ACTIONS(3967), + [anon_sym_c_ulonglong] = ACTIONS(3967), + [anon_sym_c_float] = ACTIONS(3967), + [anon_sym_c_double] = ACTIONS(3967), + [anon_sym_c_longdouble] = ACTIONS(3967), + [anon_sym_return] = ACTIONS(3967), + [anon_sym_yield] = ACTIONS(3967), + [anon_sym_break] = ACTIONS(3967), + [anon_sym_continue] = ACTIONS(3967), + [anon_sym_defer] = ACTIONS(3967), + [anon_sym_errdefer] = ACTIONS(3967), + [anon_sym_if] = ACTIONS(3967), + [anon_sym_else] = ACTIONS(3967), + [anon_sym_while] = ACTIONS(3967), + [anon_sym_expand] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3967), + [anon_sym_match] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_DOT] = ACTIONS(3965), + [anon_sym_true] = ACTIONS(3967), + [anon_sym_false] = ACTIONS(3967), + [sym_none] = ACTIONS(3967), + [sym_undefined] = ACTIONS(3967), + [sym_sink] = ACTIONS(3967), + [sym_integer] = ACTIONS(3967), + [sym_float] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_multiline_string] = ACTIONS(3965), + [sym_character] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3965), + }, + [STATE(1677)] = { + [ts_builtin_sym_end] = ACTIONS(3969), + [sym_identifier] = ACTIONS(3971), + [anon_sym_import] = ACTIONS(3971), + [anon_sym_test] = ACTIONS(3971), + [anon_sym_hide] = ACTIONS(3971), + [anon_sym_func] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3969), + [anon_sym_struct] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym_RPAREN] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_RBRACE] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_DOLLAR] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_void] = ACTIONS(3971), + [anon_sym_anyopaque] = ACTIONS(3971), + [anon_sym_bool] = ACTIONS(3971), + [anon_sym_int] = ACTIONS(3971), + [anon_sym_uint] = ACTIONS(3971), + [anon_sym_float] = ACTIONS(3971), + [anon_sym_range] = ACTIONS(3971), + [anon_sym_i8] = ACTIONS(3971), + [anon_sym_i16] = ACTIONS(3971), + [anon_sym_i32] = ACTIONS(3971), + [anon_sym_i64] = ACTIONS(3971), + [anon_sym_u8] = ACTIONS(3971), + [anon_sym_u16] = ACTIONS(3971), + [anon_sym_u32] = ACTIONS(3971), + [anon_sym_u64] = ACTIONS(3971), + [anon_sym_isize] = ACTIONS(3971), + [anon_sym_usize] = ACTIONS(3971), + [anon_sym_f32] = ACTIONS(3971), + [anon_sym_f64] = ACTIONS(3971), + [anon_sym_c_char] = ACTIONS(3971), + [anon_sym_c_schar] = ACTIONS(3971), + [anon_sym_c_uchar] = ACTIONS(3971), + [anon_sym_c_short] = ACTIONS(3971), + [anon_sym_c_ushort] = ACTIONS(3971), + [anon_sym_c_int] = ACTIONS(3971), + [anon_sym_c_uint] = ACTIONS(3971), + [anon_sym_c_long] = ACTIONS(3971), + [anon_sym_c_ulong] = ACTIONS(3971), + [anon_sym_c_longlong] = ACTIONS(3971), + [anon_sym_c_ulonglong] = ACTIONS(3971), + [anon_sym_c_float] = ACTIONS(3971), + [anon_sym_c_double] = ACTIONS(3971), + [anon_sym_c_longdouble] = ACTIONS(3971), + [anon_sym_return] = ACTIONS(3971), + [anon_sym_yield] = ACTIONS(3971), + [anon_sym_break] = ACTIONS(3971), + [anon_sym_continue] = ACTIONS(3971), + [anon_sym_defer] = ACTIONS(3971), + [anon_sym_errdefer] = ACTIONS(3971), + [anon_sym_if] = ACTIONS(3971), + [anon_sym_else] = ACTIONS(3971), + [anon_sym_while] = ACTIONS(3971), + [anon_sym_expand] = ACTIONS(3971), + [anon_sym_for] = ACTIONS(3971), + [anon_sym_match] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3971), + [anon_sym_DOT] = ACTIONS(3969), + [anon_sym_true] = ACTIONS(3971), + [anon_sym_false] = ACTIONS(3971), + [sym_none] = ACTIONS(3971), + [sym_undefined] = ACTIONS(3971), + [sym_sink] = ACTIONS(3971), + [sym_integer] = ACTIONS(3971), + [sym_float] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [sym_multiline_string] = ACTIONS(3969), + [sym_character] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3969), + }, + [STATE(1678)] = { + [ts_builtin_sym_end] = ACTIONS(3973), + [sym_identifier] = ACTIONS(3975), + [anon_sym_import] = ACTIONS(3975), + [anon_sym_test] = ACTIONS(3975), + [anon_sym_hide] = ACTIONS(3975), + [anon_sym_func] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3973), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_LPAREN] = ACTIONS(3973), + [anon_sym_RPAREN] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3973), + [anon_sym_RBRACE] = ACTIONS(3973), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_DOLLAR] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_void] = ACTIONS(3975), + [anon_sym_anyopaque] = ACTIONS(3975), + [anon_sym_bool] = ACTIONS(3975), + [anon_sym_int] = ACTIONS(3975), + [anon_sym_uint] = ACTIONS(3975), + [anon_sym_float] = ACTIONS(3975), + [anon_sym_range] = ACTIONS(3975), + [anon_sym_i8] = ACTIONS(3975), + [anon_sym_i16] = ACTIONS(3975), + [anon_sym_i32] = ACTIONS(3975), + [anon_sym_i64] = ACTIONS(3975), + [anon_sym_u8] = ACTIONS(3975), + [anon_sym_u16] = ACTIONS(3975), + [anon_sym_u32] = ACTIONS(3975), + [anon_sym_u64] = ACTIONS(3975), + [anon_sym_isize] = ACTIONS(3975), + [anon_sym_usize] = ACTIONS(3975), + [anon_sym_f32] = ACTIONS(3975), + [anon_sym_f64] = ACTIONS(3975), + [anon_sym_c_char] = ACTIONS(3975), + [anon_sym_c_schar] = ACTIONS(3975), + [anon_sym_c_uchar] = ACTIONS(3975), + [anon_sym_c_short] = ACTIONS(3975), + [anon_sym_c_ushort] = ACTIONS(3975), + [anon_sym_c_int] = ACTIONS(3975), + [anon_sym_c_uint] = ACTIONS(3975), + [anon_sym_c_long] = ACTIONS(3975), + [anon_sym_c_ulong] = ACTIONS(3975), + [anon_sym_c_longlong] = ACTIONS(3975), + [anon_sym_c_ulonglong] = ACTIONS(3975), + [anon_sym_c_float] = ACTIONS(3975), + [anon_sym_c_double] = ACTIONS(3975), + [anon_sym_c_longdouble] = ACTIONS(3975), + [anon_sym_return] = ACTIONS(3975), + [anon_sym_yield] = ACTIONS(3975), + [anon_sym_break] = ACTIONS(3975), + [anon_sym_continue] = ACTIONS(3975), + [anon_sym_defer] = ACTIONS(3975), + [anon_sym_errdefer] = ACTIONS(3975), + [anon_sym_if] = ACTIONS(3975), + [anon_sym_else] = ACTIONS(3975), + [anon_sym_while] = ACTIONS(3975), + [anon_sym_expand] = ACTIONS(3975), + [anon_sym_for] = ACTIONS(3975), + [anon_sym_match] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_TILDE] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3975), + [anon_sym_DOT] = ACTIONS(3973), + [anon_sym_true] = ACTIONS(3975), + [anon_sym_false] = ACTIONS(3975), + [sym_none] = ACTIONS(3975), + [sym_undefined] = ACTIONS(3975), + [sym_sink] = ACTIONS(3975), + [sym_integer] = ACTIONS(3975), + [sym_float] = ACTIONS(3973), + [anon_sym_DQUOTE] = ACTIONS(3973), + [sym_multiline_string] = ACTIONS(3973), + [sym_character] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3973), + }, + [STATE(1679)] = { + [ts_builtin_sym_end] = ACTIONS(3977), + [sym_identifier] = ACTIONS(3979), + [anon_sym_import] = ACTIONS(3979), + [anon_sym_test] = ACTIONS(3979), + [anon_sym_hide] = ACTIONS(3979), + [anon_sym_func] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3979), + [anon_sym_LPAREN] = ACTIONS(3977), + [anon_sym_RPAREN] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3977), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_DOLLAR] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_void] = ACTIONS(3979), + [anon_sym_anyopaque] = ACTIONS(3979), + [anon_sym_bool] = ACTIONS(3979), + [anon_sym_int] = ACTIONS(3979), + [anon_sym_uint] = ACTIONS(3979), + [anon_sym_float] = ACTIONS(3979), + [anon_sym_range] = ACTIONS(3979), + [anon_sym_i8] = ACTIONS(3979), + [anon_sym_i16] = ACTIONS(3979), + [anon_sym_i32] = ACTIONS(3979), + [anon_sym_i64] = ACTIONS(3979), + [anon_sym_u8] = ACTIONS(3979), + [anon_sym_u16] = ACTIONS(3979), + [anon_sym_u32] = ACTIONS(3979), + [anon_sym_u64] = ACTIONS(3979), + [anon_sym_isize] = ACTIONS(3979), + [anon_sym_usize] = ACTIONS(3979), + [anon_sym_f32] = ACTIONS(3979), + [anon_sym_f64] = ACTIONS(3979), + [anon_sym_c_char] = ACTIONS(3979), + [anon_sym_c_schar] = ACTIONS(3979), + [anon_sym_c_uchar] = ACTIONS(3979), + [anon_sym_c_short] = ACTIONS(3979), + [anon_sym_c_ushort] = ACTIONS(3979), + [anon_sym_c_int] = ACTIONS(3979), + [anon_sym_c_uint] = ACTIONS(3979), + [anon_sym_c_long] = ACTIONS(3979), + [anon_sym_c_ulong] = ACTIONS(3979), + [anon_sym_c_longlong] = ACTIONS(3979), + [anon_sym_c_ulonglong] = ACTIONS(3979), + [anon_sym_c_float] = ACTIONS(3979), + [anon_sym_c_double] = ACTIONS(3979), + [anon_sym_c_longdouble] = ACTIONS(3979), + [anon_sym_return] = ACTIONS(3979), + [anon_sym_yield] = ACTIONS(3979), + [anon_sym_break] = ACTIONS(3979), + [anon_sym_continue] = ACTIONS(3979), + [anon_sym_defer] = ACTIONS(3979), + [anon_sym_errdefer] = ACTIONS(3979), + [anon_sym_if] = ACTIONS(3979), + [anon_sym_else] = ACTIONS(3979), + [anon_sym_while] = ACTIONS(3979), + [anon_sym_expand] = ACTIONS(3979), + [anon_sym_for] = ACTIONS(3979), + [anon_sym_match] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_TILDE] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3979), + [anon_sym_DOT] = ACTIONS(3977), + [anon_sym_true] = ACTIONS(3979), + [anon_sym_false] = ACTIONS(3979), + [sym_none] = ACTIONS(3979), + [sym_undefined] = ACTIONS(3979), + [sym_sink] = ACTIONS(3979), + [sym_integer] = ACTIONS(3979), + [sym_float] = ACTIONS(3977), + [anon_sym_DQUOTE] = ACTIONS(3977), + [sym_multiline_string] = ACTIONS(3977), + [sym_character] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3977), + }, + [STATE(1680)] = { + [ts_builtin_sym_end] = ACTIONS(3981), + [sym_identifier] = ACTIONS(3983), + [anon_sym_import] = ACTIONS(3983), + [anon_sym_test] = ACTIONS(3983), + [anon_sym_hide] = ACTIONS(3983), + [anon_sym_func] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3983), + [anon_sym_LPAREN] = ACTIONS(3981), + [anon_sym_RPAREN] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3981), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_DOLLAR] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_void] = ACTIONS(3983), + [anon_sym_anyopaque] = ACTIONS(3983), + [anon_sym_bool] = ACTIONS(3983), + [anon_sym_int] = ACTIONS(3983), + [anon_sym_uint] = ACTIONS(3983), + [anon_sym_float] = ACTIONS(3983), + [anon_sym_range] = ACTIONS(3983), + [anon_sym_i8] = ACTIONS(3983), + [anon_sym_i16] = ACTIONS(3983), + [anon_sym_i32] = ACTIONS(3983), + [anon_sym_i64] = ACTIONS(3983), + [anon_sym_u8] = ACTIONS(3983), + [anon_sym_u16] = ACTIONS(3983), + [anon_sym_u32] = ACTIONS(3983), + [anon_sym_u64] = ACTIONS(3983), + [anon_sym_isize] = ACTIONS(3983), + [anon_sym_usize] = ACTIONS(3983), + [anon_sym_f32] = ACTIONS(3983), + [anon_sym_f64] = ACTIONS(3983), + [anon_sym_c_char] = ACTIONS(3983), + [anon_sym_c_schar] = ACTIONS(3983), + [anon_sym_c_uchar] = ACTIONS(3983), + [anon_sym_c_short] = ACTIONS(3983), + [anon_sym_c_ushort] = ACTIONS(3983), + [anon_sym_c_int] = ACTIONS(3983), + [anon_sym_c_uint] = ACTIONS(3983), + [anon_sym_c_long] = ACTIONS(3983), + [anon_sym_c_ulong] = ACTIONS(3983), + [anon_sym_c_longlong] = ACTIONS(3983), + [anon_sym_c_ulonglong] = ACTIONS(3983), + [anon_sym_c_float] = ACTIONS(3983), + [anon_sym_c_double] = ACTIONS(3983), + [anon_sym_c_longdouble] = ACTIONS(3983), + [anon_sym_return] = ACTIONS(3983), + [anon_sym_yield] = ACTIONS(3983), + [anon_sym_break] = ACTIONS(3983), + [anon_sym_continue] = ACTIONS(3983), + [anon_sym_defer] = ACTIONS(3983), + [anon_sym_errdefer] = ACTIONS(3983), + [anon_sym_if] = ACTIONS(3983), + [anon_sym_else] = ACTIONS(3983), + [anon_sym_while] = ACTIONS(3983), + [anon_sym_expand] = ACTIONS(3983), + [anon_sym_for] = ACTIONS(3983), + [anon_sym_match] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_TILDE] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3983), + [anon_sym_DOT] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(3983), + [anon_sym_false] = ACTIONS(3983), + [sym_none] = ACTIONS(3983), + [sym_undefined] = ACTIONS(3983), + [sym_sink] = ACTIONS(3983), + [sym_integer] = ACTIONS(3983), + [sym_float] = ACTIONS(3981), + [anon_sym_DQUOTE] = ACTIONS(3981), + [sym_multiline_string] = ACTIONS(3981), + [sym_character] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3981), + }, + [STATE(1681)] = { + [ts_builtin_sym_end] = ACTIONS(3985), + [sym_identifier] = ACTIONS(3987), + [anon_sym_import] = ACTIONS(3987), + [anon_sym_test] = ACTIONS(3987), + [anon_sym_hide] = ACTIONS(3987), + [anon_sym_func] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3987), + [anon_sym_LPAREN] = ACTIONS(3985), + [anon_sym_RPAREN] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3985), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_DOLLAR] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_void] = ACTIONS(3987), + [anon_sym_anyopaque] = ACTIONS(3987), + [anon_sym_bool] = ACTIONS(3987), + [anon_sym_int] = ACTIONS(3987), + [anon_sym_uint] = ACTIONS(3987), + [anon_sym_float] = ACTIONS(3987), + [anon_sym_range] = ACTIONS(3987), + [anon_sym_i8] = ACTIONS(3987), + [anon_sym_i16] = ACTIONS(3987), + [anon_sym_i32] = ACTIONS(3987), + [anon_sym_i64] = ACTIONS(3987), + [anon_sym_u8] = ACTIONS(3987), + [anon_sym_u16] = ACTIONS(3987), + [anon_sym_u32] = ACTIONS(3987), + [anon_sym_u64] = ACTIONS(3987), + [anon_sym_isize] = ACTIONS(3987), + [anon_sym_usize] = ACTIONS(3987), + [anon_sym_f32] = ACTIONS(3987), + [anon_sym_f64] = ACTIONS(3987), + [anon_sym_c_char] = ACTIONS(3987), + [anon_sym_c_schar] = ACTIONS(3987), + [anon_sym_c_uchar] = ACTIONS(3987), + [anon_sym_c_short] = ACTIONS(3987), + [anon_sym_c_ushort] = ACTIONS(3987), + [anon_sym_c_int] = ACTIONS(3987), + [anon_sym_c_uint] = ACTIONS(3987), + [anon_sym_c_long] = ACTIONS(3987), + [anon_sym_c_ulong] = ACTIONS(3987), + [anon_sym_c_longlong] = ACTIONS(3987), + [anon_sym_c_ulonglong] = ACTIONS(3987), + [anon_sym_c_float] = ACTIONS(3987), + [anon_sym_c_double] = ACTIONS(3987), + [anon_sym_c_longdouble] = ACTIONS(3987), + [anon_sym_return] = ACTIONS(3987), + [anon_sym_yield] = ACTIONS(3987), + [anon_sym_break] = ACTIONS(3987), + [anon_sym_continue] = ACTIONS(3987), + [anon_sym_defer] = ACTIONS(3987), + [anon_sym_errdefer] = ACTIONS(3987), + [anon_sym_if] = ACTIONS(3987), + [anon_sym_else] = ACTIONS(3987), + [anon_sym_while] = ACTIONS(3987), + [anon_sym_expand] = ACTIONS(3987), + [anon_sym_for] = ACTIONS(3987), + [anon_sym_match] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_TILDE] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3987), + [anon_sym_DOT] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(3987), + [anon_sym_false] = ACTIONS(3987), + [sym_none] = ACTIONS(3987), + [sym_undefined] = ACTIONS(3987), + [sym_sink] = ACTIONS(3987), + [sym_integer] = ACTIONS(3987), + [sym_float] = ACTIONS(3985), + [anon_sym_DQUOTE] = ACTIONS(3985), + [sym_multiline_string] = ACTIONS(3985), + [sym_character] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3985), + }, + [STATE(1682)] = { + [ts_builtin_sym_end] = ACTIONS(3989), + [sym_identifier] = ACTIONS(3991), + [anon_sym_import] = ACTIONS(3991), + [anon_sym_test] = ACTIONS(3991), + [anon_sym_hide] = ACTIONS(3991), + [anon_sym_func] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3991), + [anon_sym_LPAREN] = ACTIONS(3989), + [anon_sym_RPAREN] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3989), + [anon_sym_RBRACE] = ACTIONS(3989), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_DOLLAR] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_void] = ACTIONS(3991), + [anon_sym_anyopaque] = ACTIONS(3991), + [anon_sym_bool] = ACTIONS(3991), + [anon_sym_int] = ACTIONS(3991), + [anon_sym_uint] = ACTIONS(3991), + [anon_sym_float] = ACTIONS(3991), + [anon_sym_range] = ACTIONS(3991), + [anon_sym_i8] = ACTIONS(3991), + [anon_sym_i16] = ACTIONS(3991), + [anon_sym_i32] = ACTIONS(3991), + [anon_sym_i64] = ACTIONS(3991), + [anon_sym_u8] = ACTIONS(3991), + [anon_sym_u16] = ACTIONS(3991), + [anon_sym_u32] = ACTIONS(3991), + [anon_sym_u64] = ACTIONS(3991), + [anon_sym_isize] = ACTIONS(3991), + [anon_sym_usize] = ACTIONS(3991), + [anon_sym_f32] = ACTIONS(3991), + [anon_sym_f64] = ACTIONS(3991), + [anon_sym_c_char] = ACTIONS(3991), + [anon_sym_c_schar] = ACTIONS(3991), + [anon_sym_c_uchar] = ACTIONS(3991), + [anon_sym_c_short] = ACTIONS(3991), + [anon_sym_c_ushort] = ACTIONS(3991), + [anon_sym_c_int] = ACTIONS(3991), + [anon_sym_c_uint] = ACTIONS(3991), + [anon_sym_c_long] = ACTIONS(3991), + [anon_sym_c_ulong] = ACTIONS(3991), + [anon_sym_c_longlong] = ACTIONS(3991), + [anon_sym_c_ulonglong] = ACTIONS(3991), + [anon_sym_c_float] = ACTIONS(3991), + [anon_sym_c_double] = ACTIONS(3991), + [anon_sym_c_longdouble] = ACTIONS(3991), + [anon_sym_return] = ACTIONS(3991), + [anon_sym_yield] = ACTIONS(3991), + [anon_sym_break] = ACTIONS(3991), + [anon_sym_continue] = ACTIONS(3991), + [anon_sym_defer] = ACTIONS(3991), + [anon_sym_errdefer] = ACTIONS(3991), + [anon_sym_if] = ACTIONS(3991), + [anon_sym_else] = ACTIONS(3991), + [anon_sym_while] = ACTIONS(3991), + [anon_sym_expand] = ACTIONS(3991), + [anon_sym_for] = ACTIONS(3991), + [anon_sym_match] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_TILDE] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3991), + [anon_sym_DOT] = ACTIONS(3989), + [anon_sym_true] = ACTIONS(3991), + [anon_sym_false] = ACTIONS(3991), + [sym_none] = ACTIONS(3991), + [sym_undefined] = ACTIONS(3991), + [sym_sink] = ACTIONS(3991), + [sym_integer] = ACTIONS(3991), + [sym_float] = ACTIONS(3989), + [anon_sym_DQUOTE] = ACTIONS(3989), + [sym_multiline_string] = ACTIONS(3989), + [sym_character] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3989), + }, + [STATE(1683)] = { + [ts_builtin_sym_end] = ACTIONS(3993), + [sym_identifier] = ACTIONS(3995), + [anon_sym_import] = ACTIONS(3995), + [anon_sym_test] = ACTIONS(3995), + [anon_sym_hide] = ACTIONS(3995), + [anon_sym_func] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3995), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_RPAREN] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3993), + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_DOLLAR] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_void] = ACTIONS(3995), + [anon_sym_anyopaque] = ACTIONS(3995), + [anon_sym_bool] = ACTIONS(3995), + [anon_sym_int] = ACTIONS(3995), + [anon_sym_uint] = ACTIONS(3995), + [anon_sym_float] = ACTIONS(3995), + [anon_sym_range] = ACTIONS(3995), + [anon_sym_i8] = ACTIONS(3995), + [anon_sym_i16] = ACTIONS(3995), + [anon_sym_i32] = ACTIONS(3995), + [anon_sym_i64] = ACTIONS(3995), + [anon_sym_u8] = ACTIONS(3995), + [anon_sym_u16] = ACTIONS(3995), + [anon_sym_u32] = ACTIONS(3995), + [anon_sym_u64] = ACTIONS(3995), + [anon_sym_isize] = ACTIONS(3995), + [anon_sym_usize] = ACTIONS(3995), + [anon_sym_f32] = ACTIONS(3995), + [anon_sym_f64] = ACTIONS(3995), + [anon_sym_c_char] = ACTIONS(3995), + [anon_sym_c_schar] = ACTIONS(3995), + [anon_sym_c_uchar] = ACTIONS(3995), + [anon_sym_c_short] = ACTIONS(3995), + [anon_sym_c_ushort] = ACTIONS(3995), + [anon_sym_c_int] = ACTIONS(3995), + [anon_sym_c_uint] = ACTIONS(3995), + [anon_sym_c_long] = ACTIONS(3995), + [anon_sym_c_ulong] = ACTIONS(3995), + [anon_sym_c_longlong] = ACTIONS(3995), + [anon_sym_c_ulonglong] = ACTIONS(3995), + [anon_sym_c_float] = ACTIONS(3995), + [anon_sym_c_double] = ACTIONS(3995), + [anon_sym_c_longdouble] = ACTIONS(3995), + [anon_sym_return] = ACTIONS(3995), + [anon_sym_yield] = ACTIONS(3995), + [anon_sym_break] = ACTIONS(3995), + [anon_sym_continue] = ACTIONS(3995), + [anon_sym_defer] = ACTIONS(3995), + [anon_sym_errdefer] = ACTIONS(3995), + [anon_sym_if] = ACTIONS(3995), + [anon_sym_else] = ACTIONS(3995), + [anon_sym_while] = ACTIONS(3995), + [anon_sym_expand] = ACTIONS(3995), + [anon_sym_for] = ACTIONS(3995), + [anon_sym_match] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_TILDE] = ACTIONS(3993), + [anon_sym_try] = ACTIONS(3995), + [anon_sym_DOT] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(3995), + [anon_sym_false] = ACTIONS(3995), + [sym_none] = ACTIONS(3995), + [sym_undefined] = ACTIONS(3995), + [sym_sink] = ACTIONS(3995), + [sym_integer] = ACTIONS(3995), + [sym_float] = ACTIONS(3993), + [anon_sym_DQUOTE] = ACTIONS(3993), + [sym_multiline_string] = ACTIONS(3993), + [sym_character] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3993), + }, + [STATE(1684)] = { + [ts_builtin_sym_end] = ACTIONS(3997), + [sym_identifier] = ACTIONS(3999), + [anon_sym_import] = ACTIONS(3999), + [anon_sym_test] = ACTIONS(3999), + [anon_sym_hide] = ACTIONS(3999), + [anon_sym_func] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3999), + [anon_sym_LPAREN] = ACTIONS(3997), + [anon_sym_RPAREN] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3997), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_DOLLAR] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_void] = ACTIONS(3999), + [anon_sym_anyopaque] = ACTIONS(3999), + [anon_sym_bool] = ACTIONS(3999), + [anon_sym_int] = ACTIONS(3999), + [anon_sym_uint] = ACTIONS(3999), + [anon_sym_float] = ACTIONS(3999), + [anon_sym_range] = ACTIONS(3999), + [anon_sym_i8] = ACTIONS(3999), + [anon_sym_i16] = ACTIONS(3999), + [anon_sym_i32] = ACTIONS(3999), + [anon_sym_i64] = ACTIONS(3999), + [anon_sym_u8] = ACTIONS(3999), + [anon_sym_u16] = ACTIONS(3999), + [anon_sym_u32] = ACTIONS(3999), + [anon_sym_u64] = ACTIONS(3999), + [anon_sym_isize] = ACTIONS(3999), + [anon_sym_usize] = ACTIONS(3999), + [anon_sym_f32] = ACTIONS(3999), + [anon_sym_f64] = ACTIONS(3999), + [anon_sym_c_char] = ACTIONS(3999), + [anon_sym_c_schar] = ACTIONS(3999), + [anon_sym_c_uchar] = ACTIONS(3999), + [anon_sym_c_short] = ACTIONS(3999), + [anon_sym_c_ushort] = ACTIONS(3999), + [anon_sym_c_int] = ACTIONS(3999), + [anon_sym_c_uint] = ACTIONS(3999), + [anon_sym_c_long] = ACTIONS(3999), + [anon_sym_c_ulong] = ACTIONS(3999), + [anon_sym_c_longlong] = ACTIONS(3999), + [anon_sym_c_ulonglong] = ACTIONS(3999), + [anon_sym_c_float] = ACTIONS(3999), + [anon_sym_c_double] = ACTIONS(3999), + [anon_sym_c_longdouble] = ACTIONS(3999), + [anon_sym_return] = ACTIONS(3999), + [anon_sym_yield] = ACTIONS(3999), + [anon_sym_break] = ACTIONS(3999), + [anon_sym_continue] = ACTIONS(3999), + [anon_sym_defer] = ACTIONS(3999), + [anon_sym_errdefer] = ACTIONS(3999), + [anon_sym_if] = ACTIONS(3999), + [anon_sym_else] = ACTIONS(3999), + [anon_sym_while] = ACTIONS(3999), + [anon_sym_expand] = ACTIONS(3999), + [anon_sym_for] = ACTIONS(3999), + [anon_sym_match] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_TILDE] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3999), + [anon_sym_DOT] = ACTIONS(3997), + [anon_sym_true] = ACTIONS(3999), + [anon_sym_false] = ACTIONS(3999), + [sym_none] = ACTIONS(3999), + [sym_undefined] = ACTIONS(3999), + [sym_sink] = ACTIONS(3999), + [sym_integer] = ACTIONS(3999), + [sym_float] = ACTIONS(3997), + [anon_sym_DQUOTE] = ACTIONS(3997), + [sym_multiline_string] = ACTIONS(3997), + [sym_character] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3997), + }, + [STATE(1685)] = { + [ts_builtin_sym_end] = ACTIONS(4001), + [sym_identifier] = ACTIONS(4003), + [anon_sym_import] = ACTIONS(4003), + [anon_sym_test] = ACTIONS(4003), + [anon_sym_hide] = ACTIONS(4003), + [anon_sym_func] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4003), + [anon_sym_LPAREN] = ACTIONS(4001), + [anon_sym_RPAREN] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4001), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_DOLLAR] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_void] = ACTIONS(4003), + [anon_sym_anyopaque] = ACTIONS(4003), + [anon_sym_bool] = ACTIONS(4003), + [anon_sym_int] = ACTIONS(4003), + [anon_sym_uint] = ACTIONS(4003), + [anon_sym_float] = ACTIONS(4003), + [anon_sym_range] = ACTIONS(4003), + [anon_sym_i8] = ACTIONS(4003), + [anon_sym_i16] = ACTIONS(4003), + [anon_sym_i32] = ACTIONS(4003), + [anon_sym_i64] = ACTIONS(4003), + [anon_sym_u8] = ACTIONS(4003), + [anon_sym_u16] = ACTIONS(4003), + [anon_sym_u32] = ACTIONS(4003), + [anon_sym_u64] = ACTIONS(4003), + [anon_sym_isize] = ACTIONS(4003), + [anon_sym_usize] = ACTIONS(4003), + [anon_sym_f32] = ACTIONS(4003), + [anon_sym_f64] = ACTIONS(4003), + [anon_sym_c_char] = ACTIONS(4003), + [anon_sym_c_schar] = ACTIONS(4003), + [anon_sym_c_uchar] = ACTIONS(4003), + [anon_sym_c_short] = ACTIONS(4003), + [anon_sym_c_ushort] = ACTIONS(4003), + [anon_sym_c_int] = ACTIONS(4003), + [anon_sym_c_uint] = ACTIONS(4003), + [anon_sym_c_long] = ACTIONS(4003), + [anon_sym_c_ulong] = ACTIONS(4003), + [anon_sym_c_longlong] = ACTIONS(4003), + [anon_sym_c_ulonglong] = ACTIONS(4003), + [anon_sym_c_float] = ACTIONS(4003), + [anon_sym_c_double] = ACTIONS(4003), + [anon_sym_c_longdouble] = ACTIONS(4003), + [anon_sym_return] = ACTIONS(4003), + [anon_sym_yield] = ACTIONS(4003), + [anon_sym_break] = ACTIONS(4003), + [anon_sym_continue] = ACTIONS(4003), + [anon_sym_defer] = ACTIONS(4003), + [anon_sym_errdefer] = ACTIONS(4003), + [anon_sym_if] = ACTIONS(4003), + [anon_sym_else] = ACTIONS(4003), + [anon_sym_while] = ACTIONS(4003), + [anon_sym_expand] = ACTIONS(4003), + [anon_sym_for] = ACTIONS(4003), + [anon_sym_match] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_TILDE] = ACTIONS(4001), + [anon_sym_try] = ACTIONS(4003), + [anon_sym_DOT] = ACTIONS(4001), + [anon_sym_true] = ACTIONS(4003), + [anon_sym_false] = ACTIONS(4003), + [sym_none] = ACTIONS(4003), + [sym_undefined] = ACTIONS(4003), + [sym_sink] = ACTIONS(4003), + [sym_integer] = ACTIONS(4003), + [sym_float] = ACTIONS(4001), + [anon_sym_DQUOTE] = ACTIONS(4001), + [sym_multiline_string] = ACTIONS(4001), + [sym_character] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4001), + }, + [STATE(1686)] = { + [ts_builtin_sym_end] = ACTIONS(4005), + [sym_identifier] = ACTIONS(4007), + [anon_sym_import] = ACTIONS(4007), + [anon_sym_test] = ACTIONS(4007), + [anon_sym_hide] = ACTIONS(4007), + [anon_sym_func] = ACTIONS(4007), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4007), + [anon_sym_LPAREN] = ACTIONS(4005), + [anon_sym_RPAREN] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4005), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_DOLLAR] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_void] = ACTIONS(4007), + [anon_sym_anyopaque] = ACTIONS(4007), + [anon_sym_bool] = ACTIONS(4007), + [anon_sym_int] = ACTIONS(4007), + [anon_sym_uint] = ACTIONS(4007), + [anon_sym_float] = ACTIONS(4007), + [anon_sym_range] = ACTIONS(4007), + [anon_sym_i8] = ACTIONS(4007), + [anon_sym_i16] = ACTIONS(4007), + [anon_sym_i32] = ACTIONS(4007), + [anon_sym_i64] = ACTIONS(4007), + [anon_sym_u8] = ACTIONS(4007), + [anon_sym_u16] = ACTIONS(4007), + [anon_sym_u32] = ACTIONS(4007), + [anon_sym_u64] = ACTIONS(4007), + [anon_sym_isize] = ACTIONS(4007), + [anon_sym_usize] = ACTIONS(4007), + [anon_sym_f32] = ACTIONS(4007), + [anon_sym_f64] = ACTIONS(4007), + [anon_sym_c_char] = ACTIONS(4007), + [anon_sym_c_schar] = ACTIONS(4007), + [anon_sym_c_uchar] = ACTIONS(4007), + [anon_sym_c_short] = ACTIONS(4007), + [anon_sym_c_ushort] = ACTIONS(4007), + [anon_sym_c_int] = ACTIONS(4007), + [anon_sym_c_uint] = ACTIONS(4007), + [anon_sym_c_long] = ACTIONS(4007), + [anon_sym_c_ulong] = ACTIONS(4007), + [anon_sym_c_longlong] = ACTIONS(4007), + [anon_sym_c_ulonglong] = ACTIONS(4007), + [anon_sym_c_float] = ACTIONS(4007), + [anon_sym_c_double] = ACTIONS(4007), + [anon_sym_c_longdouble] = ACTIONS(4007), + [anon_sym_return] = ACTIONS(4007), + [anon_sym_yield] = ACTIONS(4007), + [anon_sym_break] = ACTIONS(4007), + [anon_sym_continue] = ACTIONS(4007), + [anon_sym_defer] = ACTIONS(4007), + [anon_sym_errdefer] = ACTIONS(4007), + [anon_sym_if] = ACTIONS(4007), + [anon_sym_else] = ACTIONS(4007), + [anon_sym_while] = ACTIONS(4007), + [anon_sym_expand] = ACTIONS(4007), + [anon_sym_for] = ACTIONS(4007), + [anon_sym_match] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_TILDE] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4007), + [anon_sym_DOT] = ACTIONS(4005), + [anon_sym_true] = ACTIONS(4007), + [anon_sym_false] = ACTIONS(4007), + [sym_none] = ACTIONS(4007), + [sym_undefined] = ACTIONS(4007), + [sym_sink] = ACTIONS(4007), + [sym_integer] = ACTIONS(4007), + [sym_float] = ACTIONS(4005), + [anon_sym_DQUOTE] = ACTIONS(4005), + [sym_multiline_string] = ACTIONS(4005), + [sym_character] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4005), + }, + [STATE(1687)] = { + [ts_builtin_sym_end] = ACTIONS(4009), + [sym_identifier] = ACTIONS(4011), + [anon_sym_import] = ACTIONS(4011), + [anon_sym_test] = ACTIONS(4011), + [anon_sym_hide] = ACTIONS(4011), + [anon_sym_func] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(4009), + [anon_sym_RPAREN] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_DOLLAR] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_void] = ACTIONS(4011), + [anon_sym_anyopaque] = ACTIONS(4011), + [anon_sym_bool] = ACTIONS(4011), + [anon_sym_int] = ACTIONS(4011), + [anon_sym_uint] = ACTIONS(4011), + [anon_sym_float] = ACTIONS(4011), + [anon_sym_range] = ACTIONS(4011), + [anon_sym_i8] = ACTIONS(4011), + [anon_sym_i16] = ACTIONS(4011), + [anon_sym_i32] = ACTIONS(4011), + [anon_sym_i64] = ACTIONS(4011), + [anon_sym_u8] = ACTIONS(4011), + [anon_sym_u16] = ACTIONS(4011), + [anon_sym_u32] = ACTIONS(4011), + [anon_sym_u64] = ACTIONS(4011), + [anon_sym_isize] = ACTIONS(4011), + [anon_sym_usize] = ACTIONS(4011), + [anon_sym_f32] = ACTIONS(4011), + [anon_sym_f64] = ACTIONS(4011), + [anon_sym_c_char] = ACTIONS(4011), + [anon_sym_c_schar] = ACTIONS(4011), + [anon_sym_c_uchar] = ACTIONS(4011), + [anon_sym_c_short] = ACTIONS(4011), + [anon_sym_c_ushort] = ACTIONS(4011), + [anon_sym_c_int] = ACTIONS(4011), + [anon_sym_c_uint] = ACTIONS(4011), + [anon_sym_c_long] = ACTIONS(4011), + [anon_sym_c_ulong] = ACTIONS(4011), + [anon_sym_c_longlong] = ACTIONS(4011), + [anon_sym_c_ulonglong] = ACTIONS(4011), + [anon_sym_c_float] = ACTIONS(4011), + [anon_sym_c_double] = ACTIONS(4011), + [anon_sym_c_longdouble] = ACTIONS(4011), + [anon_sym_return] = ACTIONS(4011), + [anon_sym_yield] = ACTIONS(4011), + [anon_sym_break] = ACTIONS(4011), + [anon_sym_continue] = ACTIONS(4011), + [anon_sym_defer] = ACTIONS(4011), + [anon_sym_errdefer] = ACTIONS(4011), + [anon_sym_if] = ACTIONS(4011), + [anon_sym_else] = ACTIONS(4011), + [anon_sym_while] = ACTIONS(4011), + [anon_sym_expand] = ACTIONS(4011), + [anon_sym_for] = ACTIONS(4011), + [anon_sym_match] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_TILDE] = ACTIONS(4009), + [anon_sym_try] = ACTIONS(4011), + [anon_sym_DOT] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(4011), + [anon_sym_false] = ACTIONS(4011), + [sym_none] = ACTIONS(4011), + [sym_undefined] = ACTIONS(4011), + [sym_sink] = ACTIONS(4011), + [sym_integer] = ACTIONS(4011), + [sym_float] = ACTIONS(4009), + [anon_sym_DQUOTE] = ACTIONS(4009), + [sym_multiline_string] = ACTIONS(4009), + [sym_character] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4009), + }, + [STATE(1688)] = { + [ts_builtin_sym_end] = ACTIONS(4013), + [sym_identifier] = ACTIONS(4015), + [anon_sym_import] = ACTIONS(4015), + [anon_sym_test] = ACTIONS(4015), + [anon_sym_hide] = ACTIONS(4015), + [anon_sym_func] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4013), + [anon_sym_RPAREN] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4013), + [anon_sym_RBRACE] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_DOLLAR] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_void] = ACTIONS(4015), + [anon_sym_anyopaque] = ACTIONS(4015), + [anon_sym_bool] = ACTIONS(4015), + [anon_sym_int] = ACTIONS(4015), + [anon_sym_uint] = ACTIONS(4015), + [anon_sym_float] = ACTIONS(4015), + [anon_sym_range] = ACTIONS(4015), + [anon_sym_i8] = ACTIONS(4015), + [anon_sym_i16] = ACTIONS(4015), + [anon_sym_i32] = ACTIONS(4015), + [anon_sym_i64] = ACTIONS(4015), + [anon_sym_u8] = ACTIONS(4015), + [anon_sym_u16] = ACTIONS(4015), + [anon_sym_u32] = ACTIONS(4015), + [anon_sym_u64] = ACTIONS(4015), + [anon_sym_isize] = ACTIONS(4015), + [anon_sym_usize] = ACTIONS(4015), + [anon_sym_f32] = ACTIONS(4015), + [anon_sym_f64] = ACTIONS(4015), + [anon_sym_c_char] = ACTIONS(4015), + [anon_sym_c_schar] = ACTIONS(4015), + [anon_sym_c_uchar] = ACTIONS(4015), + [anon_sym_c_short] = ACTIONS(4015), + [anon_sym_c_ushort] = ACTIONS(4015), + [anon_sym_c_int] = ACTIONS(4015), + [anon_sym_c_uint] = ACTIONS(4015), + [anon_sym_c_long] = ACTIONS(4015), + [anon_sym_c_ulong] = ACTIONS(4015), + [anon_sym_c_longlong] = ACTIONS(4015), + [anon_sym_c_ulonglong] = ACTIONS(4015), + [anon_sym_c_float] = ACTIONS(4015), + [anon_sym_c_double] = ACTIONS(4015), + [anon_sym_c_longdouble] = ACTIONS(4015), + [anon_sym_return] = ACTIONS(4015), + [anon_sym_yield] = ACTIONS(4015), + [anon_sym_break] = ACTIONS(4015), + [anon_sym_continue] = ACTIONS(4015), + [anon_sym_defer] = ACTIONS(4015), + [anon_sym_errdefer] = ACTIONS(4015), + [anon_sym_if] = ACTIONS(4015), + [anon_sym_else] = ACTIONS(4015), + [anon_sym_while] = ACTIONS(4015), + [anon_sym_expand] = ACTIONS(4015), + [anon_sym_for] = ACTIONS(4015), + [anon_sym_match] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_TILDE] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4015), + [anon_sym_DOT] = ACTIONS(4013), + [anon_sym_true] = ACTIONS(4015), + [anon_sym_false] = ACTIONS(4015), + [sym_none] = ACTIONS(4015), + [sym_undefined] = ACTIONS(4015), + [sym_sink] = ACTIONS(4015), + [sym_integer] = ACTIONS(4015), + [sym_float] = ACTIONS(4013), + [anon_sym_DQUOTE] = ACTIONS(4013), + [sym_multiline_string] = ACTIONS(4013), + [sym_character] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4013), + }, + [STATE(1689)] = { + [ts_builtin_sym_end] = ACTIONS(4017), + [sym_identifier] = ACTIONS(4019), + [anon_sym_import] = ACTIONS(4019), + [anon_sym_test] = ACTIONS(4019), + [anon_sym_hide] = ACTIONS(4019), + [anon_sym_func] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4019), + [anon_sym_LPAREN] = ACTIONS(4017), + [anon_sym_RPAREN] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4017), + [anon_sym_RBRACE] = ACTIONS(4017), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_DOLLAR] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_void] = ACTIONS(4019), + [anon_sym_anyopaque] = ACTIONS(4019), + [anon_sym_bool] = ACTIONS(4019), + [anon_sym_int] = ACTIONS(4019), + [anon_sym_uint] = ACTIONS(4019), + [anon_sym_float] = ACTIONS(4019), + [anon_sym_range] = ACTIONS(4019), + [anon_sym_i8] = ACTIONS(4019), + [anon_sym_i16] = ACTIONS(4019), + [anon_sym_i32] = ACTIONS(4019), + [anon_sym_i64] = ACTIONS(4019), + [anon_sym_u8] = ACTIONS(4019), + [anon_sym_u16] = ACTIONS(4019), + [anon_sym_u32] = ACTIONS(4019), + [anon_sym_u64] = ACTIONS(4019), + [anon_sym_isize] = ACTIONS(4019), + [anon_sym_usize] = ACTIONS(4019), + [anon_sym_f32] = ACTIONS(4019), + [anon_sym_f64] = ACTIONS(4019), + [anon_sym_c_char] = ACTIONS(4019), + [anon_sym_c_schar] = ACTIONS(4019), + [anon_sym_c_uchar] = ACTIONS(4019), + [anon_sym_c_short] = ACTIONS(4019), + [anon_sym_c_ushort] = ACTIONS(4019), + [anon_sym_c_int] = ACTIONS(4019), + [anon_sym_c_uint] = ACTIONS(4019), + [anon_sym_c_long] = ACTIONS(4019), + [anon_sym_c_ulong] = ACTIONS(4019), + [anon_sym_c_longlong] = ACTIONS(4019), + [anon_sym_c_ulonglong] = ACTIONS(4019), + [anon_sym_c_float] = ACTIONS(4019), + [anon_sym_c_double] = ACTIONS(4019), + [anon_sym_c_longdouble] = ACTIONS(4019), + [anon_sym_return] = ACTIONS(4019), + [anon_sym_yield] = ACTIONS(4019), + [anon_sym_break] = ACTIONS(4019), + [anon_sym_continue] = ACTIONS(4019), + [anon_sym_defer] = ACTIONS(4019), + [anon_sym_errdefer] = ACTIONS(4019), + [anon_sym_if] = ACTIONS(4019), + [anon_sym_else] = ACTIONS(4019), + [anon_sym_while] = ACTIONS(4019), + [anon_sym_expand] = ACTIONS(4019), + [anon_sym_for] = ACTIONS(4019), + [anon_sym_match] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_TILDE] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4019), + [anon_sym_DOT] = ACTIONS(4017), + [anon_sym_true] = ACTIONS(4019), + [anon_sym_false] = ACTIONS(4019), + [sym_none] = ACTIONS(4019), + [sym_undefined] = ACTIONS(4019), + [sym_sink] = ACTIONS(4019), + [sym_integer] = ACTIONS(4019), + [sym_float] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4017), + [sym_multiline_string] = ACTIONS(4017), + [sym_character] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4017), + }, + [STATE(1690)] = { + [ts_builtin_sym_end] = ACTIONS(4021), + [sym_identifier] = ACTIONS(4023), + [anon_sym_import] = ACTIONS(4023), + [anon_sym_test] = ACTIONS(4023), + [anon_sym_hide] = ACTIONS(4023), + [anon_sym_func] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4023), + [anon_sym_LPAREN] = ACTIONS(4021), + [anon_sym_RPAREN] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4021), + [anon_sym_RBRACE] = ACTIONS(4021), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_DOLLAR] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_void] = ACTIONS(4023), + [anon_sym_anyopaque] = ACTIONS(4023), + [anon_sym_bool] = ACTIONS(4023), + [anon_sym_int] = ACTIONS(4023), + [anon_sym_uint] = ACTIONS(4023), + [anon_sym_float] = ACTIONS(4023), + [anon_sym_range] = ACTIONS(4023), + [anon_sym_i8] = ACTIONS(4023), + [anon_sym_i16] = ACTIONS(4023), + [anon_sym_i32] = ACTIONS(4023), + [anon_sym_i64] = ACTIONS(4023), + [anon_sym_u8] = ACTIONS(4023), + [anon_sym_u16] = ACTIONS(4023), + [anon_sym_u32] = ACTIONS(4023), + [anon_sym_u64] = ACTIONS(4023), + [anon_sym_isize] = ACTIONS(4023), + [anon_sym_usize] = ACTIONS(4023), + [anon_sym_f32] = ACTIONS(4023), + [anon_sym_f64] = ACTIONS(4023), + [anon_sym_c_char] = ACTIONS(4023), + [anon_sym_c_schar] = ACTIONS(4023), + [anon_sym_c_uchar] = ACTIONS(4023), + [anon_sym_c_short] = ACTIONS(4023), + [anon_sym_c_ushort] = ACTIONS(4023), + [anon_sym_c_int] = ACTIONS(4023), + [anon_sym_c_uint] = ACTIONS(4023), + [anon_sym_c_long] = ACTIONS(4023), + [anon_sym_c_ulong] = ACTIONS(4023), + [anon_sym_c_longlong] = ACTIONS(4023), + [anon_sym_c_ulonglong] = ACTIONS(4023), + [anon_sym_c_float] = ACTIONS(4023), + [anon_sym_c_double] = ACTIONS(4023), + [anon_sym_c_longdouble] = ACTIONS(4023), + [anon_sym_return] = ACTIONS(4023), + [anon_sym_yield] = ACTIONS(4023), + [anon_sym_break] = ACTIONS(4023), + [anon_sym_continue] = ACTIONS(4023), + [anon_sym_defer] = ACTIONS(4023), + [anon_sym_errdefer] = ACTIONS(4023), + [anon_sym_if] = ACTIONS(4023), + [anon_sym_else] = ACTIONS(4023), + [anon_sym_while] = ACTIONS(4023), + [anon_sym_expand] = ACTIONS(4023), + [anon_sym_for] = ACTIONS(4023), + [anon_sym_match] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_TILDE] = ACTIONS(4021), + [anon_sym_try] = ACTIONS(4023), + [anon_sym_DOT] = ACTIONS(4021), + [anon_sym_true] = ACTIONS(4023), + [anon_sym_false] = ACTIONS(4023), + [sym_none] = ACTIONS(4023), + [sym_undefined] = ACTIONS(4023), + [sym_sink] = ACTIONS(4023), + [sym_integer] = ACTIONS(4023), + [sym_float] = ACTIONS(4021), + [anon_sym_DQUOTE] = ACTIONS(4021), + [sym_multiline_string] = ACTIONS(4021), + [sym_character] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4021), + }, + [STATE(1691)] = { + [ts_builtin_sym_end] = ACTIONS(4025), + [sym_identifier] = ACTIONS(4027), + [anon_sym_import] = ACTIONS(4027), + [anon_sym_test] = ACTIONS(4027), + [anon_sym_hide] = ACTIONS(4027), + [anon_sym_func] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4027), + [anon_sym_LPAREN] = ACTIONS(4025), + [anon_sym_RPAREN] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_RBRACE] = ACTIONS(4025), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_DOLLAR] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_void] = ACTIONS(4027), + [anon_sym_anyopaque] = ACTIONS(4027), + [anon_sym_bool] = ACTIONS(4027), + [anon_sym_int] = ACTIONS(4027), + [anon_sym_uint] = ACTIONS(4027), + [anon_sym_float] = ACTIONS(4027), + [anon_sym_range] = ACTIONS(4027), + [anon_sym_i8] = ACTIONS(4027), + [anon_sym_i16] = ACTIONS(4027), + [anon_sym_i32] = ACTIONS(4027), + [anon_sym_i64] = ACTIONS(4027), + [anon_sym_u8] = ACTIONS(4027), + [anon_sym_u16] = ACTIONS(4027), + [anon_sym_u32] = ACTIONS(4027), + [anon_sym_u64] = ACTIONS(4027), + [anon_sym_isize] = ACTIONS(4027), + [anon_sym_usize] = ACTIONS(4027), + [anon_sym_f32] = ACTIONS(4027), + [anon_sym_f64] = ACTIONS(4027), + [anon_sym_c_char] = ACTIONS(4027), + [anon_sym_c_schar] = ACTIONS(4027), + [anon_sym_c_uchar] = ACTIONS(4027), + [anon_sym_c_short] = ACTIONS(4027), + [anon_sym_c_ushort] = ACTIONS(4027), + [anon_sym_c_int] = ACTIONS(4027), + [anon_sym_c_uint] = ACTIONS(4027), + [anon_sym_c_long] = ACTIONS(4027), + [anon_sym_c_ulong] = ACTIONS(4027), + [anon_sym_c_longlong] = ACTIONS(4027), + [anon_sym_c_ulonglong] = ACTIONS(4027), + [anon_sym_c_float] = ACTIONS(4027), + [anon_sym_c_double] = ACTIONS(4027), + [anon_sym_c_longdouble] = ACTIONS(4027), + [anon_sym_return] = ACTIONS(4027), + [anon_sym_yield] = ACTIONS(4027), + [anon_sym_break] = ACTIONS(4027), + [anon_sym_continue] = ACTIONS(4027), + [anon_sym_defer] = ACTIONS(4027), + [anon_sym_errdefer] = ACTIONS(4027), + [anon_sym_if] = ACTIONS(4027), + [anon_sym_else] = ACTIONS(4027), + [anon_sym_while] = ACTIONS(4027), + [anon_sym_expand] = ACTIONS(4027), + [anon_sym_for] = ACTIONS(4027), + [anon_sym_match] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_TILDE] = ACTIONS(4025), + [anon_sym_try] = ACTIONS(4027), + [anon_sym_DOT] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(4027), + [anon_sym_false] = ACTIONS(4027), + [sym_none] = ACTIONS(4027), + [sym_undefined] = ACTIONS(4027), + [sym_sink] = ACTIONS(4027), + [sym_integer] = ACTIONS(4027), + [sym_float] = ACTIONS(4025), + [anon_sym_DQUOTE] = ACTIONS(4025), + [sym_multiline_string] = ACTIONS(4025), + [sym_character] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4025), + }, + [STATE(1692)] = { + [ts_builtin_sym_end] = ACTIONS(4029), + [sym_identifier] = ACTIONS(4031), + [anon_sym_import] = ACTIONS(4031), + [anon_sym_test] = ACTIONS(4031), + [anon_sym_hide] = ACTIONS(4031), + [anon_sym_func] = ACTIONS(4031), + [anon_sym_BANG] = ACTIONS(4029), + [anon_sym_struct] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4029), + [anon_sym_RPAREN] = ACTIONS(4029), + [anon_sym_LBRACE] = ACTIONS(4029), + [anon_sym_RBRACE] = ACTIONS(4029), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(4029), + [anon_sym_LBRACK] = ACTIONS(4029), + [anon_sym_void] = ACTIONS(4031), + [anon_sym_anyopaque] = ACTIONS(4031), + [anon_sym_bool] = ACTIONS(4031), + [anon_sym_int] = ACTIONS(4031), + [anon_sym_uint] = ACTIONS(4031), + [anon_sym_float] = ACTIONS(4031), + [anon_sym_range] = ACTIONS(4031), + [anon_sym_i8] = ACTIONS(4031), + [anon_sym_i16] = ACTIONS(4031), + [anon_sym_i32] = ACTIONS(4031), + [anon_sym_i64] = ACTIONS(4031), + [anon_sym_u8] = ACTIONS(4031), + [anon_sym_u16] = ACTIONS(4031), + [anon_sym_u32] = ACTIONS(4031), + [anon_sym_u64] = ACTIONS(4031), + [anon_sym_isize] = ACTIONS(4031), + [anon_sym_usize] = ACTIONS(4031), + [anon_sym_f32] = ACTIONS(4031), + [anon_sym_f64] = ACTIONS(4031), + [anon_sym_c_char] = ACTIONS(4031), + [anon_sym_c_schar] = ACTIONS(4031), + [anon_sym_c_uchar] = ACTIONS(4031), + [anon_sym_c_short] = ACTIONS(4031), + [anon_sym_c_ushort] = ACTIONS(4031), + [anon_sym_c_int] = ACTIONS(4031), + [anon_sym_c_uint] = ACTIONS(4031), + [anon_sym_c_long] = ACTIONS(4031), + [anon_sym_c_ulong] = ACTIONS(4031), + [anon_sym_c_longlong] = ACTIONS(4031), + [anon_sym_c_ulonglong] = ACTIONS(4031), + [anon_sym_c_float] = ACTIONS(4031), + [anon_sym_c_double] = ACTIONS(4031), + [anon_sym_c_longdouble] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_yield] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_defer] = ACTIONS(4031), + [anon_sym_errdefer] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_else] = ACTIONS(4031), + [anon_sym_while] = ACTIONS(4031), + [anon_sym_expand] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4029), + [anon_sym_TILDE] = ACTIONS(4029), + [anon_sym_try] = ACTIONS(4031), + [anon_sym_DOT] = ACTIONS(4029), + [anon_sym_true] = ACTIONS(4031), + [anon_sym_false] = ACTIONS(4031), + [sym_none] = ACTIONS(4031), + [sym_undefined] = ACTIONS(4031), + [sym_sink] = ACTIONS(4031), + [sym_integer] = ACTIONS(4031), + [sym_float] = ACTIONS(4029), + [anon_sym_DQUOTE] = ACTIONS(4029), + [sym_multiline_string] = ACTIONS(4029), + [sym_character] = ACTIONS(4029), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4029), + }, + [STATE(1693)] = { + [ts_builtin_sym_end] = ACTIONS(4033), + [sym_identifier] = ACTIONS(4035), + [anon_sym_import] = ACTIONS(4035), + [anon_sym_test] = ACTIONS(4035), + [anon_sym_hide] = ACTIONS(4035), + [anon_sym_func] = ACTIONS(4035), + [anon_sym_BANG] = ACTIONS(4033), + [anon_sym_struct] = ACTIONS(4035), + [anon_sym_LPAREN] = ACTIONS(4033), + [anon_sym_RPAREN] = ACTIONS(4033), + [anon_sym_LBRACE] = ACTIONS(4033), + [anon_sym_RBRACE] = ACTIONS(4033), + [anon_sym_DASH] = ACTIONS(4033), + [anon_sym_DOLLAR] = ACTIONS(4033), + [anon_sym_LBRACK] = ACTIONS(4033), + [anon_sym_void] = ACTIONS(4035), + [anon_sym_anyopaque] = ACTIONS(4035), + [anon_sym_bool] = ACTIONS(4035), + [anon_sym_int] = ACTIONS(4035), + [anon_sym_uint] = ACTIONS(4035), + [anon_sym_float] = ACTIONS(4035), + [anon_sym_range] = ACTIONS(4035), + [anon_sym_i8] = ACTIONS(4035), + [anon_sym_i16] = ACTIONS(4035), + [anon_sym_i32] = ACTIONS(4035), + [anon_sym_i64] = ACTIONS(4035), + [anon_sym_u8] = ACTIONS(4035), + [anon_sym_u16] = ACTIONS(4035), + [anon_sym_u32] = ACTIONS(4035), + [anon_sym_u64] = ACTIONS(4035), + [anon_sym_isize] = ACTIONS(4035), + [anon_sym_usize] = ACTIONS(4035), + [anon_sym_f32] = ACTIONS(4035), + [anon_sym_f64] = ACTIONS(4035), + [anon_sym_c_char] = ACTIONS(4035), + [anon_sym_c_schar] = ACTIONS(4035), + [anon_sym_c_uchar] = ACTIONS(4035), + [anon_sym_c_short] = ACTIONS(4035), + [anon_sym_c_ushort] = ACTIONS(4035), + [anon_sym_c_int] = ACTIONS(4035), + [anon_sym_c_uint] = ACTIONS(4035), + [anon_sym_c_long] = ACTIONS(4035), + [anon_sym_c_ulong] = ACTIONS(4035), + [anon_sym_c_longlong] = ACTIONS(4035), + [anon_sym_c_ulonglong] = ACTIONS(4035), + [anon_sym_c_float] = ACTIONS(4035), + [anon_sym_c_double] = ACTIONS(4035), + [anon_sym_c_longdouble] = ACTIONS(4035), + [anon_sym_return] = ACTIONS(4035), + [anon_sym_yield] = ACTIONS(4035), + [anon_sym_break] = ACTIONS(4035), + [anon_sym_continue] = ACTIONS(4035), + [anon_sym_defer] = ACTIONS(4035), + [anon_sym_errdefer] = ACTIONS(4035), + [anon_sym_if] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_while] = ACTIONS(4035), + [anon_sym_expand] = ACTIONS(4035), + [anon_sym_for] = ACTIONS(4035), + [anon_sym_match] = ACTIONS(4035), + [anon_sym_AMP] = ACTIONS(4033), + [anon_sym_TILDE] = ACTIONS(4033), + [anon_sym_try] = ACTIONS(4035), + [anon_sym_DOT] = ACTIONS(4033), + [anon_sym_true] = ACTIONS(4035), + [anon_sym_false] = ACTIONS(4035), + [sym_none] = ACTIONS(4035), + [sym_undefined] = ACTIONS(4035), + [sym_sink] = ACTIONS(4035), + [sym_integer] = ACTIONS(4035), + [sym_float] = ACTIONS(4033), + [anon_sym_DQUOTE] = ACTIONS(4033), + [sym_multiline_string] = ACTIONS(4033), + [sym_character] = ACTIONS(4033), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4033), + }, + [STATE(1694)] = { + [ts_builtin_sym_end] = ACTIONS(4037), + [sym_identifier] = ACTIONS(4039), + [anon_sym_import] = ACTIONS(4039), + [anon_sym_test] = ACTIONS(4039), + [anon_sym_hide] = ACTIONS(4039), + [anon_sym_func] = ACTIONS(4039), + [anon_sym_BANG] = ACTIONS(4037), + [anon_sym_struct] = ACTIONS(4039), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_DOLLAR] = ACTIONS(4037), + [anon_sym_LBRACK] = ACTIONS(4037), + [anon_sym_void] = ACTIONS(4039), + [anon_sym_anyopaque] = ACTIONS(4039), + [anon_sym_bool] = ACTIONS(4039), + [anon_sym_int] = ACTIONS(4039), + [anon_sym_uint] = ACTIONS(4039), + [anon_sym_float] = ACTIONS(4039), + [anon_sym_range] = ACTIONS(4039), + [anon_sym_i8] = ACTIONS(4039), + [anon_sym_i16] = ACTIONS(4039), + [anon_sym_i32] = ACTIONS(4039), + [anon_sym_i64] = ACTIONS(4039), + [anon_sym_u8] = ACTIONS(4039), + [anon_sym_u16] = ACTIONS(4039), + [anon_sym_u32] = ACTIONS(4039), + [anon_sym_u64] = ACTIONS(4039), + [anon_sym_isize] = ACTIONS(4039), + [anon_sym_usize] = ACTIONS(4039), + [anon_sym_f32] = ACTIONS(4039), + [anon_sym_f64] = ACTIONS(4039), + [anon_sym_c_char] = ACTIONS(4039), + [anon_sym_c_schar] = ACTIONS(4039), + [anon_sym_c_uchar] = ACTIONS(4039), + [anon_sym_c_short] = ACTIONS(4039), + [anon_sym_c_ushort] = ACTIONS(4039), + [anon_sym_c_int] = ACTIONS(4039), + [anon_sym_c_uint] = ACTIONS(4039), + [anon_sym_c_long] = ACTIONS(4039), + [anon_sym_c_ulong] = ACTIONS(4039), + [anon_sym_c_longlong] = ACTIONS(4039), + [anon_sym_c_ulonglong] = ACTIONS(4039), + [anon_sym_c_float] = ACTIONS(4039), + [anon_sym_c_double] = ACTIONS(4039), + [anon_sym_c_longdouble] = ACTIONS(4039), + [anon_sym_return] = ACTIONS(4039), + [anon_sym_yield] = ACTIONS(4039), + [anon_sym_break] = ACTIONS(4039), + [anon_sym_continue] = ACTIONS(4039), + [anon_sym_defer] = ACTIONS(4039), + [anon_sym_errdefer] = ACTIONS(4039), + [anon_sym_if] = ACTIONS(4039), + [anon_sym_else] = ACTIONS(4039), + [anon_sym_while] = ACTIONS(4039), + [anon_sym_expand] = ACTIONS(4039), + [anon_sym_for] = ACTIONS(4039), + [anon_sym_match] = ACTIONS(4039), + [anon_sym_AMP] = ACTIONS(4037), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_try] = ACTIONS(4039), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(4039), + [anon_sym_false] = ACTIONS(4039), + [sym_none] = ACTIONS(4039), + [sym_undefined] = ACTIONS(4039), + [sym_sink] = ACTIONS(4039), + [sym_integer] = ACTIONS(4039), + [sym_float] = ACTIONS(4037), + [anon_sym_DQUOTE] = ACTIONS(4037), + [sym_multiline_string] = ACTIONS(4037), + [sym_character] = ACTIONS(4037), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4037), + }, + [STATE(1695)] = { + [ts_builtin_sym_end] = ACTIONS(4041), + [sym_identifier] = ACTIONS(4043), + [anon_sym_import] = ACTIONS(4043), + [anon_sym_test] = ACTIONS(4043), + [anon_sym_hide] = ACTIONS(4043), + [anon_sym_func] = ACTIONS(4043), + [anon_sym_BANG] = ACTIONS(4041), + [anon_sym_struct] = ACTIONS(4043), + [anon_sym_LPAREN] = ACTIONS(4041), + [anon_sym_RPAREN] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4041), + [anon_sym_RBRACE] = ACTIONS(4041), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_DOLLAR] = ACTIONS(4041), + [anon_sym_LBRACK] = ACTIONS(4041), + [anon_sym_void] = ACTIONS(4043), + [anon_sym_anyopaque] = ACTIONS(4043), + [anon_sym_bool] = ACTIONS(4043), + [anon_sym_int] = ACTIONS(4043), + [anon_sym_uint] = ACTIONS(4043), + [anon_sym_float] = ACTIONS(4043), + [anon_sym_range] = ACTIONS(4043), + [anon_sym_i8] = ACTIONS(4043), + [anon_sym_i16] = ACTIONS(4043), + [anon_sym_i32] = ACTIONS(4043), + [anon_sym_i64] = ACTIONS(4043), + [anon_sym_u8] = ACTIONS(4043), + [anon_sym_u16] = ACTIONS(4043), + [anon_sym_u32] = ACTIONS(4043), + [anon_sym_u64] = ACTIONS(4043), + [anon_sym_isize] = ACTIONS(4043), + [anon_sym_usize] = ACTIONS(4043), + [anon_sym_f32] = ACTIONS(4043), + [anon_sym_f64] = ACTIONS(4043), + [anon_sym_c_char] = ACTIONS(4043), + [anon_sym_c_schar] = ACTIONS(4043), + [anon_sym_c_uchar] = ACTIONS(4043), + [anon_sym_c_short] = ACTIONS(4043), + [anon_sym_c_ushort] = ACTIONS(4043), + [anon_sym_c_int] = ACTIONS(4043), + [anon_sym_c_uint] = ACTIONS(4043), + [anon_sym_c_long] = ACTIONS(4043), + [anon_sym_c_ulong] = ACTIONS(4043), + [anon_sym_c_longlong] = ACTIONS(4043), + [anon_sym_c_ulonglong] = ACTIONS(4043), + [anon_sym_c_float] = ACTIONS(4043), + [anon_sym_c_double] = ACTIONS(4043), + [anon_sym_c_longdouble] = ACTIONS(4043), + [anon_sym_return] = ACTIONS(4043), + [anon_sym_yield] = ACTIONS(4043), + [anon_sym_break] = ACTIONS(4043), + [anon_sym_continue] = ACTIONS(4043), + [anon_sym_defer] = ACTIONS(4043), + [anon_sym_errdefer] = ACTIONS(4043), + [anon_sym_if] = ACTIONS(4043), + [anon_sym_else] = ACTIONS(4043), + [anon_sym_while] = ACTIONS(4043), + [anon_sym_expand] = ACTIONS(4043), + [anon_sym_for] = ACTIONS(4043), + [anon_sym_match] = ACTIONS(4043), + [anon_sym_AMP] = ACTIONS(4041), + [anon_sym_TILDE] = ACTIONS(4041), + [anon_sym_try] = ACTIONS(4043), + [anon_sym_DOT] = ACTIONS(4041), + [anon_sym_true] = ACTIONS(4043), + [anon_sym_false] = ACTIONS(4043), + [sym_none] = ACTIONS(4043), + [sym_undefined] = ACTIONS(4043), + [sym_sink] = ACTIONS(4043), + [sym_integer] = ACTIONS(4043), + [sym_float] = ACTIONS(4041), + [anon_sym_DQUOTE] = ACTIONS(4041), + [sym_multiline_string] = ACTIONS(4041), + [sym_character] = ACTIONS(4041), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4041), + }, + [STATE(1696)] = { + [ts_builtin_sym_end] = ACTIONS(4045), + [sym_identifier] = ACTIONS(4047), + [anon_sym_import] = ACTIONS(4047), + [anon_sym_test] = ACTIONS(4047), + [anon_sym_hide] = ACTIONS(4047), + [anon_sym_func] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4045), + [anon_sym_struct] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4045), + [anon_sym_RPAREN] = ACTIONS(4045), + [anon_sym_LBRACE] = ACTIONS(4045), + [anon_sym_RBRACE] = ACTIONS(4045), + [anon_sym_DASH] = ACTIONS(4045), + [anon_sym_DOLLAR] = ACTIONS(4045), + [anon_sym_LBRACK] = ACTIONS(4045), + [anon_sym_void] = ACTIONS(4047), + [anon_sym_anyopaque] = ACTIONS(4047), + [anon_sym_bool] = ACTIONS(4047), + [anon_sym_int] = ACTIONS(4047), + [anon_sym_uint] = ACTIONS(4047), + [anon_sym_float] = ACTIONS(4047), + [anon_sym_range] = ACTIONS(4047), + [anon_sym_i8] = ACTIONS(4047), + [anon_sym_i16] = ACTIONS(4047), + [anon_sym_i32] = ACTIONS(4047), + [anon_sym_i64] = ACTIONS(4047), + [anon_sym_u8] = ACTIONS(4047), + [anon_sym_u16] = ACTIONS(4047), + [anon_sym_u32] = ACTIONS(4047), + [anon_sym_u64] = ACTIONS(4047), + [anon_sym_isize] = ACTIONS(4047), + [anon_sym_usize] = ACTIONS(4047), + [anon_sym_f32] = ACTIONS(4047), + [anon_sym_f64] = ACTIONS(4047), + [anon_sym_c_char] = ACTIONS(4047), + [anon_sym_c_schar] = ACTIONS(4047), + [anon_sym_c_uchar] = ACTIONS(4047), + [anon_sym_c_short] = ACTIONS(4047), + [anon_sym_c_ushort] = ACTIONS(4047), + [anon_sym_c_int] = ACTIONS(4047), + [anon_sym_c_uint] = ACTIONS(4047), + [anon_sym_c_long] = ACTIONS(4047), + [anon_sym_c_ulong] = ACTIONS(4047), + [anon_sym_c_longlong] = ACTIONS(4047), + [anon_sym_c_ulonglong] = ACTIONS(4047), + [anon_sym_c_float] = ACTIONS(4047), + [anon_sym_c_double] = ACTIONS(4047), + [anon_sym_c_longdouble] = ACTIONS(4047), + [anon_sym_return] = ACTIONS(4047), + [anon_sym_yield] = ACTIONS(4047), + [anon_sym_break] = ACTIONS(4047), + [anon_sym_continue] = ACTIONS(4047), + [anon_sym_defer] = ACTIONS(4047), + [anon_sym_errdefer] = ACTIONS(4047), + [anon_sym_if] = ACTIONS(4047), + [anon_sym_else] = ACTIONS(4047), + [anon_sym_while] = ACTIONS(4047), + [anon_sym_expand] = ACTIONS(4047), + [anon_sym_for] = ACTIONS(4047), + [anon_sym_match] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4045), + [anon_sym_TILDE] = ACTIONS(4045), + [anon_sym_try] = ACTIONS(4047), + [anon_sym_DOT] = ACTIONS(4045), + [anon_sym_true] = ACTIONS(4047), + [anon_sym_false] = ACTIONS(4047), + [sym_none] = ACTIONS(4047), + [sym_undefined] = ACTIONS(4047), + [sym_sink] = ACTIONS(4047), + [sym_integer] = ACTIONS(4047), + [sym_float] = ACTIONS(4045), + [anon_sym_DQUOTE] = ACTIONS(4045), + [sym_multiline_string] = ACTIONS(4045), + [sym_character] = ACTIONS(4045), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4045), + }, + [STATE(1697)] = { + [ts_builtin_sym_end] = ACTIONS(4049), + [sym_identifier] = ACTIONS(4051), + [anon_sym_import] = ACTIONS(4051), + [anon_sym_test] = ACTIONS(4051), + [anon_sym_hide] = ACTIONS(4051), + [anon_sym_func] = ACTIONS(4051), + [anon_sym_BANG] = ACTIONS(4049), + [anon_sym_struct] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym_RPAREN] = ACTIONS(4049), + [anon_sym_LBRACE] = ACTIONS(4049), + [anon_sym_RBRACE] = ACTIONS(4049), + [anon_sym_DASH] = ACTIONS(4049), + [anon_sym_DOLLAR] = ACTIONS(4049), + [anon_sym_LBRACK] = ACTIONS(4049), + [anon_sym_void] = ACTIONS(4051), + [anon_sym_anyopaque] = ACTIONS(4051), + [anon_sym_bool] = ACTIONS(4051), + [anon_sym_int] = ACTIONS(4051), + [anon_sym_uint] = ACTIONS(4051), + [anon_sym_float] = ACTIONS(4051), + [anon_sym_range] = ACTIONS(4051), + [anon_sym_i8] = ACTIONS(4051), + [anon_sym_i16] = ACTIONS(4051), + [anon_sym_i32] = ACTIONS(4051), + [anon_sym_i64] = ACTIONS(4051), + [anon_sym_u8] = ACTIONS(4051), + [anon_sym_u16] = ACTIONS(4051), + [anon_sym_u32] = ACTIONS(4051), + [anon_sym_u64] = ACTIONS(4051), + [anon_sym_isize] = ACTIONS(4051), + [anon_sym_usize] = ACTIONS(4051), + [anon_sym_f32] = ACTIONS(4051), + [anon_sym_f64] = ACTIONS(4051), + [anon_sym_c_char] = ACTIONS(4051), + [anon_sym_c_schar] = ACTIONS(4051), + [anon_sym_c_uchar] = ACTIONS(4051), + [anon_sym_c_short] = ACTIONS(4051), + [anon_sym_c_ushort] = ACTIONS(4051), + [anon_sym_c_int] = ACTIONS(4051), + [anon_sym_c_uint] = ACTIONS(4051), + [anon_sym_c_long] = ACTIONS(4051), + [anon_sym_c_ulong] = ACTIONS(4051), + [anon_sym_c_longlong] = ACTIONS(4051), + [anon_sym_c_ulonglong] = ACTIONS(4051), + [anon_sym_c_float] = ACTIONS(4051), + [anon_sym_c_double] = ACTIONS(4051), + [anon_sym_c_longdouble] = ACTIONS(4051), + [anon_sym_return] = ACTIONS(4051), + [anon_sym_yield] = ACTIONS(4051), + [anon_sym_break] = ACTIONS(4051), + [anon_sym_continue] = ACTIONS(4051), + [anon_sym_defer] = ACTIONS(4051), + [anon_sym_errdefer] = ACTIONS(4051), + [anon_sym_if] = ACTIONS(4051), + [anon_sym_else] = ACTIONS(4051), + [anon_sym_while] = ACTIONS(4051), + [anon_sym_expand] = ACTIONS(4051), + [anon_sym_for] = ACTIONS(4051), + [anon_sym_match] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4049), + [anon_sym_TILDE] = ACTIONS(4049), + [anon_sym_try] = ACTIONS(4051), + [anon_sym_DOT] = ACTIONS(4049), + [anon_sym_true] = ACTIONS(4051), + [anon_sym_false] = ACTIONS(4051), + [sym_none] = ACTIONS(4051), + [sym_undefined] = ACTIONS(4051), + [sym_sink] = ACTIONS(4051), + [sym_integer] = ACTIONS(4051), + [sym_float] = ACTIONS(4049), + [anon_sym_DQUOTE] = ACTIONS(4049), + [sym_multiline_string] = ACTIONS(4049), + [sym_character] = ACTIONS(4049), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4049), + }, + [STATE(1698)] = { + [ts_builtin_sym_end] = ACTIONS(4053), + [sym_identifier] = ACTIONS(4055), + [anon_sym_import] = ACTIONS(4055), + [anon_sym_test] = ACTIONS(4055), + [anon_sym_hide] = ACTIONS(4055), + [anon_sym_func] = ACTIONS(4055), + [anon_sym_BANG] = ACTIONS(4053), + [anon_sym_struct] = ACTIONS(4055), + [anon_sym_LPAREN] = ACTIONS(4053), + [anon_sym_RPAREN] = ACTIONS(4053), + [anon_sym_LBRACE] = ACTIONS(4053), + [anon_sym_RBRACE] = ACTIONS(4053), + [anon_sym_DASH] = ACTIONS(4053), + [anon_sym_DOLLAR] = ACTIONS(4053), + [anon_sym_LBRACK] = ACTIONS(4053), + [anon_sym_void] = ACTIONS(4055), + [anon_sym_anyopaque] = ACTIONS(4055), + [anon_sym_bool] = ACTIONS(4055), + [anon_sym_int] = ACTIONS(4055), + [anon_sym_uint] = ACTIONS(4055), + [anon_sym_float] = ACTIONS(4055), + [anon_sym_range] = ACTIONS(4055), + [anon_sym_i8] = ACTIONS(4055), + [anon_sym_i16] = ACTIONS(4055), + [anon_sym_i32] = ACTIONS(4055), + [anon_sym_i64] = ACTIONS(4055), + [anon_sym_u8] = ACTIONS(4055), + [anon_sym_u16] = ACTIONS(4055), + [anon_sym_u32] = ACTIONS(4055), + [anon_sym_u64] = ACTIONS(4055), + [anon_sym_isize] = ACTIONS(4055), + [anon_sym_usize] = ACTIONS(4055), + [anon_sym_f32] = ACTIONS(4055), + [anon_sym_f64] = ACTIONS(4055), + [anon_sym_c_char] = ACTIONS(4055), + [anon_sym_c_schar] = ACTIONS(4055), + [anon_sym_c_uchar] = ACTIONS(4055), + [anon_sym_c_short] = ACTIONS(4055), + [anon_sym_c_ushort] = ACTIONS(4055), + [anon_sym_c_int] = ACTIONS(4055), + [anon_sym_c_uint] = ACTIONS(4055), + [anon_sym_c_long] = ACTIONS(4055), + [anon_sym_c_ulong] = ACTIONS(4055), + [anon_sym_c_longlong] = ACTIONS(4055), + [anon_sym_c_ulonglong] = ACTIONS(4055), + [anon_sym_c_float] = ACTIONS(4055), + [anon_sym_c_double] = ACTIONS(4055), + [anon_sym_c_longdouble] = ACTIONS(4055), + [anon_sym_return] = ACTIONS(4055), + [anon_sym_yield] = ACTIONS(4055), + [anon_sym_break] = ACTIONS(4055), + [anon_sym_continue] = ACTIONS(4055), + [anon_sym_defer] = ACTIONS(4055), + [anon_sym_errdefer] = ACTIONS(4055), + [anon_sym_if] = ACTIONS(4055), + [anon_sym_else] = ACTIONS(4055), + [anon_sym_while] = ACTIONS(4055), + [anon_sym_expand] = ACTIONS(4055), + [anon_sym_for] = ACTIONS(4055), + [anon_sym_match] = ACTIONS(4055), + [anon_sym_AMP] = ACTIONS(4053), + [anon_sym_TILDE] = ACTIONS(4053), + [anon_sym_try] = ACTIONS(4055), + [anon_sym_DOT] = ACTIONS(4053), + [anon_sym_true] = ACTIONS(4055), + [anon_sym_false] = ACTIONS(4055), + [sym_none] = ACTIONS(4055), + [sym_undefined] = ACTIONS(4055), + [sym_sink] = ACTIONS(4055), + [sym_integer] = ACTIONS(4055), + [sym_float] = ACTIONS(4053), + [anon_sym_DQUOTE] = ACTIONS(4053), + [sym_multiline_string] = ACTIONS(4053), + [sym_character] = ACTIONS(4053), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4053), + }, + [STATE(1699)] = { + [ts_builtin_sym_end] = ACTIONS(4057), + [sym_identifier] = ACTIONS(4059), + [anon_sym_import] = ACTIONS(4059), + [anon_sym_test] = ACTIONS(4059), + [anon_sym_hide] = ACTIONS(4059), + [anon_sym_func] = ACTIONS(4059), + [anon_sym_BANG] = ACTIONS(4057), + [anon_sym_struct] = ACTIONS(4059), + [anon_sym_LPAREN] = ACTIONS(4057), + [anon_sym_RPAREN] = ACTIONS(4057), + [anon_sym_LBRACE] = ACTIONS(4057), + [anon_sym_RBRACE] = ACTIONS(4057), + [anon_sym_DASH] = ACTIONS(4057), + [anon_sym_DOLLAR] = ACTIONS(4057), + [anon_sym_LBRACK] = ACTIONS(4057), + [anon_sym_void] = ACTIONS(4059), + [anon_sym_anyopaque] = ACTIONS(4059), + [anon_sym_bool] = ACTIONS(4059), + [anon_sym_int] = ACTIONS(4059), + [anon_sym_uint] = ACTIONS(4059), + [anon_sym_float] = ACTIONS(4059), + [anon_sym_range] = ACTIONS(4059), + [anon_sym_i8] = ACTIONS(4059), + [anon_sym_i16] = ACTIONS(4059), + [anon_sym_i32] = ACTIONS(4059), + [anon_sym_i64] = ACTIONS(4059), + [anon_sym_u8] = ACTIONS(4059), + [anon_sym_u16] = ACTIONS(4059), + [anon_sym_u32] = ACTIONS(4059), + [anon_sym_u64] = ACTIONS(4059), + [anon_sym_isize] = ACTIONS(4059), + [anon_sym_usize] = ACTIONS(4059), + [anon_sym_f32] = ACTIONS(4059), + [anon_sym_f64] = ACTIONS(4059), + [anon_sym_c_char] = ACTIONS(4059), + [anon_sym_c_schar] = ACTIONS(4059), + [anon_sym_c_uchar] = ACTIONS(4059), + [anon_sym_c_short] = ACTIONS(4059), + [anon_sym_c_ushort] = ACTIONS(4059), + [anon_sym_c_int] = ACTIONS(4059), + [anon_sym_c_uint] = ACTIONS(4059), + [anon_sym_c_long] = ACTIONS(4059), + [anon_sym_c_ulong] = ACTIONS(4059), + [anon_sym_c_longlong] = ACTIONS(4059), + [anon_sym_c_ulonglong] = ACTIONS(4059), + [anon_sym_c_float] = ACTIONS(4059), + [anon_sym_c_double] = ACTIONS(4059), + [anon_sym_c_longdouble] = ACTIONS(4059), + [anon_sym_return] = ACTIONS(4059), + [anon_sym_yield] = ACTIONS(4059), + [anon_sym_break] = ACTIONS(4059), + [anon_sym_continue] = ACTIONS(4059), + [anon_sym_defer] = ACTIONS(4059), + [anon_sym_errdefer] = ACTIONS(4059), + [anon_sym_if] = ACTIONS(4059), + [anon_sym_else] = ACTIONS(4059), + [anon_sym_while] = ACTIONS(4059), + [anon_sym_expand] = ACTIONS(4059), + [anon_sym_for] = ACTIONS(4059), + [anon_sym_match] = ACTIONS(4059), + [anon_sym_AMP] = ACTIONS(4057), + [anon_sym_TILDE] = ACTIONS(4057), + [anon_sym_try] = ACTIONS(4059), + [anon_sym_DOT] = ACTIONS(4057), + [anon_sym_true] = ACTIONS(4059), + [anon_sym_false] = ACTIONS(4059), + [sym_none] = ACTIONS(4059), + [sym_undefined] = ACTIONS(4059), + [sym_sink] = ACTIONS(4059), + [sym_integer] = ACTIONS(4059), + [sym_float] = ACTIONS(4057), + [anon_sym_DQUOTE] = ACTIONS(4057), + [sym_multiline_string] = ACTIONS(4057), + [sym_character] = ACTIONS(4057), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4057), + }, + [STATE(1700)] = { + [ts_builtin_sym_end] = ACTIONS(4061), + [sym_identifier] = ACTIONS(4063), + [anon_sym_import] = ACTIONS(4063), + [anon_sym_test] = ACTIONS(4063), + [anon_sym_hide] = ACTIONS(4063), + [anon_sym_func] = ACTIONS(4063), + [anon_sym_BANG] = ACTIONS(4061), + [anon_sym_struct] = ACTIONS(4063), + [anon_sym_LPAREN] = ACTIONS(4061), + [anon_sym_RPAREN] = ACTIONS(4061), + [anon_sym_LBRACE] = ACTIONS(4061), + [anon_sym_RBRACE] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4061), + [anon_sym_DOLLAR] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(4061), + [anon_sym_void] = ACTIONS(4063), + [anon_sym_anyopaque] = ACTIONS(4063), + [anon_sym_bool] = ACTIONS(4063), + [anon_sym_int] = ACTIONS(4063), + [anon_sym_uint] = ACTIONS(4063), + [anon_sym_float] = ACTIONS(4063), + [anon_sym_range] = ACTIONS(4063), + [anon_sym_i8] = ACTIONS(4063), + [anon_sym_i16] = ACTIONS(4063), + [anon_sym_i32] = ACTIONS(4063), + [anon_sym_i64] = ACTIONS(4063), + [anon_sym_u8] = ACTIONS(4063), + [anon_sym_u16] = ACTIONS(4063), + [anon_sym_u32] = ACTIONS(4063), + [anon_sym_u64] = ACTIONS(4063), + [anon_sym_isize] = ACTIONS(4063), + [anon_sym_usize] = ACTIONS(4063), + [anon_sym_f32] = ACTIONS(4063), + [anon_sym_f64] = ACTIONS(4063), + [anon_sym_c_char] = ACTIONS(4063), + [anon_sym_c_schar] = ACTIONS(4063), + [anon_sym_c_uchar] = ACTIONS(4063), + [anon_sym_c_short] = ACTIONS(4063), + [anon_sym_c_ushort] = ACTIONS(4063), + [anon_sym_c_int] = ACTIONS(4063), + [anon_sym_c_uint] = ACTIONS(4063), + [anon_sym_c_long] = ACTIONS(4063), + [anon_sym_c_ulong] = ACTIONS(4063), + [anon_sym_c_longlong] = ACTIONS(4063), + [anon_sym_c_ulonglong] = ACTIONS(4063), + [anon_sym_c_float] = ACTIONS(4063), + [anon_sym_c_double] = ACTIONS(4063), + [anon_sym_c_longdouble] = ACTIONS(4063), + [anon_sym_return] = ACTIONS(4063), + [anon_sym_yield] = ACTIONS(4063), + [anon_sym_break] = ACTIONS(4063), + [anon_sym_continue] = ACTIONS(4063), + [anon_sym_defer] = ACTIONS(4063), + [anon_sym_errdefer] = ACTIONS(4063), + [anon_sym_if] = ACTIONS(4063), + [anon_sym_else] = ACTIONS(4063), + [anon_sym_while] = ACTIONS(4063), + [anon_sym_expand] = ACTIONS(4063), + [anon_sym_for] = ACTIONS(4063), + [anon_sym_match] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(4061), + [anon_sym_TILDE] = ACTIONS(4061), + [anon_sym_try] = ACTIONS(4063), + [anon_sym_DOT] = ACTIONS(4061), + [anon_sym_true] = ACTIONS(4063), + [anon_sym_false] = ACTIONS(4063), + [sym_none] = ACTIONS(4063), + [sym_undefined] = ACTIONS(4063), + [sym_sink] = ACTIONS(4063), + [sym_integer] = ACTIONS(4063), + [sym_float] = ACTIONS(4061), + [anon_sym_DQUOTE] = ACTIONS(4061), + [sym_multiline_string] = ACTIONS(4061), + [sym_character] = ACTIONS(4061), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4061), + }, + [STATE(1701)] = { + [ts_builtin_sym_end] = ACTIONS(4065), + [sym_identifier] = ACTIONS(4067), + [anon_sym_import] = ACTIONS(4067), + [anon_sym_test] = ACTIONS(4067), + [anon_sym_hide] = ACTIONS(4067), + [anon_sym_func] = ACTIONS(4067), + [anon_sym_BANG] = ACTIONS(4065), + [anon_sym_struct] = ACTIONS(4067), + [anon_sym_LPAREN] = ACTIONS(4065), + [anon_sym_RPAREN] = ACTIONS(4065), + [anon_sym_LBRACE] = ACTIONS(4065), + [anon_sym_RBRACE] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [anon_sym_DOLLAR] = ACTIONS(4065), + [anon_sym_LBRACK] = ACTIONS(4065), + [anon_sym_void] = ACTIONS(4067), + [anon_sym_anyopaque] = ACTIONS(4067), + [anon_sym_bool] = ACTIONS(4067), + [anon_sym_int] = ACTIONS(4067), + [anon_sym_uint] = ACTIONS(4067), + [anon_sym_float] = ACTIONS(4067), + [anon_sym_range] = ACTIONS(4067), + [anon_sym_i8] = ACTIONS(4067), + [anon_sym_i16] = ACTIONS(4067), + [anon_sym_i32] = ACTIONS(4067), + [anon_sym_i64] = ACTIONS(4067), + [anon_sym_u8] = ACTIONS(4067), + [anon_sym_u16] = ACTIONS(4067), + [anon_sym_u32] = ACTIONS(4067), + [anon_sym_u64] = ACTIONS(4067), + [anon_sym_isize] = ACTIONS(4067), + [anon_sym_usize] = ACTIONS(4067), + [anon_sym_f32] = ACTIONS(4067), + [anon_sym_f64] = ACTIONS(4067), + [anon_sym_c_char] = ACTIONS(4067), + [anon_sym_c_schar] = ACTIONS(4067), + [anon_sym_c_uchar] = ACTIONS(4067), + [anon_sym_c_short] = ACTIONS(4067), + [anon_sym_c_ushort] = ACTIONS(4067), + [anon_sym_c_int] = ACTIONS(4067), + [anon_sym_c_uint] = ACTIONS(4067), + [anon_sym_c_long] = ACTIONS(4067), + [anon_sym_c_ulong] = ACTIONS(4067), + [anon_sym_c_longlong] = ACTIONS(4067), + [anon_sym_c_ulonglong] = ACTIONS(4067), + [anon_sym_c_float] = ACTIONS(4067), + [anon_sym_c_double] = ACTIONS(4067), + [anon_sym_c_longdouble] = ACTIONS(4067), + [anon_sym_return] = ACTIONS(4067), + [anon_sym_yield] = ACTIONS(4067), + [anon_sym_break] = ACTIONS(4067), + [anon_sym_continue] = ACTIONS(4067), + [anon_sym_defer] = ACTIONS(4067), + [anon_sym_errdefer] = ACTIONS(4067), + [anon_sym_if] = ACTIONS(4067), + [anon_sym_else] = ACTIONS(4067), + [anon_sym_while] = ACTIONS(4067), + [anon_sym_expand] = ACTIONS(4067), + [anon_sym_for] = ACTIONS(4067), + [anon_sym_match] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(4065), + [anon_sym_TILDE] = ACTIONS(4065), + [anon_sym_try] = ACTIONS(4067), + [anon_sym_DOT] = ACTIONS(4065), + [anon_sym_true] = ACTIONS(4067), + [anon_sym_false] = ACTIONS(4067), + [sym_none] = ACTIONS(4067), + [sym_undefined] = ACTIONS(4067), + [sym_sink] = ACTIONS(4067), + [sym_integer] = ACTIONS(4067), + [sym_float] = ACTIONS(4065), + [anon_sym_DQUOTE] = ACTIONS(4065), + [sym_multiline_string] = ACTIONS(4065), + [sym_character] = ACTIONS(4065), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4065), + }, + [STATE(1702)] = { + [ts_builtin_sym_end] = ACTIONS(4069), + [sym_identifier] = ACTIONS(4071), + [anon_sym_import] = ACTIONS(4071), + [anon_sym_test] = ACTIONS(4071), + [anon_sym_hide] = ACTIONS(4071), + [anon_sym_func] = ACTIONS(4071), + [anon_sym_BANG] = ACTIONS(4069), + [anon_sym_struct] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(4069), + [anon_sym_RPAREN] = ACTIONS(4069), + [anon_sym_LBRACE] = ACTIONS(4069), + [anon_sym_RBRACE] = ACTIONS(4069), + [anon_sym_DASH] = ACTIONS(4069), + [anon_sym_DOLLAR] = ACTIONS(4069), + [anon_sym_LBRACK] = ACTIONS(4069), + [anon_sym_void] = ACTIONS(4071), + [anon_sym_anyopaque] = ACTIONS(4071), + [anon_sym_bool] = ACTIONS(4071), + [anon_sym_int] = ACTIONS(4071), + [anon_sym_uint] = ACTIONS(4071), + [anon_sym_float] = ACTIONS(4071), + [anon_sym_range] = ACTIONS(4071), + [anon_sym_i8] = ACTIONS(4071), + [anon_sym_i16] = ACTIONS(4071), + [anon_sym_i32] = ACTIONS(4071), + [anon_sym_i64] = ACTIONS(4071), + [anon_sym_u8] = ACTIONS(4071), + [anon_sym_u16] = ACTIONS(4071), + [anon_sym_u32] = ACTIONS(4071), + [anon_sym_u64] = ACTIONS(4071), + [anon_sym_isize] = ACTIONS(4071), + [anon_sym_usize] = ACTIONS(4071), + [anon_sym_f32] = ACTIONS(4071), + [anon_sym_f64] = ACTIONS(4071), + [anon_sym_c_char] = ACTIONS(4071), + [anon_sym_c_schar] = ACTIONS(4071), + [anon_sym_c_uchar] = ACTIONS(4071), + [anon_sym_c_short] = ACTIONS(4071), + [anon_sym_c_ushort] = ACTIONS(4071), + [anon_sym_c_int] = ACTIONS(4071), + [anon_sym_c_uint] = ACTIONS(4071), + [anon_sym_c_long] = ACTIONS(4071), + [anon_sym_c_ulong] = ACTIONS(4071), + [anon_sym_c_longlong] = ACTIONS(4071), + [anon_sym_c_ulonglong] = ACTIONS(4071), + [anon_sym_c_float] = ACTIONS(4071), + [anon_sym_c_double] = ACTIONS(4071), + [anon_sym_c_longdouble] = ACTIONS(4071), + [anon_sym_return] = ACTIONS(4071), + [anon_sym_yield] = ACTIONS(4071), + [anon_sym_break] = ACTIONS(4071), + [anon_sym_continue] = ACTIONS(4071), + [anon_sym_defer] = ACTIONS(4071), + [anon_sym_errdefer] = ACTIONS(4071), + [anon_sym_if] = ACTIONS(4071), + [anon_sym_else] = ACTIONS(4071), + [anon_sym_while] = ACTIONS(4071), + [anon_sym_expand] = ACTIONS(4071), + [anon_sym_for] = ACTIONS(4071), + [anon_sym_match] = ACTIONS(4071), + [anon_sym_AMP] = ACTIONS(4069), + [anon_sym_TILDE] = ACTIONS(4069), + [anon_sym_try] = ACTIONS(4071), + [anon_sym_DOT] = ACTIONS(4069), + [anon_sym_true] = ACTIONS(4071), + [anon_sym_false] = ACTIONS(4071), + [sym_none] = ACTIONS(4071), + [sym_undefined] = ACTIONS(4071), + [sym_sink] = ACTIONS(4071), + [sym_integer] = ACTIONS(4071), + [sym_float] = ACTIONS(4069), + [anon_sym_DQUOTE] = ACTIONS(4069), + [sym_multiline_string] = ACTIONS(4069), + [sym_character] = ACTIONS(4069), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4069), + }, + [STATE(1703)] = { + [ts_builtin_sym_end] = ACTIONS(4073), + [sym_identifier] = ACTIONS(4075), + [anon_sym_import] = ACTIONS(4075), + [anon_sym_test] = ACTIONS(4075), + [anon_sym_hide] = ACTIONS(4075), + [anon_sym_func] = ACTIONS(4075), + [anon_sym_BANG] = ACTIONS(4073), + [anon_sym_struct] = ACTIONS(4075), + [anon_sym_LPAREN] = ACTIONS(4073), + [anon_sym_RPAREN] = ACTIONS(4073), + [anon_sym_LBRACE] = ACTIONS(4073), + [anon_sym_RBRACE] = ACTIONS(4073), + [anon_sym_DASH] = ACTIONS(4073), + [anon_sym_DOLLAR] = ACTIONS(4073), + [anon_sym_LBRACK] = ACTIONS(4073), + [anon_sym_void] = ACTIONS(4075), + [anon_sym_anyopaque] = ACTIONS(4075), + [anon_sym_bool] = ACTIONS(4075), + [anon_sym_int] = ACTIONS(4075), + [anon_sym_uint] = ACTIONS(4075), + [anon_sym_float] = ACTIONS(4075), + [anon_sym_range] = ACTIONS(4075), + [anon_sym_i8] = ACTIONS(4075), + [anon_sym_i16] = ACTIONS(4075), + [anon_sym_i32] = ACTIONS(4075), + [anon_sym_i64] = ACTIONS(4075), + [anon_sym_u8] = ACTIONS(4075), + [anon_sym_u16] = ACTIONS(4075), + [anon_sym_u32] = ACTIONS(4075), + [anon_sym_u64] = ACTIONS(4075), + [anon_sym_isize] = ACTIONS(4075), + [anon_sym_usize] = ACTIONS(4075), + [anon_sym_f32] = ACTIONS(4075), + [anon_sym_f64] = ACTIONS(4075), + [anon_sym_c_char] = ACTIONS(4075), + [anon_sym_c_schar] = ACTIONS(4075), + [anon_sym_c_uchar] = ACTIONS(4075), + [anon_sym_c_short] = ACTIONS(4075), + [anon_sym_c_ushort] = ACTIONS(4075), + [anon_sym_c_int] = ACTIONS(4075), + [anon_sym_c_uint] = ACTIONS(4075), + [anon_sym_c_long] = ACTIONS(4075), + [anon_sym_c_ulong] = ACTIONS(4075), + [anon_sym_c_longlong] = ACTIONS(4075), + [anon_sym_c_ulonglong] = ACTIONS(4075), + [anon_sym_c_float] = ACTIONS(4075), + [anon_sym_c_double] = ACTIONS(4075), + [anon_sym_c_longdouble] = ACTIONS(4075), + [anon_sym_return] = ACTIONS(4075), + [anon_sym_yield] = ACTIONS(4075), + [anon_sym_break] = ACTIONS(4075), + [anon_sym_continue] = ACTIONS(4075), + [anon_sym_defer] = ACTIONS(4075), + [anon_sym_errdefer] = ACTIONS(4075), + [anon_sym_if] = ACTIONS(4075), + [anon_sym_else] = ACTIONS(4075), + [anon_sym_while] = ACTIONS(4075), + [anon_sym_expand] = ACTIONS(4075), + [anon_sym_for] = ACTIONS(4075), + [anon_sym_match] = ACTIONS(4075), + [anon_sym_AMP] = ACTIONS(4073), + [anon_sym_TILDE] = ACTIONS(4073), + [anon_sym_try] = ACTIONS(4075), + [anon_sym_DOT] = ACTIONS(4073), + [anon_sym_true] = ACTIONS(4075), + [anon_sym_false] = ACTIONS(4075), + [sym_none] = ACTIONS(4075), + [sym_undefined] = ACTIONS(4075), + [sym_sink] = ACTIONS(4075), + [sym_integer] = ACTIONS(4075), + [sym_float] = ACTIONS(4073), + [anon_sym_DQUOTE] = ACTIONS(4073), + [sym_multiline_string] = ACTIONS(4073), + [sym_character] = ACTIONS(4073), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4073), + }, + [STATE(1704)] = { + [ts_builtin_sym_end] = ACTIONS(4077), + [sym_identifier] = ACTIONS(4079), + [anon_sym_import] = ACTIONS(4079), + [anon_sym_test] = ACTIONS(4079), + [anon_sym_hide] = ACTIONS(4079), + [anon_sym_func] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_struct] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4077), + [anon_sym_RPAREN] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4077), + [anon_sym_RBRACE] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_DOLLAR] = ACTIONS(4077), + [anon_sym_LBRACK] = ACTIONS(4077), + [anon_sym_void] = ACTIONS(4079), + [anon_sym_anyopaque] = ACTIONS(4079), + [anon_sym_bool] = ACTIONS(4079), + [anon_sym_int] = ACTIONS(4079), + [anon_sym_uint] = ACTIONS(4079), + [anon_sym_float] = ACTIONS(4079), + [anon_sym_range] = ACTIONS(4079), + [anon_sym_i8] = ACTIONS(4079), + [anon_sym_i16] = ACTIONS(4079), + [anon_sym_i32] = ACTIONS(4079), + [anon_sym_i64] = ACTIONS(4079), + [anon_sym_u8] = ACTIONS(4079), + [anon_sym_u16] = ACTIONS(4079), + [anon_sym_u32] = ACTIONS(4079), + [anon_sym_u64] = ACTIONS(4079), + [anon_sym_isize] = ACTIONS(4079), + [anon_sym_usize] = ACTIONS(4079), + [anon_sym_f32] = ACTIONS(4079), + [anon_sym_f64] = ACTIONS(4079), + [anon_sym_c_char] = ACTIONS(4079), + [anon_sym_c_schar] = ACTIONS(4079), + [anon_sym_c_uchar] = ACTIONS(4079), + [anon_sym_c_short] = ACTIONS(4079), + [anon_sym_c_ushort] = ACTIONS(4079), + [anon_sym_c_int] = ACTIONS(4079), + [anon_sym_c_uint] = ACTIONS(4079), + [anon_sym_c_long] = ACTIONS(4079), + [anon_sym_c_ulong] = ACTIONS(4079), + [anon_sym_c_longlong] = ACTIONS(4079), + [anon_sym_c_ulonglong] = ACTIONS(4079), + [anon_sym_c_float] = ACTIONS(4079), + [anon_sym_c_double] = ACTIONS(4079), + [anon_sym_c_longdouble] = ACTIONS(4079), + [anon_sym_return] = ACTIONS(4079), + [anon_sym_yield] = ACTIONS(4079), + [anon_sym_break] = ACTIONS(4079), + [anon_sym_continue] = ACTIONS(4079), + [anon_sym_defer] = ACTIONS(4079), + [anon_sym_errdefer] = ACTIONS(4079), + [anon_sym_if] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4079), + [anon_sym_while] = ACTIONS(4079), + [anon_sym_expand] = ACTIONS(4079), + [anon_sym_for] = ACTIONS(4079), + [anon_sym_match] = ACTIONS(4079), + [anon_sym_AMP] = ACTIONS(4077), + [anon_sym_TILDE] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_true] = ACTIONS(4079), + [anon_sym_false] = ACTIONS(4079), + [sym_none] = ACTIONS(4079), + [sym_undefined] = ACTIONS(4079), + [sym_sink] = ACTIONS(4079), + [sym_integer] = ACTIONS(4079), + [sym_float] = ACTIONS(4077), + [anon_sym_DQUOTE] = ACTIONS(4077), + [sym_multiline_string] = ACTIONS(4077), + [sym_character] = ACTIONS(4077), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4077), + }, + [STATE(1705)] = { + [ts_builtin_sym_end] = ACTIONS(4081), + [sym_identifier] = ACTIONS(4083), + [anon_sym_import] = ACTIONS(4083), + [anon_sym_test] = ACTIONS(4083), + [anon_sym_hide] = ACTIONS(4083), + [anon_sym_func] = ACTIONS(4083), + [anon_sym_BANG] = ACTIONS(4081), + [anon_sym_struct] = ACTIONS(4083), + [anon_sym_LPAREN] = ACTIONS(4081), + [anon_sym_RPAREN] = ACTIONS(4081), + [anon_sym_LBRACE] = ACTIONS(4081), + [anon_sym_RBRACE] = ACTIONS(4081), + [anon_sym_DASH] = ACTIONS(4081), + [anon_sym_DOLLAR] = ACTIONS(4081), + [anon_sym_LBRACK] = ACTIONS(4081), + [anon_sym_void] = ACTIONS(4083), + [anon_sym_anyopaque] = ACTIONS(4083), + [anon_sym_bool] = ACTIONS(4083), + [anon_sym_int] = ACTIONS(4083), + [anon_sym_uint] = ACTIONS(4083), + [anon_sym_float] = ACTIONS(4083), + [anon_sym_range] = ACTIONS(4083), + [anon_sym_i8] = ACTIONS(4083), + [anon_sym_i16] = ACTIONS(4083), + [anon_sym_i32] = ACTIONS(4083), + [anon_sym_i64] = ACTIONS(4083), + [anon_sym_u8] = ACTIONS(4083), + [anon_sym_u16] = ACTIONS(4083), + [anon_sym_u32] = ACTIONS(4083), + [anon_sym_u64] = ACTIONS(4083), + [anon_sym_isize] = ACTIONS(4083), + [anon_sym_usize] = ACTIONS(4083), + [anon_sym_f32] = ACTIONS(4083), + [anon_sym_f64] = ACTIONS(4083), + [anon_sym_c_char] = ACTIONS(4083), + [anon_sym_c_schar] = ACTIONS(4083), + [anon_sym_c_uchar] = ACTIONS(4083), + [anon_sym_c_short] = ACTIONS(4083), + [anon_sym_c_ushort] = ACTIONS(4083), + [anon_sym_c_int] = ACTIONS(4083), + [anon_sym_c_uint] = ACTIONS(4083), + [anon_sym_c_long] = ACTIONS(4083), + [anon_sym_c_ulong] = ACTIONS(4083), + [anon_sym_c_longlong] = ACTIONS(4083), + [anon_sym_c_ulonglong] = ACTIONS(4083), + [anon_sym_c_float] = ACTIONS(4083), + [anon_sym_c_double] = ACTIONS(4083), + [anon_sym_c_longdouble] = ACTIONS(4083), + [anon_sym_return] = ACTIONS(4083), + [anon_sym_yield] = ACTIONS(4083), + [anon_sym_break] = ACTIONS(4083), + [anon_sym_continue] = ACTIONS(4083), + [anon_sym_defer] = ACTIONS(4083), + [anon_sym_errdefer] = ACTIONS(4083), + [anon_sym_if] = ACTIONS(4083), + [anon_sym_else] = ACTIONS(4083), + [anon_sym_while] = ACTIONS(4083), + [anon_sym_expand] = ACTIONS(4083), + [anon_sym_for] = ACTIONS(4083), + [anon_sym_match] = ACTIONS(4083), + [anon_sym_AMP] = ACTIONS(4081), + [anon_sym_TILDE] = ACTIONS(4081), + [anon_sym_try] = ACTIONS(4083), + [anon_sym_DOT] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(4083), + [anon_sym_false] = ACTIONS(4083), + [sym_none] = ACTIONS(4083), + [sym_undefined] = ACTIONS(4083), + [sym_sink] = ACTIONS(4083), + [sym_integer] = ACTIONS(4083), + [sym_float] = ACTIONS(4081), + [anon_sym_DQUOTE] = ACTIONS(4081), + [sym_multiline_string] = ACTIONS(4081), + [sym_character] = ACTIONS(4081), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4081), + }, + [STATE(1706)] = { + [ts_builtin_sym_end] = ACTIONS(4085), + [sym_identifier] = ACTIONS(4087), + [anon_sym_import] = ACTIONS(4087), + [anon_sym_test] = ACTIONS(4087), + [anon_sym_hide] = ACTIONS(4087), + [anon_sym_func] = ACTIONS(4087), + [anon_sym_BANG] = ACTIONS(4085), + [anon_sym_struct] = ACTIONS(4087), + [anon_sym_LPAREN] = ACTIONS(4085), + [anon_sym_RPAREN] = ACTIONS(4085), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4085), + [anon_sym_DASH] = ACTIONS(4085), + [anon_sym_DOLLAR] = ACTIONS(4085), + [anon_sym_LBRACK] = ACTIONS(4085), + [anon_sym_void] = ACTIONS(4087), + [anon_sym_anyopaque] = ACTIONS(4087), + [anon_sym_bool] = ACTIONS(4087), + [anon_sym_int] = ACTIONS(4087), + [anon_sym_uint] = ACTIONS(4087), + [anon_sym_float] = ACTIONS(4087), + [anon_sym_range] = ACTIONS(4087), + [anon_sym_i8] = ACTIONS(4087), + [anon_sym_i16] = ACTIONS(4087), + [anon_sym_i32] = ACTIONS(4087), + [anon_sym_i64] = ACTIONS(4087), + [anon_sym_u8] = ACTIONS(4087), + [anon_sym_u16] = ACTIONS(4087), + [anon_sym_u32] = ACTIONS(4087), + [anon_sym_u64] = ACTIONS(4087), + [anon_sym_isize] = ACTIONS(4087), + [anon_sym_usize] = ACTIONS(4087), + [anon_sym_f32] = ACTIONS(4087), + [anon_sym_f64] = ACTIONS(4087), + [anon_sym_c_char] = ACTIONS(4087), + [anon_sym_c_schar] = ACTIONS(4087), + [anon_sym_c_uchar] = ACTIONS(4087), + [anon_sym_c_short] = ACTIONS(4087), + [anon_sym_c_ushort] = ACTIONS(4087), + [anon_sym_c_int] = ACTIONS(4087), + [anon_sym_c_uint] = ACTIONS(4087), + [anon_sym_c_long] = ACTIONS(4087), + [anon_sym_c_ulong] = ACTIONS(4087), + [anon_sym_c_longlong] = ACTIONS(4087), + [anon_sym_c_ulonglong] = ACTIONS(4087), + [anon_sym_c_float] = ACTIONS(4087), + [anon_sym_c_double] = ACTIONS(4087), + [anon_sym_c_longdouble] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_yield] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_defer] = ACTIONS(4087), + [anon_sym_errdefer] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_expand] = ACTIONS(4087), + [anon_sym_for] = ACTIONS(4087), + [anon_sym_match] = ACTIONS(4087), + [anon_sym_AMP] = ACTIONS(4085), + [anon_sym_TILDE] = ACTIONS(4085), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_DOT] = ACTIONS(4085), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [sym_none] = ACTIONS(4087), + [sym_undefined] = ACTIONS(4087), + [sym_sink] = ACTIONS(4087), + [sym_integer] = ACTIONS(4087), + [sym_float] = ACTIONS(4085), + [anon_sym_DQUOTE] = ACTIONS(4085), + [sym_multiline_string] = ACTIONS(4085), + [sym_character] = ACTIONS(4085), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4085), + }, + [STATE(1707)] = { + [aux_sym_import_declaration_repeat1] = STATE(3242), + [sym_identifier] = ACTIONS(4089), + [anon_sym_func] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4091), + [anon_sym_struct] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4091), + [anon_sym_void] = ACTIONS(4089), + [anon_sym_anyopaque] = ACTIONS(4089), + [anon_sym_bool] = ACTIONS(4089), + [anon_sym_int] = ACTIONS(4089), + [anon_sym_uint] = ACTIONS(4089), + [anon_sym_float] = ACTIONS(4089), + [anon_sym_range] = ACTIONS(4089), + [anon_sym_i8] = ACTIONS(4089), + [anon_sym_i16] = ACTIONS(4089), + [anon_sym_i32] = ACTIONS(4089), + [anon_sym_i64] = ACTIONS(4089), + [anon_sym_u8] = ACTIONS(4089), + [anon_sym_u16] = ACTIONS(4089), + [anon_sym_u32] = ACTIONS(4089), + [anon_sym_u64] = ACTIONS(4089), + [anon_sym_isize] = ACTIONS(4089), + [anon_sym_usize] = ACTIONS(4089), + [anon_sym_f32] = ACTIONS(4089), + [anon_sym_f64] = ACTIONS(4089), + [anon_sym_c_char] = ACTIONS(4089), + [anon_sym_c_schar] = ACTIONS(4089), + [anon_sym_c_uchar] = ACTIONS(4089), + [anon_sym_c_short] = ACTIONS(4089), + [anon_sym_c_ushort] = ACTIONS(4089), + [anon_sym_c_int] = ACTIONS(4089), + [anon_sym_c_uint] = ACTIONS(4089), + [anon_sym_c_long] = ACTIONS(4089), + [anon_sym_c_ulong] = ACTIONS(4089), + [anon_sym_c_longlong] = ACTIONS(4089), + [anon_sym_c_ulonglong] = ACTIONS(4089), + [anon_sym_c_float] = ACTIONS(4089), + [anon_sym_c_double] = ACTIONS(4089), + [anon_sym_c_longdouble] = ACTIONS(4089), + [anon_sym_return] = ACTIONS(4089), + [anon_sym_yield] = ACTIONS(4089), + [anon_sym_break] = ACTIONS(4089), + [anon_sym_continue] = ACTIONS(4089), + [anon_sym_defer] = ACTIONS(4089), + [anon_sym_errdefer] = ACTIONS(4089), + [anon_sym_if] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4089), + [anon_sym_expand] = ACTIONS(4089), + [anon_sym_for] = ACTIONS(4089), + [anon_sym_match] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + [anon_sym_TILDE] = ACTIONS(4091), + [anon_sym_try] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [sym_none] = ACTIONS(4089), + [sym_undefined] = ACTIONS(4089), + [sym_sink] = ACTIONS(4089), + [sym_integer] = ACTIONS(4089), + [sym_float] = ACTIONS(4091), + [anon_sym_DQUOTE] = ACTIONS(4091), + [sym_multiline_string] = ACTIONS(4091), + [sym_character] = ACTIONS(4091), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4096), + }, + [STATE(1708)] = { + [aux_sym_import_declaration_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(4099), + [anon_sym_func] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4101), + [anon_sym_struct] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4101), + [anon_sym_LBRACE] = ACTIONS(4101), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_DASH] = ACTIONS(4101), + [anon_sym_DOLLAR] = ACTIONS(4101), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_void] = ACTIONS(4099), + [anon_sym_anyopaque] = ACTIONS(4099), + [anon_sym_bool] = ACTIONS(4099), + [anon_sym_int] = ACTIONS(4099), + [anon_sym_uint] = ACTIONS(4099), + [anon_sym_float] = ACTIONS(4099), + [anon_sym_range] = ACTIONS(4099), + [anon_sym_i8] = ACTIONS(4099), + [anon_sym_i16] = ACTIONS(4099), + [anon_sym_i32] = ACTIONS(4099), + [anon_sym_i64] = ACTIONS(4099), + [anon_sym_u8] = ACTIONS(4099), + [anon_sym_u16] = ACTIONS(4099), + [anon_sym_u32] = ACTIONS(4099), + [anon_sym_u64] = ACTIONS(4099), + [anon_sym_isize] = ACTIONS(4099), + [anon_sym_usize] = ACTIONS(4099), + [anon_sym_f32] = ACTIONS(4099), + [anon_sym_f64] = ACTIONS(4099), + [anon_sym_c_char] = ACTIONS(4099), + [anon_sym_c_schar] = ACTIONS(4099), + [anon_sym_c_uchar] = ACTIONS(4099), + [anon_sym_c_short] = ACTIONS(4099), + [anon_sym_c_ushort] = ACTIONS(4099), + [anon_sym_c_int] = ACTIONS(4099), + [anon_sym_c_uint] = ACTIONS(4099), + [anon_sym_c_long] = ACTIONS(4099), + [anon_sym_c_ulong] = ACTIONS(4099), + [anon_sym_c_longlong] = ACTIONS(4099), + [anon_sym_c_ulonglong] = ACTIONS(4099), + [anon_sym_c_float] = ACTIONS(4099), + [anon_sym_c_double] = ACTIONS(4099), + [anon_sym_c_longdouble] = ACTIONS(4099), + [anon_sym_return] = ACTIONS(4099), + [anon_sym_yield] = ACTIONS(4099), + [anon_sym_break] = ACTIONS(4099), + [anon_sym_continue] = ACTIONS(4099), + [anon_sym_defer] = ACTIONS(4099), + [anon_sym_errdefer] = ACTIONS(4099), + [anon_sym_if] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4099), + [anon_sym_expand] = ACTIONS(4099), + [anon_sym_for] = ACTIONS(4099), + [anon_sym_match] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(4101), + [anon_sym_TILDE] = ACTIONS(4101), + [anon_sym_try] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [sym_none] = ACTIONS(4099), + [sym_undefined] = ACTIONS(4099), + [sym_sink] = ACTIONS(4099), + [sym_integer] = ACTIONS(4099), + [sym_float] = ACTIONS(4101), + [anon_sym_DQUOTE] = ACTIONS(4101), + [sym_multiline_string] = ACTIONS(4101), + [sym_character] = ACTIONS(4101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4106), + }, + [STATE(1709)] = { + [aux_sym_import_declaration_repeat1] = STATE(3183), + [sym_identifier] = ACTIONS(4099), + [anon_sym_func] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4101), + [anon_sym_struct] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4101), + [anon_sym_LBRACE] = ACTIONS(4101), + [anon_sym_RBRACE] = ACTIONS(4101), + [anon_sym_DASH] = ACTIONS(4101), + [anon_sym_DOLLAR] = ACTIONS(4101), + [anon_sym_LBRACK] = ACTIONS(4101), + [anon_sym_void] = ACTIONS(4099), + [anon_sym_anyopaque] = ACTIONS(4099), + [anon_sym_bool] = ACTIONS(4099), + [anon_sym_int] = ACTIONS(4099), + [anon_sym_uint] = ACTIONS(4099), + [anon_sym_float] = ACTIONS(4099), + [anon_sym_range] = ACTIONS(4099), + [anon_sym_i8] = ACTIONS(4099), + [anon_sym_i16] = ACTIONS(4099), + [anon_sym_i32] = ACTIONS(4099), + [anon_sym_i64] = ACTIONS(4099), + [anon_sym_u8] = ACTIONS(4099), + [anon_sym_u16] = ACTIONS(4099), + [anon_sym_u32] = ACTIONS(4099), + [anon_sym_u64] = ACTIONS(4099), + [anon_sym_isize] = ACTIONS(4099), + [anon_sym_usize] = ACTIONS(4099), + [anon_sym_f32] = ACTIONS(4099), + [anon_sym_f64] = ACTIONS(4099), + [anon_sym_c_char] = ACTIONS(4099), + [anon_sym_c_schar] = ACTIONS(4099), + [anon_sym_c_uchar] = ACTIONS(4099), + [anon_sym_c_short] = ACTIONS(4099), + [anon_sym_c_ushort] = ACTIONS(4099), + [anon_sym_c_int] = ACTIONS(4099), + [anon_sym_c_uint] = ACTIONS(4099), + [anon_sym_c_long] = ACTIONS(4099), + [anon_sym_c_ulong] = ACTIONS(4099), + [anon_sym_c_longlong] = ACTIONS(4099), + [anon_sym_c_ulonglong] = ACTIONS(4099), + [anon_sym_c_float] = ACTIONS(4099), + [anon_sym_c_double] = ACTIONS(4099), + [anon_sym_c_longdouble] = ACTIONS(4099), + [anon_sym_return] = ACTIONS(4099), + [anon_sym_yield] = ACTIONS(4099), + [anon_sym_break] = ACTIONS(4099), + [anon_sym_continue] = ACTIONS(4099), + [anon_sym_defer] = ACTIONS(4099), + [anon_sym_errdefer] = ACTIONS(4099), + [anon_sym_if] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4109), + [anon_sym_while] = ACTIONS(4099), + [anon_sym_expand] = ACTIONS(4099), + [anon_sym_for] = ACTIONS(4099), + [anon_sym_match] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(4101), + [anon_sym_TILDE] = ACTIONS(4101), + [anon_sym_try] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(4099), + [anon_sym_false] = ACTIONS(4099), + [sym_none] = ACTIONS(4099), + [sym_undefined] = ACTIONS(4099), + [sym_sink] = ACTIONS(4099), + [sym_integer] = ACTIONS(4099), + [sym_float] = ACTIONS(4101), + [anon_sym_DQUOTE] = ACTIONS(4101), + [sym_multiline_string] = ACTIONS(4101), + [sym_character] = ACTIONS(4101), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4111), + }, + [STATE(1710)] = { + [aux_sym_import_declaration_repeat1] = STATE(3202), + [sym_identifier] = ACTIONS(4114), + [anon_sym_func] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_DOLLAR] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_void] = ACTIONS(4114), + [anon_sym_anyopaque] = ACTIONS(4114), + [anon_sym_bool] = ACTIONS(4114), + [anon_sym_int] = ACTIONS(4114), + [anon_sym_uint] = ACTIONS(4114), + [anon_sym_float] = ACTIONS(4114), + [anon_sym_range] = ACTIONS(4114), + [anon_sym_i8] = ACTIONS(4114), + [anon_sym_i16] = ACTIONS(4114), + [anon_sym_i32] = ACTIONS(4114), + [anon_sym_i64] = ACTIONS(4114), + [anon_sym_u8] = ACTIONS(4114), + [anon_sym_u16] = ACTIONS(4114), + [anon_sym_u32] = ACTIONS(4114), + [anon_sym_u64] = ACTIONS(4114), + [anon_sym_isize] = ACTIONS(4114), + [anon_sym_usize] = ACTIONS(4114), + [anon_sym_f32] = ACTIONS(4114), + [anon_sym_f64] = ACTIONS(4114), + [anon_sym_c_char] = ACTIONS(4114), + [anon_sym_c_schar] = ACTIONS(4114), + [anon_sym_c_uchar] = ACTIONS(4114), + [anon_sym_c_short] = ACTIONS(4114), + [anon_sym_c_ushort] = ACTIONS(4114), + [anon_sym_c_int] = ACTIONS(4114), + [anon_sym_c_uint] = ACTIONS(4114), + [anon_sym_c_long] = ACTIONS(4114), + [anon_sym_c_ulong] = ACTIONS(4114), + [anon_sym_c_longlong] = ACTIONS(4114), + [anon_sym_c_ulonglong] = ACTIONS(4114), + [anon_sym_c_float] = ACTIONS(4114), + [anon_sym_c_double] = ACTIONS(4114), + [anon_sym_c_longdouble] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_yield] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_defer] = ACTIONS(4114), + [anon_sym_errdefer] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4118), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_expand] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [sym_none] = ACTIONS(4114), + [sym_undefined] = ACTIONS(4114), + [sym_sink] = ACTIONS(4114), + [sym_integer] = ACTIONS(4114), + [sym_float] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_multiline_string] = ACTIONS(4116), + [sym_character] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4120), + }, + [STATE(1711)] = { + [aux_sym_import_declaration_repeat1] = STATE(3246), + [sym_identifier] = ACTIONS(4114), + [anon_sym_func] = ACTIONS(4114), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_DOLLAR] = ACTIONS(4116), + [anon_sym_LBRACK] = ACTIONS(4116), + [anon_sym_void] = ACTIONS(4114), + [anon_sym_anyopaque] = ACTIONS(4114), + [anon_sym_bool] = ACTIONS(4114), + [anon_sym_int] = ACTIONS(4114), + [anon_sym_uint] = ACTIONS(4114), + [anon_sym_float] = ACTIONS(4114), + [anon_sym_range] = ACTIONS(4114), + [anon_sym_i8] = ACTIONS(4114), + [anon_sym_i16] = ACTIONS(4114), + [anon_sym_i32] = ACTIONS(4114), + [anon_sym_i64] = ACTIONS(4114), + [anon_sym_u8] = ACTIONS(4114), + [anon_sym_u16] = ACTIONS(4114), + [anon_sym_u32] = ACTIONS(4114), + [anon_sym_u64] = ACTIONS(4114), + [anon_sym_isize] = ACTIONS(4114), + [anon_sym_usize] = ACTIONS(4114), + [anon_sym_f32] = ACTIONS(4114), + [anon_sym_f64] = ACTIONS(4114), + [anon_sym_c_char] = ACTIONS(4114), + [anon_sym_c_schar] = ACTIONS(4114), + [anon_sym_c_uchar] = ACTIONS(4114), + [anon_sym_c_short] = ACTIONS(4114), + [anon_sym_c_ushort] = ACTIONS(4114), + [anon_sym_c_int] = ACTIONS(4114), + [anon_sym_c_uint] = ACTIONS(4114), + [anon_sym_c_long] = ACTIONS(4114), + [anon_sym_c_ulong] = ACTIONS(4114), + [anon_sym_c_longlong] = ACTIONS(4114), + [anon_sym_c_ulonglong] = ACTIONS(4114), + [anon_sym_c_float] = ACTIONS(4114), + [anon_sym_c_double] = ACTIONS(4114), + [anon_sym_c_longdouble] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_yield] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_defer] = ACTIONS(4114), + [anon_sym_errdefer] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_expand] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_match] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_DOT] = ACTIONS(4116), + [anon_sym_true] = ACTIONS(4114), + [anon_sym_false] = ACTIONS(4114), + [sym_none] = ACTIONS(4114), + [sym_undefined] = ACTIONS(4114), + [sym_sink] = ACTIONS(4114), + [sym_integer] = ACTIONS(4114), + [sym_float] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_multiline_string] = ACTIONS(4116), + [sym_character] = ACTIONS(4116), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4126), + }, + [STATE(1712)] = { + [aux_sym_import_declaration_repeat1] = STATE(3149), + [sym_identifier] = ACTIONS(4089), + [anon_sym_func] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4091), + [anon_sym_struct] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4091), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4091), + [anon_sym_void] = ACTIONS(4089), + [anon_sym_anyopaque] = ACTIONS(4089), + [anon_sym_bool] = ACTIONS(4089), + [anon_sym_int] = ACTIONS(4089), + [anon_sym_uint] = ACTIONS(4089), + [anon_sym_float] = ACTIONS(4089), + [anon_sym_range] = ACTIONS(4089), + [anon_sym_i8] = ACTIONS(4089), + [anon_sym_i16] = ACTIONS(4089), + [anon_sym_i32] = ACTIONS(4089), + [anon_sym_i64] = ACTIONS(4089), + [anon_sym_u8] = ACTIONS(4089), + [anon_sym_u16] = ACTIONS(4089), + [anon_sym_u32] = ACTIONS(4089), + [anon_sym_u64] = ACTIONS(4089), + [anon_sym_isize] = ACTIONS(4089), + [anon_sym_usize] = ACTIONS(4089), + [anon_sym_f32] = ACTIONS(4089), + [anon_sym_f64] = ACTIONS(4089), + [anon_sym_c_char] = ACTIONS(4089), + [anon_sym_c_schar] = ACTIONS(4089), + [anon_sym_c_uchar] = ACTIONS(4089), + [anon_sym_c_short] = ACTIONS(4089), + [anon_sym_c_ushort] = ACTIONS(4089), + [anon_sym_c_int] = ACTIONS(4089), + [anon_sym_c_uint] = ACTIONS(4089), + [anon_sym_c_long] = ACTIONS(4089), + [anon_sym_c_ulong] = ACTIONS(4089), + [anon_sym_c_longlong] = ACTIONS(4089), + [anon_sym_c_ulonglong] = ACTIONS(4089), + [anon_sym_c_float] = ACTIONS(4089), + [anon_sym_c_double] = ACTIONS(4089), + [anon_sym_c_longdouble] = ACTIONS(4089), + [anon_sym_return] = ACTIONS(4089), + [anon_sym_yield] = ACTIONS(4089), + [anon_sym_break] = ACTIONS(4089), + [anon_sym_continue] = ACTIONS(4089), + [anon_sym_defer] = ACTIONS(4089), + [anon_sym_errdefer] = ACTIONS(4089), + [anon_sym_if] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4089), + [anon_sym_expand] = ACTIONS(4089), + [anon_sym_for] = ACTIONS(4089), + [anon_sym_match] = ACTIONS(4089), + [anon_sym_AMP] = ACTIONS(4091), + [anon_sym_TILDE] = ACTIONS(4091), + [anon_sym_try] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4091), + [anon_sym_true] = ACTIONS(4089), + [anon_sym_false] = ACTIONS(4089), + [sym_none] = ACTIONS(4089), + [sym_undefined] = ACTIONS(4089), + [sym_sink] = ACTIONS(4089), + [sym_integer] = ACTIONS(4089), + [sym_float] = ACTIONS(4091), + [anon_sym_DQUOTE] = ACTIONS(4091), + [sym_multiline_string] = ACTIONS(4091), + [sym_character] = ACTIONS(4091), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4131), + }, + [STATE(1713)] = { + [aux_sym_import_declaration_repeat1] = STATE(3243), + [sym_identifier] = ACTIONS(4134), + [anon_sym_func] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_DOLLAR] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_void] = ACTIONS(4134), + [anon_sym_anyopaque] = ACTIONS(4134), + [anon_sym_bool] = ACTIONS(4134), + [anon_sym_int] = ACTIONS(4134), + [anon_sym_uint] = ACTIONS(4134), + [anon_sym_float] = ACTIONS(4134), + [anon_sym_range] = ACTIONS(4134), + [anon_sym_i8] = ACTIONS(4134), + [anon_sym_i16] = ACTIONS(4134), + [anon_sym_i32] = ACTIONS(4134), + [anon_sym_i64] = ACTIONS(4134), + [anon_sym_u8] = ACTIONS(4134), + [anon_sym_u16] = ACTIONS(4134), + [anon_sym_u32] = ACTIONS(4134), + [anon_sym_u64] = ACTIONS(4134), + [anon_sym_isize] = ACTIONS(4134), + [anon_sym_usize] = ACTIONS(4134), + [anon_sym_f32] = ACTIONS(4134), + [anon_sym_f64] = ACTIONS(4134), + [anon_sym_c_char] = ACTIONS(4134), + [anon_sym_c_schar] = ACTIONS(4134), + [anon_sym_c_uchar] = ACTIONS(4134), + [anon_sym_c_short] = ACTIONS(4134), + [anon_sym_c_ushort] = ACTIONS(4134), + [anon_sym_c_int] = ACTIONS(4134), + [anon_sym_c_uint] = ACTIONS(4134), + [anon_sym_c_long] = ACTIONS(4134), + [anon_sym_c_ulong] = ACTIONS(4134), + [anon_sym_c_longlong] = ACTIONS(4134), + [anon_sym_c_ulonglong] = ACTIONS(4134), + [anon_sym_c_float] = ACTIONS(4134), + [anon_sym_c_double] = ACTIONS(4134), + [anon_sym_c_longdouble] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_yield] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_defer] = ACTIONS(4134), + [anon_sym_errdefer] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_expand] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [sym_none] = ACTIONS(4134), + [sym_undefined] = ACTIONS(4134), + [sym_sink] = ACTIONS(4134), + [sym_integer] = ACTIONS(4134), + [sym_float] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_multiline_string] = ACTIONS(4136), + [sym_character] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4141), + }, + [STATE(1714)] = { + [aux_sym_import_declaration_repeat1] = STATE(3239), + [sym_identifier] = ACTIONS(4144), + [anon_sym_func] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_DOLLAR] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_void] = ACTIONS(4144), + [anon_sym_anyopaque] = ACTIONS(4144), + [anon_sym_bool] = ACTIONS(4144), + [anon_sym_int] = ACTIONS(4144), + [anon_sym_uint] = ACTIONS(4144), + [anon_sym_float] = ACTIONS(4144), + [anon_sym_range] = ACTIONS(4144), + [anon_sym_i8] = ACTIONS(4144), + [anon_sym_i16] = ACTIONS(4144), + [anon_sym_i32] = ACTIONS(4144), + [anon_sym_i64] = ACTIONS(4144), + [anon_sym_u8] = ACTIONS(4144), + [anon_sym_u16] = ACTIONS(4144), + [anon_sym_u32] = ACTIONS(4144), + [anon_sym_u64] = ACTIONS(4144), + [anon_sym_isize] = ACTIONS(4144), + [anon_sym_usize] = ACTIONS(4144), + [anon_sym_f32] = ACTIONS(4144), + [anon_sym_f64] = ACTIONS(4144), + [anon_sym_c_char] = ACTIONS(4144), + [anon_sym_c_schar] = ACTIONS(4144), + [anon_sym_c_uchar] = ACTIONS(4144), + [anon_sym_c_short] = ACTIONS(4144), + [anon_sym_c_ushort] = ACTIONS(4144), + [anon_sym_c_int] = ACTIONS(4144), + [anon_sym_c_uint] = ACTIONS(4144), + [anon_sym_c_long] = ACTIONS(4144), + [anon_sym_c_ulong] = ACTIONS(4144), + [anon_sym_c_longlong] = ACTIONS(4144), + [anon_sym_c_ulonglong] = ACTIONS(4144), + [anon_sym_c_float] = ACTIONS(4144), + [anon_sym_c_double] = ACTIONS(4144), + [anon_sym_c_longdouble] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_defer] = ACTIONS(4144), + [anon_sym_errdefer] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_expand] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4144), + [anon_sym_false] = ACTIONS(4144), + [sym_none] = ACTIONS(4144), + [sym_undefined] = ACTIONS(4144), + [sym_sink] = ACTIONS(4144), + [sym_integer] = ACTIONS(4144), + [sym_float] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_multiline_string] = ACTIONS(4146), + [sym_character] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4150), + }, + [STATE(1715)] = { + [aux_sym_import_declaration_repeat1] = STATE(3181), + [sym_identifier] = ACTIONS(4153), + [anon_sym_func] = ACTIONS(4153), + [anon_sym_BANG] = ACTIONS(4155), + [anon_sym_struct] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_DOLLAR] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_void] = ACTIONS(4153), + [anon_sym_anyopaque] = ACTIONS(4153), + [anon_sym_bool] = ACTIONS(4153), + [anon_sym_int] = ACTIONS(4153), + [anon_sym_uint] = ACTIONS(4153), + [anon_sym_float] = ACTIONS(4153), + [anon_sym_range] = ACTIONS(4153), + [anon_sym_i8] = ACTIONS(4153), + [anon_sym_i16] = ACTIONS(4153), + [anon_sym_i32] = ACTIONS(4153), + [anon_sym_i64] = ACTIONS(4153), + [anon_sym_u8] = ACTIONS(4153), + [anon_sym_u16] = ACTIONS(4153), + [anon_sym_u32] = ACTIONS(4153), + [anon_sym_u64] = ACTIONS(4153), + [anon_sym_isize] = ACTIONS(4153), + [anon_sym_usize] = ACTIONS(4153), + [anon_sym_f32] = ACTIONS(4153), + [anon_sym_f64] = ACTIONS(4153), + [anon_sym_c_char] = ACTIONS(4153), + [anon_sym_c_schar] = ACTIONS(4153), + [anon_sym_c_uchar] = ACTIONS(4153), + [anon_sym_c_short] = ACTIONS(4153), + [anon_sym_c_ushort] = ACTIONS(4153), + [anon_sym_c_int] = ACTIONS(4153), + [anon_sym_c_uint] = ACTIONS(4153), + [anon_sym_c_long] = ACTIONS(4153), + [anon_sym_c_ulong] = ACTIONS(4153), + [anon_sym_c_longlong] = ACTIONS(4153), + [anon_sym_c_ulonglong] = ACTIONS(4153), + [anon_sym_c_float] = ACTIONS(4153), + [anon_sym_c_double] = ACTIONS(4153), + [anon_sym_c_longdouble] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_yield] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_defer] = ACTIONS(4153), + [anon_sym_errdefer] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4157), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_expand] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [anon_sym_TILDE] = ACTIONS(4155), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [sym_none] = ACTIONS(4153), + [sym_undefined] = ACTIONS(4153), + [sym_sink] = ACTIONS(4153), + [sym_integer] = ACTIONS(4153), + [sym_float] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4155), + [sym_multiline_string] = ACTIONS(4155), + [sym_character] = ACTIONS(4155), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4159), + }, + [STATE(1716)] = { + [aux_sym_import_declaration_repeat1] = STATE(3241), + [sym_identifier] = ACTIONS(4144), + [anon_sym_func] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4146), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_DOLLAR] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_void] = ACTIONS(4144), + [anon_sym_anyopaque] = ACTIONS(4144), + [anon_sym_bool] = ACTIONS(4144), + [anon_sym_int] = ACTIONS(4144), + [anon_sym_uint] = ACTIONS(4144), + [anon_sym_float] = ACTIONS(4144), + [anon_sym_range] = ACTIONS(4144), + [anon_sym_i8] = ACTIONS(4144), + [anon_sym_i16] = ACTIONS(4144), + [anon_sym_i32] = ACTIONS(4144), + [anon_sym_i64] = ACTIONS(4144), + [anon_sym_u8] = ACTIONS(4144), + [anon_sym_u16] = ACTIONS(4144), + [anon_sym_u32] = ACTIONS(4144), + [anon_sym_u64] = ACTIONS(4144), + [anon_sym_isize] = ACTIONS(4144), + [anon_sym_usize] = ACTIONS(4144), + [anon_sym_f32] = ACTIONS(4144), + [anon_sym_f64] = ACTIONS(4144), + [anon_sym_c_char] = ACTIONS(4144), + [anon_sym_c_schar] = ACTIONS(4144), + [anon_sym_c_uchar] = ACTIONS(4144), + [anon_sym_c_short] = ACTIONS(4144), + [anon_sym_c_ushort] = ACTIONS(4144), + [anon_sym_c_int] = ACTIONS(4144), + [anon_sym_c_uint] = ACTIONS(4144), + [anon_sym_c_long] = ACTIONS(4144), + [anon_sym_c_ulong] = ACTIONS(4144), + [anon_sym_c_longlong] = ACTIONS(4144), + [anon_sym_c_ulonglong] = ACTIONS(4144), + [anon_sym_c_float] = ACTIONS(4144), + [anon_sym_c_double] = ACTIONS(4144), + [anon_sym_c_longdouble] = ACTIONS(4144), + [anon_sym_return] = ACTIONS(4144), + [anon_sym_yield] = ACTIONS(4144), + [anon_sym_break] = ACTIONS(4144), + [anon_sym_continue] = ACTIONS(4144), + [anon_sym_defer] = ACTIONS(4144), + [anon_sym_errdefer] = ACTIONS(4144), + [anon_sym_if] = ACTIONS(4144), + [anon_sym_else] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4144), + [anon_sym_expand] = ACTIONS(4144), + [anon_sym_for] = ACTIONS(4144), + [anon_sym_match] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_TILDE] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4146), + [anon_sym_true] = ACTIONS(4144), + [anon_sym_false] = ACTIONS(4144), + [sym_none] = ACTIONS(4144), + [sym_undefined] = ACTIONS(4144), + [sym_sink] = ACTIONS(4144), + [sym_integer] = ACTIONS(4144), + [sym_float] = ACTIONS(4146), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym_multiline_string] = ACTIONS(4146), + [sym_character] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4165), + }, + [STATE(1717)] = { + [aux_sym_import_declaration_repeat1] = STATE(3155), + [sym_identifier] = ACTIONS(4134), + [anon_sym_func] = ACTIONS(4134), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_LPAREN] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_DOLLAR] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4136), + [anon_sym_void] = ACTIONS(4134), + [anon_sym_anyopaque] = ACTIONS(4134), + [anon_sym_bool] = ACTIONS(4134), + [anon_sym_int] = ACTIONS(4134), + [anon_sym_uint] = ACTIONS(4134), + [anon_sym_float] = ACTIONS(4134), + [anon_sym_range] = ACTIONS(4134), + [anon_sym_i8] = ACTIONS(4134), + [anon_sym_i16] = ACTIONS(4134), + [anon_sym_i32] = ACTIONS(4134), + [anon_sym_i64] = ACTIONS(4134), + [anon_sym_u8] = ACTIONS(4134), + [anon_sym_u16] = ACTIONS(4134), + [anon_sym_u32] = ACTIONS(4134), + [anon_sym_u64] = ACTIONS(4134), + [anon_sym_isize] = ACTIONS(4134), + [anon_sym_usize] = ACTIONS(4134), + [anon_sym_f32] = ACTIONS(4134), + [anon_sym_f64] = ACTIONS(4134), + [anon_sym_c_char] = ACTIONS(4134), + [anon_sym_c_schar] = ACTIONS(4134), + [anon_sym_c_uchar] = ACTIONS(4134), + [anon_sym_c_short] = ACTIONS(4134), + [anon_sym_c_ushort] = ACTIONS(4134), + [anon_sym_c_int] = ACTIONS(4134), + [anon_sym_c_uint] = ACTIONS(4134), + [anon_sym_c_long] = ACTIONS(4134), + [anon_sym_c_ulong] = ACTIONS(4134), + [anon_sym_c_longlong] = ACTIONS(4134), + [anon_sym_c_ulonglong] = ACTIONS(4134), + [anon_sym_c_float] = ACTIONS(4134), + [anon_sym_c_double] = ACTIONS(4134), + [anon_sym_c_longdouble] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_yield] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_defer] = ACTIONS(4134), + [anon_sym_errdefer] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_else] = ACTIONS(4168), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_expand] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_match] = ACTIONS(4134), + [anon_sym_AMP] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_true] = ACTIONS(4134), + [anon_sym_false] = ACTIONS(4134), + [sym_none] = ACTIONS(4134), + [sym_undefined] = ACTIONS(4134), + [sym_sink] = ACTIONS(4134), + [sym_integer] = ACTIONS(4134), + [sym_float] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_multiline_string] = ACTIONS(4136), + [sym_character] = ACTIONS(4136), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4170), + }, + [STATE(1718)] = { + [aux_sym_import_declaration_repeat1] = STATE(3244), + [sym_identifier] = ACTIONS(4153), + [anon_sym_func] = ACTIONS(4153), + [anon_sym_BANG] = ACTIONS(4155), + [anon_sym_struct] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(4155), + [anon_sym_LBRACE] = ACTIONS(4155), + [anon_sym_RBRACE] = ACTIONS(4155), + [anon_sym_DASH] = ACTIONS(4155), + [anon_sym_DOLLAR] = ACTIONS(4155), + [anon_sym_LBRACK] = ACTIONS(4155), + [anon_sym_void] = ACTIONS(4153), + [anon_sym_anyopaque] = ACTIONS(4153), + [anon_sym_bool] = ACTIONS(4153), + [anon_sym_int] = ACTIONS(4153), + [anon_sym_uint] = ACTIONS(4153), + [anon_sym_float] = ACTIONS(4153), + [anon_sym_range] = ACTIONS(4153), + [anon_sym_i8] = ACTIONS(4153), + [anon_sym_i16] = ACTIONS(4153), + [anon_sym_i32] = ACTIONS(4153), + [anon_sym_i64] = ACTIONS(4153), + [anon_sym_u8] = ACTIONS(4153), + [anon_sym_u16] = ACTIONS(4153), + [anon_sym_u32] = ACTIONS(4153), + [anon_sym_u64] = ACTIONS(4153), + [anon_sym_isize] = ACTIONS(4153), + [anon_sym_usize] = ACTIONS(4153), + [anon_sym_f32] = ACTIONS(4153), + [anon_sym_f64] = ACTIONS(4153), + [anon_sym_c_char] = ACTIONS(4153), + [anon_sym_c_schar] = ACTIONS(4153), + [anon_sym_c_uchar] = ACTIONS(4153), + [anon_sym_c_short] = ACTIONS(4153), + [anon_sym_c_ushort] = ACTIONS(4153), + [anon_sym_c_int] = ACTIONS(4153), + [anon_sym_c_uint] = ACTIONS(4153), + [anon_sym_c_long] = ACTIONS(4153), + [anon_sym_c_ulong] = ACTIONS(4153), + [anon_sym_c_longlong] = ACTIONS(4153), + [anon_sym_c_ulonglong] = ACTIONS(4153), + [anon_sym_c_float] = ACTIONS(4153), + [anon_sym_c_double] = ACTIONS(4153), + [anon_sym_c_longdouble] = ACTIONS(4153), + [anon_sym_return] = ACTIONS(4153), + [anon_sym_yield] = ACTIONS(4153), + [anon_sym_break] = ACTIONS(4153), + [anon_sym_continue] = ACTIONS(4153), + [anon_sym_defer] = ACTIONS(4153), + [anon_sym_errdefer] = ACTIONS(4153), + [anon_sym_if] = ACTIONS(4153), + [anon_sym_else] = ACTIONS(4173), + [anon_sym_while] = ACTIONS(4153), + [anon_sym_expand] = ACTIONS(4153), + [anon_sym_for] = ACTIONS(4153), + [anon_sym_match] = ACTIONS(4153), + [anon_sym_AMP] = ACTIONS(4155), + [anon_sym_TILDE] = ACTIONS(4155), + [anon_sym_try] = ACTIONS(4153), + [anon_sym_DOT] = ACTIONS(4155), + [anon_sym_true] = ACTIONS(4153), + [anon_sym_false] = ACTIONS(4153), + [sym_none] = ACTIONS(4153), + [sym_undefined] = ACTIONS(4153), + [sym_sink] = ACTIONS(4153), + [sym_integer] = ACTIONS(4153), + [sym_float] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(4155), + [sym_multiline_string] = ACTIONS(4155), + [sym_character] = ACTIONS(4155), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4176), + }, + [STATE(1719)] = { + [sym_identifier] = ACTIONS(4179), + [anon_sym_func] = ACTIONS(4179), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_struct] = ACTIONS(4179), + [anon_sym_LPAREN] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4182), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_DOLLAR] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4182), + [anon_sym_void] = ACTIONS(4179), + [anon_sym_anyopaque] = ACTIONS(4179), + [anon_sym_bool] = ACTIONS(4179), + [anon_sym_int] = ACTIONS(4179), + [anon_sym_uint] = ACTIONS(4179), + [anon_sym_float] = ACTIONS(4179), + [anon_sym_range] = ACTIONS(4179), + [anon_sym_i8] = ACTIONS(4179), + [anon_sym_i16] = ACTIONS(4179), + [anon_sym_i32] = ACTIONS(4179), + [anon_sym_i64] = ACTIONS(4179), + [anon_sym_u8] = ACTIONS(4179), + [anon_sym_u16] = ACTIONS(4179), + [anon_sym_u32] = ACTIONS(4179), + [anon_sym_u64] = ACTIONS(4179), + [anon_sym_isize] = ACTIONS(4179), + [anon_sym_usize] = ACTIONS(4179), + [anon_sym_f32] = ACTIONS(4179), + [anon_sym_f64] = ACTIONS(4179), + [anon_sym_c_char] = ACTIONS(4179), + [anon_sym_c_schar] = ACTIONS(4179), + [anon_sym_c_uchar] = ACTIONS(4179), + [anon_sym_c_short] = ACTIONS(4179), + [anon_sym_c_ushort] = ACTIONS(4179), + [anon_sym_c_int] = ACTIONS(4179), + [anon_sym_c_uint] = ACTIONS(4179), + [anon_sym_c_long] = ACTIONS(4179), + [anon_sym_c_ulong] = ACTIONS(4179), + [anon_sym_c_longlong] = ACTIONS(4179), + [anon_sym_c_ulonglong] = ACTIONS(4179), + [anon_sym_c_float] = ACTIONS(4179), + [anon_sym_c_double] = ACTIONS(4179), + [anon_sym_c_longdouble] = ACTIONS(4179), + [anon_sym_return] = ACTIONS(4185), + [anon_sym_yield] = ACTIONS(4185), + [anon_sym_break] = ACTIONS(4185), + [anon_sym_continue] = ACTIONS(4185), + [anon_sym_defer] = ACTIONS(4185), + [anon_sym_errdefer] = ACTIONS(4185), + [anon_sym_if] = ACTIONS(4185), + [anon_sym_while] = ACTIONS(4185), + [anon_sym_expand] = ACTIONS(4185), + [anon_sym_for] = ACTIONS(4185), + [anon_sym_match] = ACTIONS(4185), + [anon_sym_AMP] = ACTIONS(4182), + [anon_sym_TILDE] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4179), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_true] = ACTIONS(4179), + [anon_sym_false] = ACTIONS(4179), + [sym_none] = ACTIONS(4179), + [sym_undefined] = ACTIONS(4179), + [sym_sink] = ACTIONS(4179), + [sym_integer] = ACTIONS(4179), + [sym_float] = ACTIONS(4182), + [anon_sym_DQUOTE] = ACTIONS(4182), + [sym_multiline_string] = ACTIONS(4182), + [sym_character] = ACTIONS(4182), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4182), + }, + [STATE(1720)] = { + [sym_identifier] = ACTIONS(4187), + [anon_sym_func] = ACTIONS(4187), + [anon_sym_BANG] = ACTIONS(4189), + [anon_sym_struct] = ACTIONS(4187), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4189), + [anon_sym_DASH] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4189), + [anon_sym_LBRACK] = ACTIONS(4189), + [anon_sym_void] = ACTIONS(4187), + [anon_sym_anyopaque] = ACTIONS(4187), + [anon_sym_bool] = ACTIONS(4187), + [anon_sym_int] = ACTIONS(4187), + [anon_sym_uint] = ACTIONS(4187), + [anon_sym_float] = ACTIONS(4187), + [anon_sym_range] = ACTIONS(4187), + [anon_sym_i8] = ACTIONS(4187), + [anon_sym_i16] = ACTIONS(4187), + [anon_sym_i32] = ACTIONS(4187), + [anon_sym_i64] = ACTIONS(4187), + [anon_sym_u8] = ACTIONS(4187), + [anon_sym_u16] = ACTIONS(4187), + [anon_sym_u32] = ACTIONS(4187), + [anon_sym_u64] = ACTIONS(4187), + [anon_sym_isize] = ACTIONS(4187), + [anon_sym_usize] = ACTIONS(4187), + [anon_sym_f32] = ACTIONS(4187), + [anon_sym_f64] = ACTIONS(4187), + [anon_sym_c_char] = ACTIONS(4187), + [anon_sym_c_schar] = ACTIONS(4187), + [anon_sym_c_uchar] = ACTIONS(4187), + [anon_sym_c_short] = ACTIONS(4187), + [anon_sym_c_ushort] = ACTIONS(4187), + [anon_sym_c_int] = ACTIONS(4187), + [anon_sym_c_uint] = ACTIONS(4187), + [anon_sym_c_long] = ACTIONS(4187), + [anon_sym_c_ulong] = ACTIONS(4187), + [anon_sym_c_longlong] = ACTIONS(4187), + [anon_sym_c_ulonglong] = ACTIONS(4187), + [anon_sym_c_float] = ACTIONS(4187), + [anon_sym_c_double] = ACTIONS(4187), + [anon_sym_c_longdouble] = ACTIONS(4187), + [anon_sym_return] = ACTIONS(4187), + [anon_sym_yield] = ACTIONS(4187), + [anon_sym_break] = ACTIONS(4187), + [anon_sym_continue] = ACTIONS(4187), + [anon_sym_defer] = ACTIONS(4187), + [anon_sym_errdefer] = ACTIONS(4187), + [anon_sym_if] = ACTIONS(4187), + [anon_sym_while] = ACTIONS(4187), + [anon_sym_expand] = ACTIONS(4187), + [anon_sym_for] = ACTIONS(4187), + [anon_sym_match] = ACTIONS(4187), + [anon_sym_AMP] = ACTIONS(4189), + [anon_sym_TILDE] = ACTIONS(4189), + [anon_sym_try] = ACTIONS(4187), + [anon_sym_DOT] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(4187), + [anon_sym_false] = ACTIONS(4187), + [sym_none] = ACTIONS(4187), + [sym_undefined] = ACTIONS(4187), + [sym_sink] = ACTIONS(4187), + [sym_integer] = ACTIONS(4187), + [sym_float] = ACTIONS(4189), + [anon_sym_DQUOTE] = ACTIONS(4189), + [sym_multiline_string] = ACTIONS(4189), + [sym_character] = ACTIONS(4189), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4189), + }, + [STATE(1721)] = { + [sym_identifier] = ACTIONS(4191), + [anon_sym_func] = ACTIONS(4191), + [anon_sym_BANG] = ACTIONS(4193), + [anon_sym_struct] = ACTIONS(4191), + [anon_sym_LPAREN] = ACTIONS(4193), + [anon_sym_LBRACE] = ACTIONS(4193), + [anon_sym_DASH] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(4193), + [anon_sym_LBRACK] = ACTIONS(4193), + [anon_sym_void] = ACTIONS(4191), + [anon_sym_anyopaque] = ACTIONS(4191), + [anon_sym_bool] = ACTIONS(4191), + [anon_sym_int] = ACTIONS(4191), + [anon_sym_uint] = ACTIONS(4191), + [anon_sym_float] = ACTIONS(4191), + [anon_sym_range] = ACTIONS(4191), + [anon_sym_i8] = ACTIONS(4191), + [anon_sym_i16] = ACTIONS(4191), + [anon_sym_i32] = ACTIONS(4191), + [anon_sym_i64] = ACTIONS(4191), + [anon_sym_u8] = ACTIONS(4191), + [anon_sym_u16] = ACTIONS(4191), + [anon_sym_u32] = ACTIONS(4191), + [anon_sym_u64] = ACTIONS(4191), + [anon_sym_isize] = ACTIONS(4191), + [anon_sym_usize] = ACTIONS(4191), + [anon_sym_f32] = ACTIONS(4191), + [anon_sym_f64] = ACTIONS(4191), + [anon_sym_c_char] = ACTIONS(4191), + [anon_sym_c_schar] = ACTIONS(4191), + [anon_sym_c_uchar] = ACTIONS(4191), + [anon_sym_c_short] = ACTIONS(4191), + [anon_sym_c_ushort] = ACTIONS(4191), + [anon_sym_c_int] = ACTIONS(4191), + [anon_sym_c_uint] = ACTIONS(4191), + [anon_sym_c_long] = ACTIONS(4191), + [anon_sym_c_ulong] = ACTIONS(4191), + [anon_sym_c_longlong] = ACTIONS(4191), + [anon_sym_c_ulonglong] = ACTIONS(4191), + [anon_sym_c_float] = ACTIONS(4191), + [anon_sym_c_double] = ACTIONS(4191), + [anon_sym_c_longdouble] = ACTIONS(4191), + [anon_sym_return] = ACTIONS(4191), + [anon_sym_yield] = ACTIONS(4191), + [anon_sym_break] = ACTIONS(4191), + [anon_sym_continue] = ACTIONS(4191), + [anon_sym_defer] = ACTIONS(4191), + [anon_sym_errdefer] = ACTIONS(4191), + [anon_sym_if] = ACTIONS(4191), + [anon_sym_while] = ACTIONS(4191), + [anon_sym_expand] = ACTIONS(4191), + [anon_sym_for] = ACTIONS(4191), + [anon_sym_match] = ACTIONS(4191), + [anon_sym_AMP] = ACTIONS(4193), + [anon_sym_TILDE] = ACTIONS(4193), + [anon_sym_try] = ACTIONS(4191), + [anon_sym_DOT] = ACTIONS(4193), + [anon_sym_true] = ACTIONS(4191), + [anon_sym_false] = ACTIONS(4191), + [sym_none] = ACTIONS(4191), + [sym_undefined] = ACTIONS(4191), + [sym_sink] = ACTIONS(4191), + [sym_integer] = ACTIONS(4191), + [sym_float] = ACTIONS(4193), + [anon_sym_DQUOTE] = ACTIONS(4193), + [sym_multiline_string] = ACTIONS(4193), + [sym_character] = ACTIONS(4193), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4193), + }, + [STATE(1722)] = { + [sym_identifier] = ACTIONS(4195), + [anon_sym_func] = ACTIONS(4195), + [anon_sym_BANG] = ACTIONS(4197), + [anon_sym_struct] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACE] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [anon_sym_DOLLAR] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_void] = ACTIONS(4195), + [anon_sym_anyopaque] = ACTIONS(4195), + [anon_sym_bool] = ACTIONS(4195), + [anon_sym_int] = ACTIONS(4195), + [anon_sym_uint] = ACTIONS(4195), + [anon_sym_float] = ACTIONS(4195), + [anon_sym_range] = ACTIONS(4195), + [anon_sym_i8] = ACTIONS(4195), + [anon_sym_i16] = ACTIONS(4195), + [anon_sym_i32] = ACTIONS(4195), + [anon_sym_i64] = ACTIONS(4195), + [anon_sym_u8] = ACTIONS(4195), + [anon_sym_u16] = ACTIONS(4195), + [anon_sym_u32] = ACTIONS(4195), + [anon_sym_u64] = ACTIONS(4195), + [anon_sym_isize] = ACTIONS(4195), + [anon_sym_usize] = ACTIONS(4195), + [anon_sym_f32] = ACTIONS(4195), + [anon_sym_f64] = ACTIONS(4195), + [anon_sym_c_char] = ACTIONS(4195), + [anon_sym_c_schar] = ACTIONS(4195), + [anon_sym_c_uchar] = ACTIONS(4195), + [anon_sym_c_short] = ACTIONS(4195), + [anon_sym_c_ushort] = ACTIONS(4195), + [anon_sym_c_int] = ACTIONS(4195), + [anon_sym_c_uint] = ACTIONS(4195), + [anon_sym_c_long] = ACTIONS(4195), + [anon_sym_c_ulong] = ACTIONS(4195), + [anon_sym_c_longlong] = ACTIONS(4195), + [anon_sym_c_ulonglong] = ACTIONS(4195), + [anon_sym_c_float] = ACTIONS(4195), + [anon_sym_c_double] = ACTIONS(4195), + [anon_sym_c_longdouble] = ACTIONS(4195), + [anon_sym_return] = ACTIONS(4195), + [anon_sym_yield] = ACTIONS(4195), + [anon_sym_break] = ACTIONS(4195), + [anon_sym_continue] = ACTIONS(4195), + [anon_sym_defer] = ACTIONS(4195), + [anon_sym_errdefer] = ACTIONS(4195), + [anon_sym_if] = ACTIONS(4195), + [anon_sym_while] = ACTIONS(4195), + [anon_sym_expand] = ACTIONS(4195), + [anon_sym_for] = ACTIONS(4195), + [anon_sym_match] = ACTIONS(4195), + [anon_sym_AMP] = ACTIONS(4197), + [anon_sym_TILDE] = ACTIONS(4197), + [anon_sym_try] = ACTIONS(4195), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_true] = ACTIONS(4195), + [anon_sym_false] = ACTIONS(4195), + [sym_none] = ACTIONS(4195), + [sym_undefined] = ACTIONS(4195), + [sym_sink] = ACTIONS(4195), + [sym_integer] = ACTIONS(4195), + [sym_float] = ACTIONS(4197), + [anon_sym_DQUOTE] = ACTIONS(4197), + [sym_multiline_string] = ACTIONS(4197), + [sym_character] = ACTIONS(4197), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(4197), + }, }; static const uint16_t ts_small_parse_table[] = { [0] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(4199), 1, anon_sym_RBRACK, - ACTIONS(3434), 1, + ACTIONS(4202), 1, sym__newline, - STATE(1306), 1, + STATE(1725), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 14, + ACTIONS(1907), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -133175,11 +177477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT, anon_sym_AMP, + anon_sym_TILDE, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 44, + ACTIONS(1905), 44, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -133224,14 +177527,84 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [75] = 5, + [76] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(4202), 1, sym__newline, - STATE(1306), 1, + ACTIONS(4205), 1, + anon_sym_RBRACK, + STATE(1725), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 15, + ACTIONS(1907), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_DOT_DOT, + anon_sym_AMP, + anon_sym_TILDE, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 44, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_DOT, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4202), 1, + sym__newline, + STATE(1725), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 16, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -133243,11 +177616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_AMP, + anon_sym_TILDE, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 44, + ACTIONS(1905), 44, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -133292,84 +177666,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [148] = 6, + [226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3437), 1, - anon_sym_else, - ACTIONS(3440), 1, + ACTIONS(1909), 1, sym__newline, - STATE(2150), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3335), 13, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(3333), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 1, - sym__newline, - ACTIONS(3431), 1, + ACTIONS(4205), 1, anon_sym_RBRACK, - STATE(701), 1, + STATE(897), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 14, + ACTIONS(1907), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -133379,12 +177685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_SEMI, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(1905), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -133428,288 +177735,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [296] = 6, + [301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3443), 1, - anon_sym_else, - ACTIONS(3446), 1, + ACTIONS(1909), 1, sym__newline, - STATE(2146), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3315), 13, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(3313), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [370] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3449), 1, - anon_sym_else, - ACTIONS(3452), 1, - sym__newline, - STATE(2147), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3325), 13, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(3323), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [444] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3455), 1, - anon_sym_else, - ACTIONS(3458), 1, - sym__newline, - STATE(2148), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3354), 13, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(3352), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3461), 1, - anon_sym_else, - ACTIONS(3464), 1, - sym__newline, - STATE(2149), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3374), 13, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - ACTIONS(3372), 44, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [592] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 1, - sym__newline, - ACTIONS(3467), 1, + ACTIONS(4199), 1, anon_sym_RBRACK, - STATE(701), 1, + STATE(897), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 14, + ACTIONS(1907), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -133719,12 +177754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_SEMI, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(1905), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -133768,30 +177804,32 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [666] = 6, + [376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 1, - anon_sym_else, - ACTIONS(3473), 1, + ACTIONS(1909), 1, sym__newline, - STATE(2151), 1, + ACTIONS(4208), 1, + anon_sym_RBRACK, + STATE(897), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3344), 13, + ACTIONS(1907), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DASH, anon_sym_DOLLAR, + anon_sym_STAR, anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3342), 44, + ACTIONS(1905), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -133827,7 +177865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - anon_sym_expand, anon_sym_try, anon_sym_true, anon_sym_false, @@ -133836,526 +177873,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [740] = 3, + [451] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3476), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, + ACTIONS(4211), 1, anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, + ACTIONS(4214), 1, sym__newline, - ACTIONS(3480), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3486), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3484), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3490), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3488), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [1008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3494), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3492), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [1075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3498), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3496), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [1142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3502), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3500), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [1209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3506), 14, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DASH, - anon_sym_DOLLAR, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DOT, - sym_float, - anon_sym_DQUOTE, - sym_multiline_string, - sym_character, - sym__newline, - ACTIONS(3504), 45, - anon_sym_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - anon_sym_else, - anon_sym_expand, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_none, - sym_undefined, - sym_sink, - sym_identifier, - sym_integer, - [1276] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - sym__newline, - STATE(701), 1, + STATE(3293), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3510), 13, + ACTIONS(4091), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -134364,12 +177891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3508), 43, + ACTIONS(4089), 44, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -134405,6 +177933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + anon_sym_expand, anon_sym_try, anon_sym_true, anon_sym_false, @@ -134413,29 +177942,31 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1346] = 6, + [526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(4217), 1, + anon_sym_else, + ACTIONS(4220), 1, sym__newline, - ACTIONS(1882), 1, - anon_sym_RBRACE, - STATE(701), 1, + STATE(3295), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 12, + ACTIONS(4155), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH, anon_sym_DOLLAR, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(4153), 44, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -134471,6 +178002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + anon_sym_expand, anon_sym_try, anon_sym_true, anon_sym_false, @@ -134479,14 +178011,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1418] = 5, + [601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3517), 1, + ACTIONS(4223), 1, + anon_sym_else, + ACTIONS(4226), 1, sym__newline, - STATE(1323), 1, + STATE(3296), 1, aux_sym_import_declaration_repeat1, - ACTIONS(2028), 13, + ACTIONS(4101), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -134495,12 +178029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3515), 43, + ACTIONS(4099), 44, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -134536,6 +178071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, + anon_sym_expand, anon_sym_try, anon_sym_true, anon_sym_false, @@ -134544,29 +178080,32 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1488] = 6, + [676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1641), 1, + ACTIONS(1909), 1, sym__newline, - ACTIONS(1816), 1, - anon_sym_RBRACE, - STATE(701), 1, + ACTIONS(4229), 1, + anon_sym_RBRACK, + STATE(897), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1639), 12, + ACTIONS(1907), 15, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DASH, anon_sym_DOLLAR, + anon_sym_STAR, anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_TILDE, anon_sym_DOT, sym_float, anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(1905), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -134610,37 +178149,1367 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1560] = 13, + [751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(4232), 1, + anon_sym_else, + ACTIONS(4235), 1, + sym__newline, + STATE(3292), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4146), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4144), 44, + anon_sym_func, anon_sym_struct, - ACTIONS(1940), 1, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, sym_identifier, - ACTIONS(3520), 1, + sym_integer, + [826] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_else, + ACTIONS(4241), 1, + sym__newline, + STATE(3297), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4116), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4114), 44, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4244), 1, + anon_sym_else, + ACTIONS(4247), 1, + sym__newline, + STATE(3294), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4136), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4134), 44, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(4250), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4253), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4259), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4257), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4261), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4267), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4265), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4271), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4269), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4275), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4273), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4279), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4277), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 15, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + sym__newline, + ACTIONS(4281), 45, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_else, + anon_sym_expand, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2310), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2226), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1741] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 1, + sym__newline, + STATE(1751), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(2422), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4285), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2292), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2281), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [1958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2328), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [2031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4294), 1, + sym__newline, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4292), 14, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(4290), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [2102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + sym__newline, + ACTIONS(2208), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1907), 13, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_DOLLAR, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_TILDE, + anon_sym_DOT, + sym_float, + anon_sym_DQUOTE, + sym_multiline_string, + sym_character, + ACTIONS(1905), 43, + anon_sym_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_none, + sym_undefined, + sym_sink, + sym_identifier, + sym_integer, + [2175] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(3524), 1, + ACTIONS(4309), 1, anon_sym_DOT, - STATE(390), 1, + STATE(1761), 1, sym_qualified_identifier, - ACTIONS(235), 2, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(1429), 2, + STATE(2237), 2, sym_struct_type, sym_type, - ACTIONS(1118), 5, + ACTIONS(1021), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PIPE, sym__newline, - STATE(387), 7, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -134648,7 +179517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -134682,800 +179551,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1645] = 15, + [2260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_struct, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3526), 1, - sym_identifier, - ACTIONS(3528), 1, - anon_sym_RBRACE, - ACTIONS(3530), 1, - sym__newline, - STATE(390), 1, - sym_qualified_identifier, - STATE(1329), 1, - aux_sym_record_body_repeat1, - STATE(1427), 1, - sym_record_field, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1428), 2, - sym_struct_type, - sym_type, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1732] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3532), 1, - sym_identifier, - ACTIONS(3538), 1, - anon_sym_struct, - ACTIONS(3541), 1, - anon_sym_RBRACE, - ACTIONS(3543), 1, - anon_sym_QMARK, - ACTIONS(3549), 1, - anon_sym_LBRACK, - ACTIONS(3555), 1, - sym__newline, - STATE(390), 1, - sym_qualified_identifier, - STATE(1329), 1, - aux_sym_record_body_repeat1, - STATE(1427), 1, - sym_record_field, - ACTIONS(3535), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(3546), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1428), 2, - sym_struct_type, - sym_type, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(3552), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1819] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_struct, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3526), 1, - sym_identifier, - ACTIONS(3558), 1, - anon_sym_RBRACE, - ACTIONS(3560), 1, - sym__newline, - STATE(390), 1, - sym_qualified_identifier, - STATE(1328), 1, - aux_sym_record_body_repeat1, - STATE(1427), 1, - sym_record_field, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1428), 2, - sym_struct_type, - sym_type, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1906] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1591), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [1986] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(403), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2066] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1592), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2146] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1593), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2226] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1594), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2306] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1970), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2386] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(457), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2466] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1106), 1, - anon_sym_union, - ACTIONS(1108), 1, - anon_sym_enum, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(1917), 4, - sym_union_type, - sym_enum_type, - sym_type, - sym__error_type, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2546] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3562), 1, + ACTIONS(4309), 1, + anon_sym_DOT, + ACTIONS(1021), 15, + ts_builtin_sym_end, anon_sym_COLON_COLON, - ACTIONS(3564), 1, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1023), 40, + anon_sym_import, anon_sym_test, - ACTIONS(3568), 1, - anon_sym_EQ, - STATE(390), 1, - sym_qualified_identifier, - STATE(2191), 1, - sym_type, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(3566), 2, + anon_sym_hide, anon_sym_func, anon_sym_c_func, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, + anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135509,30 +179612,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2626] = 12, + sym_identifier, + [2326] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4313), 1, + anon_sym_RBRACE, + ACTIONS(4315), 1, sym__newline, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, + STATE(1759), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1587), 1, - sym_type, - ACTIONS(235), 2, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -135540,7 +179651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135574,30 +179685,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2703] = 12, + [2413] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4317), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4323), 1, + anon_sym_struct, + ACTIONS(4326), 1, + anon_sym_RBRACE, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4334), 1, anon_sym_LBRACK, - ACTIONS(3570), 1, + ACTIONS(4340), 1, sym__newline, - STATE(390), 1, + STATE(1756), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(1348), 1, - aux_sym_import_declaration_repeat1, - STATE(1590), 1, - sym_type, - ACTIONS(235), 2, + STATE(2238), 1, + sym_record_field, + ACTIONS(4320), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4331), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -135605,7 +179723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4337), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135639,30 +179757,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2780] = 12, + [2500] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4343), 1, + anon_sym_RBRACE, + ACTIONS(4345), 1, sym__newline, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, + STATE(1756), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(397), 1, - sym_type, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(235), 2, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -135670,7 +179795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135704,160 +179829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2857] = 12, + [2587] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(390), 1, - sym_qualified_identifier, - STATE(1433), 1, - aux_sym_parameter_repeat1, - STATE(2097), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [2934] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, + ACTIONS(4311), 1, sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(390), 1, - sym_qualified_identifier, - STATE(1351), 1, - aux_sym_parameter_repeat1, - STATE(2132), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3011] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3574), 1, + ACTIONS(4347), 1, + anon_sym_RBRACE, + ACTIONS(4349), 1, sym__newline, - STATE(390), 1, + STATE(1760), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(1340), 1, - aux_sym_import_declaration_repeat1, - STATE(1588), 1, - sym_type, - ACTIONS(235), 2, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -135865,7 +179867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135899,30 +179901,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3088] = 12, + [2674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(3572), 1, - anon_sym_COMMA, - STATE(390), 1, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4345), 1, + sym__newline, + ACTIONS(4351), 1, + anon_sym_RBRACE, + STATE(1756), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(1343), 1, - aux_sym_parameter_repeat1, - STATE(2077), 1, - sym_type, - ACTIONS(235), 2, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -135930,7 +179939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -135964,290 +179973,11031 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3165] = 12, + [2761] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(3576), 1, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4345), 1, + sym__newline, + ACTIONS(4353), 1, + anon_sym_RBRACE, + STATE(1756), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [2848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 1, + anon_sym_LPAREN, + STATE(1773), 1, + sym_argument_list, + ACTIONS(492), 13, + ts_builtin_sym_end, anon_sym_COLON_COLON, - ACTIONS(3580), 1, + anon_sym_BANG, anon_sym_EQ, - STATE(390), 1, - sym_qualified_identifier, - STATE(2196), 1, - sym_type, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - ACTIONS(3578), 2, - anon_sym_func, - anon_sym_c_func, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3242] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1589), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3319] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3582), 1, - sym__newline, - STATE(390), 1, - sym_qualified_identifier, - STATE(435), 1, - sym_type, - STATE(1342), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3396] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1710), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3473] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3572), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(390), 1, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(494), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [2915] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4345), 1, + sym__newline, + ACTIONS(4357), 1, + anon_sym_RBRACE, + STATE(1756), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, sym_qualified_identifier, - STATE(1433), 1, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 15, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1071), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3065] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4359), 1, + anon_sym_RBRACE, + ACTIONS(4361), 1, + sym__newline, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1762), 1, + aux_sym_record_body_repeat1, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3152] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4299), 1, + anon_sym_struct, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4363), 1, + anon_sym_RBRACE, + ACTIONS(4365), 1, + sym__newline, + STATE(1757), 1, + aux_sym_record_body_repeat1, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2238), 1, + sym_record_field, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2236), 2, + sym_struct_type, + sym_type, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1193), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1195), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1083), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3363] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1785), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3443] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2501), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3523] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1789), 1, + aux_sym_type_repeat1, + ACTIONS(502), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(504), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3587] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4369), 1, + anon_sym_union, + ACTIONS(4371), 1, + anon_sym_enum, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(687), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3667] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4379), 1, + anon_sym_union, + ACTIONS(4381), 1, + anon_sym_enum, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(259), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1043), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(506), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(508), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [3871] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1785), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [3951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1191), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1151), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4075] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2968), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1155), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 1, + anon_sym_PIPE, + STATE(1780), 1, + aux_sym_type_repeat1, + ACTIONS(506), 12, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(508), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4283] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4379), 1, + anon_sym_union, + ACTIONS(4381), 1, + anon_sym_enum, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(269), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4363] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2943), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1085), 14, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1087), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4505] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2941), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1197), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1199), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1089), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1091), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1061), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1063), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1039), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4833] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1780), 1, + aux_sym_type_repeat1, + ACTIONS(513), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(515), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [4897] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4396), 1, + anon_sym_union, + ACTIONS(4398), 1, + anon_sym_enum, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2130), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [4977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1053), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1055), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5039] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2837), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5119] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1035), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5181] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2815), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5261] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1804), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5341] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2500), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5421] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2984), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5501] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4396), 1, + anon_sym_union, + ACTIONS(4398), 1, + anon_sym_enum, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2125), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5581] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2502), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4369), 1, + anon_sym_union, + ACTIONS(4371), 1, + anon_sym_enum, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(675), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5741] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 1, + anon_sym_union, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2503), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1119), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1121), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [5883] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 1, + anon_sym_enum, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_union, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1804), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1157), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1159), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1049), 14, + 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_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1051), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1205), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1207), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1115), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1117), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1067), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1075), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1103), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1105), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1107), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1109), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1111), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1113), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1131), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1133), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1135), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1137), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1139), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1143), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1145), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1147), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1161), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1163), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1165), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1167), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [6941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1169), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1171), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1173), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1175), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1179), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1183), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1187), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1203), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1211), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1215), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1217), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1219), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1223), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1225), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1227), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1231), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1233), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1235), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(605), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(607), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1239), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1241), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1243), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1247), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [7978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1251), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1253), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1255), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_BANG, + ACTIONS(1097), 12, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1099), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4406), 1, + anon_sym_BANG, + ACTIONS(1123), 12, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1125), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1077), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1079), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 13, + ts_builtin_sym_end, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(1019), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [8348] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4408), 1, + anon_sym_COLON_COLON, + ACTIONS(4410), 1, + anon_sym_test, + ACTIONS(4414), 1, + anon_sym_EQ, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3382), 1, + sym_type, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(4412), 2, + anon_sym_func, + anon_sym_c_func, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8428] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4416), 1, + sym__newline, + STATE(650), 1, + sym_qualified_identifier, + STATE(730), 1, + sym_type, + STATE(1860), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8505] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4418), 1, + sym__newline, + STATE(1847), 1, + aux_sym_import_declaration_repeat1, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2087), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8582] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2496), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8659] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2074), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8736] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4420), 1, + sym__newline, + STATE(46), 1, + sym_qualified_identifier, + STATE(245), 1, + sym_type, + STATE(1849), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8813] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(251), 1, + sym_type, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8890] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(2277), 1, aux_sym_parameter_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3290), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [8967] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2658), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9044] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2498), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9121] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4424), 1, + sym__newline, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1846), 1, + aux_sym_import_declaration_repeat1, + STATE(2497), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9198] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4426), 1, + sym__newline, + STATE(1865), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2521), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9275] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4428), 1, + sym__newline, + STATE(1851), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2766), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9352] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4430), 1, + anon_sym_COLON_COLON, + ACTIONS(4434), 1, + anon_sym_EQ, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3381), 1, + sym_type, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(4432), 2, + anon_sym_func, + anon_sym_c_func, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9429] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4436), 1, + sym__newline, + STATE(1858), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2697), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9506] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2709), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9583] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4438), 1, + sym__newline, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1839), 1, + sym_type, + STATE(1863), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9660] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + STATE(654), 1, + sym_type, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9737] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(1850), 1, + aux_sym_parameter_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3264), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9814] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(2277), 1, + aux_sym_parameter_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3268), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9891] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1840), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [9968] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(1862), 1, + aux_sym_parameter_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3186), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10045] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2538), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10122] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4440), 1, + sym__newline, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1852), 1, + aux_sym_import_declaration_repeat1, + STATE(2499), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10199] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4442), 1, + sym__newline, + STATE(1868), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2640), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10276] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2504), 1, + sym_qualified_identifier, + STATE(2746), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10353] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(246), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10427] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(1934), 1, + anon_sym_mut, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2098), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10501] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4444), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2116), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10575] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_mut, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2106), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10649] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4446), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1813), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10723] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4448), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1814), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10797] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4450), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1816), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10871] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4452), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1815), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [10945] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4454), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1818), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11019] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4456), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1819), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11093] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4458), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1820), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11167] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4460), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1822), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11241] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4462), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1825), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11315] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4464), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1826), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11389] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4466), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1827), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11463] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4468), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1828), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11537] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4470), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1833), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11611] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4472), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1834), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11685] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(235), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11759] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4474), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2073), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11833] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(247), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11907] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4476), 1, + anon_sym_enum, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3442), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [11981] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4478), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2090), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12055] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4480), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(252), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12129] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(273), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(253), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12203] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(331), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(255), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12277] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4482), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(254), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12351] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4484), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(260), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12425] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4486), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(261), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12499] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4488), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(262), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12573] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + anon_sym_mut, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(264), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12647] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4490), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(270), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12721] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4492), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(272), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12795] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4494), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(273), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12869] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4496), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(274), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [12943] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4498), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(87), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13017] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4500), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(280), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13091] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4502), 1, + anon_sym_mut, + STATE(622), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13165] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4504), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1788), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_PIPE, + STATE(1923), 1, + aux_sym_type_repeat1, + ACTIONS(502), 8, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(504), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [13301] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_mut, + STATE(633), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13375] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, + anon_sym_mut, + STATE(623), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13449] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4512), 1, + anon_sym_mut, + STATE(615), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13523] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1651), 1, + anon_sym_mut, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(639), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13597] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4514), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2092), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13671] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4516), 1, + anon_sym_mut, + STATE(619), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13745] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4518), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2095), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13819] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4520), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2122), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13893] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4522), 1, + anon_sym_enum, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3449), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [13967] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4524), 1, + anon_sym_enum, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3400), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14041] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4526), 1, + anon_sym_mut, + STATE(650), 1, + sym_qualified_identifier, + STATE(742), 1, + sym_type, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14115] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4528), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2124), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14189] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1623), 1, + anon_sym_mut, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(627), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14263] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4530), 1, + anon_sym_mut, + STATE(1788), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14337] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4506), 1, + anon_sym_PIPE, + STATE(1780), 1, + aux_sym_type_repeat1, + ACTIONS(513), 8, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(515), 40, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [14399] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + ACTIONS(4532), 1, + anon_sym_mut, + STATE(46), 1, + sym_qualified_identifier, + STATE(228), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14473] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(419), 1, + anon_sym_mut, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2076), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4534), 1, + anon_sym_mut, + STATE(639), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14621] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4536), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1808), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14695] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4538), 1, + anon_sym_mut, + STATE(616), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14769] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4540), 1, + anon_sym_mut, + STATE(630), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14843] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4542), 1, + anon_sym_mut, + STATE(635), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14917] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4544), 1, + anon_sym_mut, + STATE(607), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [14991] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(423), 1, + anon_sym_mut, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2100), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15065] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1643), 1, + anon_sym_mut, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(622), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15139] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + ACTIONS(4546), 1, + anon_sym_mut, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1810), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15213] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(417), 1, + anon_sym_mut, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2080), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15287] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, STATE(2078), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136255,7 +191005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136289,93 +191039,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3550] = 12, + [15361] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - ACTIONS(3584), 1, - sym__newline, - STATE(390), 1, - sym_qualified_identifier, - STATE(1350), 1, - aux_sym_import_declaration_repeat1, - STATE(1781), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [3627] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(369), 1, + ACTIONS(4550), 1, anon_sym_mut, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(451), 1, + STATE(2105), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136383,7 +191068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136417,28 +191102,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3701] = 11, + [15435] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4389), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3586), 1, + ACTIONS(4552), 1, anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(430), 1, + STATE(627), 1, sym_type, - ACTIONS(235), 2, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(395), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2506), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136446,7 +191131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136480,28 +191165,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3775] = 11, + [15509] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4367), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4373), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4375), 1, anon_sym_LBRACK, - ACTIONS(3588), 1, + ACTIONS(4554), 1, anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(418), 1, + STATE(610), 1, sym_type, - ACTIONS(235), 2, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(1618), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(648), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136509,7 +191194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136543,28 +191228,1288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3849] = 11, + [15583] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1667), 1, + anon_sym_mut, + ACTIONS(4367), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4373), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4375), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + STATE(611), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15657] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + anon_sym_mut, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(613), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15731] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4556), 1, + anon_sym_mut, + STATE(612), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15805] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4558), 1, + anon_sym_mut, + STATE(625), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15879] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4560), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2110), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [15953] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_mut, + STATE(610), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16027] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4564), 1, + anon_sym_mut, + STATE(640), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16101] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4566), 1, + anon_sym_mut, + STATE(633), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16175] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4568), 1, + anon_sym_mut, + STATE(623), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16249] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_mut, + STATE(615), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16323] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1695), 1, + anon_sym_mut, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(619), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16397] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4572), 1, + anon_sym_mut, + STATE(611), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16471] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(1920), 1, + anon_sym_mut, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2081), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16545] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + ACTIONS(4574), 1, + anon_sym_mut, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2113), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16619] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4576), 1, + anon_sym_mut, + STATE(613), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16693] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4578), 1, + anon_sym_mut, + STATE(616), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16767] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4580), 1, + anon_sym_mut, + STATE(630), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16841] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4582), 1, + anon_sym_mut, + STATE(635), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16915] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + ACTIONS(4584), 1, + anon_sym_mut, + STATE(607), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [16989] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4586), 1, + anon_sym_mut, + STATE(612), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [17063] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + ACTIONS(4588), 1, anon_sym_enum, - STATE(390), 1, + STATE(2504), 1, sym_qualified_identifier, - STATE(2367), 1, + STATE(3474), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(381), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(395), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2507), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136572,7 +192517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136606,28 +192551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3923] = 11, + [17137] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4367), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4373), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4375), 1, anon_sym_LBRACK, - ACTIONS(3592), 1, + ACTIONS(4590), 1, anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(404), 1, + STATE(640), 1, sym_type, - ACTIONS(235), 2, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(1618), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(648), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136635,7 +192580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136669,28 +192614,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3997] = 11, + [17211] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4367), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4373), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4375), 1, anon_sym_LBRACK, - ACTIONS(3594), 1, + ACTIONS(4592), 1, anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(401), 1, + STATE(625), 1, sym_type, - ACTIONS(235), 2, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(1618), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(648), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136698,7 +192643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136732,28 +192677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4071] = 11, + [17285] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4301), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4305), 1, anon_sym_LBRACK, - ACTIONS(3596), 1, + ACTIONS(4594), 1, anon_sym_mut, - STATE(390), 1, + STATE(1761), 1, sym_qualified_identifier, - STATE(443), 1, + STATE(1811), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(4297), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(4303), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(1770), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136761,7 +192706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(4307), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136795,28 +192740,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4145] = 11, + [17359] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4389), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3598), 1, - anon_sym_mut, - STATE(390), 1, + ACTIONS(4596), 1, + anon_sym_enum, + STATE(2504), 1, sym_qualified_identifier, - STATE(405), 1, + STATE(3528), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(381), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(395), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2507), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136824,7 +192769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136858,28 +192803,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4219] = 11, + [17433] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(401), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - STATE(390), 1, + ACTIONS(4598), 1, + anon_sym_mut, + STATE(2067), 1, sym_qualified_identifier, - STATE(392), 1, + STATE(2077), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136887,7 +192832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136921,28 +192866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4293] = 11, + [17507] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(241), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(451), 1, + STATE(2076), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -136950,7 +192893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -136984,28 +192927,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4367] = 11, + [17578] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3600), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(443), 1, + STATE(253), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137047,28 +192988,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4441] = 11, + [17649] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, - anon_sym_mut, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(2071), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137076,7 +193015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -137110,28 +193049,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4515] = 11, + [17720] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(447), 1, + STATE(254), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137173,28 +193110,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4589] = 11, + [17791] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - ACTIONS(3606), 1, - anon_sym_mut, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(423), 1, + STATE(2122), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137202,7 +193137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -137236,28 +193171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4663] = 11, + [17862] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3608), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(401), 1, + STATE(261), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137299,28 +193232,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4737] = 11, + [17933] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - ACTIONS(3610), 1, - anon_sym_mut, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(404), 1, + STATE(2124), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137328,7 +193259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -137362,28 +193293,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4811] = 11, + [18004] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3612), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(423), 1, + STATE(263), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137425,28 +193354,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4885] = 11, + [18075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3614), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(406), 1, + STATE(264), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137488,28 +193415,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4959] = 11, + [18146] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(1912), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4400), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4402), 1, anon_sym_LBRACK, - STATE(390), 1, + STATE(2067), 1, sym_qualified_identifier, - STATE(398), 1, + STATE(2092), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(413), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(415), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2002), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137517,7 +193442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(195), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -137551,28 +193476,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5033] = 11, + [18217] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3616), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(406), 1, + STATE(265), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137614,28 +193537,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5107] = 11, + [18288] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - ACTIONS(3618), 1, - anon_sym_mut, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(447), 1, + STATE(270), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137677,28 +193598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5181] = 11, + [18359] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4389), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - ACTIONS(3620), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(453), 1, + STATE(621), 1, sym_type, - ACTIONS(235), 2, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(395), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(2506), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137706,7 +193625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 33, + ACTIONS(1567), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -137740,28 +193659,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5255] = 11, + [18430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(395), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(437), 1, + STATE(271), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137803,28 +193720,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5329] = 11, + [18501] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(337), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(4377), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4383), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4385), 1, anon_sym_LBRACK, - STATE(390), 1, + STATE(46), 1, sym_qualified_identifier, - STATE(437), 1, + STATE(272), 1, sym_type, - ACTIONS(235), 2, + ACTIONS(263), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(268), 2, anon_sym_AT, anon_sym_STAR, - STATE(391), 7, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137866,28 +193781,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5403] = 11, + [18572] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, - anon_sym_mut, - ACTIONS(1940), 1, + ACTIONS(1893), 1, sym_identifier, - ACTIONS(3520), 1, + ACTIONS(4389), 1, anon_sym_QMARK, - ACTIONS(3522), 1, + ACTIONS(4391), 1, anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(416), 1, + STATE(606), 1, sym_type, - ACTIONS(235), 2, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(239), 2, + ACTIONS(395), 2, anon_sym_AT, anon_sym_STAR, - STATE(387), 7, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18643] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(640), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18714] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(275), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -137929,3224 +193964,8992 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5477] = 11, + [18785] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(277), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18856] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(278), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18927] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(87), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [18998] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(280), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19069] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2097), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19140] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(282), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19211] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(283), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19282] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(1787), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19353] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1793), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19424] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2127), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19495] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2100), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19566] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2128), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19637] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(623), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19708] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(625), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19779] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2102), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19850] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(617), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19921] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(619), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [19992] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + STATE(701), 1, + sym_type, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20063] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2059), 1, + aux_sym_type_repeat1, + ACTIONS(504), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(502), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [20122] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(624), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20193] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2079), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20264] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(636), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20335] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + STATE(733), 1, + sym_type, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20406] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(637), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20477] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3461), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20548] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2582), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20619] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(2583), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1908), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20690] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2121), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20761] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1810), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20832] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(1793), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20903] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2105), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [20974] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(227), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21045] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 1, + anon_sym_PIPE, + STATE(2016), 1, + aux_sym_type_repeat1, + ACTIONS(508), 16, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(506), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [21106] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2098), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21177] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1787), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21248] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(616), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21319] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1814), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21390] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(618), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21461] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3443), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21532] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2109), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21603] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1815), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21674] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2110), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21745] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(608), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21816] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(639), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21887] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1819), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [21958] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2078), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22029] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1821), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22100] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1822), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22171] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(611), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22242] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1823), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22313] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(612), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22384] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1825), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22455] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1806), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22526] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1826), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22597] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2118), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22668] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(611), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(623), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22810] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1829), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22881] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1831), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [22952] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(617), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23023] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(619), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23094] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1832), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23165] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(624), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23236] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1833), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23307] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(612), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23378] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(639), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23449] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1834), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23520] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(616), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23591] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1836), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23662] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(618), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23733] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(630), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23804] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + STATE(1837), 1, + sym_type, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1770), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23875] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(234), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [23946] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(608), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24017] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(621), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24088] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2016), 1, + aux_sym_type_repeat1, + ACTIONS(515), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(513), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [24147] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3475), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24218] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(606), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24289] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(640), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24360] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(625), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24431] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + STATE(246), 1, + sym_type, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(48), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24502] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(636), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24573] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(637), 1, + sym_type, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(648), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym_argument_list, + ACTIONS(494), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(492), 30, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [24705] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + STATE(3393), 1, + sym_type, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2507), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24776] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + STATE(2120), 1, + sym_type, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2002), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24847] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(630), 1, + sym_type, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2506), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [24918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1235), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1233), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [24974] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(385), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(390), 29, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1129), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4605), 1, + anon_sym_BANG, + ACTIONS(1125), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1123), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25152] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4607), 1, + anon_sym_LBRACE, + STATE(2153), 1, + sym_variant_payload, + ACTIONS(483), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(481), 30, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1133), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1039), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1037), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1139), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1137), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1063), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1061), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1143), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1141), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1067), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1065), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1043), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1041), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1147), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1145), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1017), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1073), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25772] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(490), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(488), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [25838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4615), 1, + anon_sym_BANG, + ACTIONS(1099), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1097), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1191), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1189), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [25952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1071), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1069), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1163), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1161), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26064] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(551), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(549), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [26130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1167), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1165), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26186] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1053), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1153), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1171), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1169), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(508), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(506), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1173), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1105), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1103), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1193), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1179), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1177), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_QMARK, + ACTIONS(4375), 1, + anon_sym_LBRACK, + STATE(650), 1, + sym_qualified_identifier, + ACTIONS(1613), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(1618), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(707), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1183), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1181), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1185), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26814] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4383), 1, + anon_sym_QMARK, + ACTIONS(4385), 1, + anon_sym_LBRACK, + STATE(46), 1, + sym_qualified_identifier, + ACTIONS(263), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(268), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(237), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [26882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1203), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1201), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1109), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1107), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [26994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1087), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1085), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1151), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1149), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1207), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1205), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1211), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1209), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27218] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(545), 15, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(543), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [27284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 17, + 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(1049), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1215), 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(1213), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1121), 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(1119), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1113), 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(1111), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1219), 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(1217), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27564] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + sym_identifier, + ACTIONS(4400), 1, + anon_sym_QMARK, + ACTIONS(4402), 1, + anon_sym_LBRACK, + STATE(2067), 1, + sym_qualified_identifier, + ACTIONS(413), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(415), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(2096), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(195), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [27632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1223), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1221), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1227), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1225), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1229), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1035), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1033), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(607), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(605), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1091), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1089), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [27968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1237), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1159), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1157), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1243), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1241), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1245), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28192] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1249), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1253), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1199), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1197), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28360] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4617), 1, + anon_sym_DOT, + ACTIONS(1023), 16, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + ACTIONS(1021), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28418] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(451), 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(449), 27, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [28484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1083), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1081), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28540] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_QMARK, + ACTIONS(4391), 1, + anon_sym_LBRACK, + STATE(2504), 1, + sym_qualified_identifier, + ACTIONS(381), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(395), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1774), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(1567), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1079), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1077), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1117), 17, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1115), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28720] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + sym_identifier, + ACTIONS(4301), 1, + anon_sym_QMARK, + ACTIONS(4305), 1, + anon_sym_LBRACK, + STATE(1761), 1, + sym_qualified_identifier, + ACTIONS(4297), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(4303), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1774), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(4307), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [28788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1013), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [28843] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(383), 1, - anon_sym_mut, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(416), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5551] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3622), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(446), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5625] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(345), 1, - anon_sym_mut, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(436), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5699] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3624), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(425), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5773] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3626), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(425), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5847] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3628), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(418), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5921] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3630), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(430), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5995] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(361), 1, - anon_sym_mut, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(392), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6069] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - ACTIONS(3632), 1, - anon_sym_mut, - STATE(390), 1, - sym_qualified_identifier, - STATE(405), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6143] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(410), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6214] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(425), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6285] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(422), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6356] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(420), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6427] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(408), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6498] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(1651), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6569] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(392), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6640] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(446), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6711] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(430), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6782] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(405), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6853] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(423), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6924] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(410), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [6995] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(2342), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7066] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(415), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7137] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(446), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7208] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(416), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7279] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(418), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7350] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(449), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7421] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(415), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7492] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(436), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7563] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(394), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7634] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(425), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7705] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(428), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7776] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(402), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7847] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(416), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7918] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(423), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [7989] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(428), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8060] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(409), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8131] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(430), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8202] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(408), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8273] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(1675), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8344] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(402), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8415] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(420), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8486] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(418), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8557] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(392), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8628] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(409), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8699] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(436), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8770] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(422), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8841] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(405), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(387), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8912] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(414), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 33, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [8980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3636), 1, - anon_sym_COMMA, - ACTIONS(3638), 6, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3634), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3642), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3640), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3646), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3644), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 6, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3648), 37, - anon_sym_func, - anon_sym_c_func, - anon_sym_struct, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9189] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 1, anon_sym_BANG, - ACTIONS(1008), 1, + ACTIONS(387), 1, anon_sym_LPAREN, - ACTIONS(1027), 1, + ACTIONS(408), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(1021), 1, anon_sym_LBRACE, - ACTIONS(1006), 17, + ACTIONS(390), 20, + ts_builtin_sym_end, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + ACTIONS(385), 23, anon_sym_import, anon_sym_test, anon_sym_hide, anon_sym_EQ, anon_sym_DASH, + anon_sym_PIPE, anon_sym_STAR, anon_sym_else, anon_sym_DOT_DOT, @@ -141156,44 +202959,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(1011), 21, - ts_builtin_sym_end, - anon_sym_RPAREN, - 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_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, - sym__newline, - [9247] = 5, + [28906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, + ACTIONS(4619), 1, anon_sym_LBRACE, - STATE(477), 1, + STATE(113), 1, sym_variant_payload, - ACTIONS(1466), 18, + ACTIONS(481), 21, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + ACTIONS(483), 24, anon_sym_import, anon_sym_test, anon_sym_hide, anon_sym_EQ, anon_sym_DASH, + anon_sym_PIPE, anon_sym_STAR, anon_sym_else, anon_sym_DOT_DOT, @@ -141203,17 +203012,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_DOT, sym_identifier, - ACTIONS(1464), 22, - ts_builtin_sym_end, + [28965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1031), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1029), 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, @@ -141222,27 +203055,7457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [9301] = 5, + [29020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(611), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(609), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1433), 1, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(385), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(390), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(615), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(613), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(623), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(621), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(629), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(635), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(633), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(637), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(645), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(651), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(649), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(657), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(655), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(661), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(659), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(757), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(755), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(759), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(775), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(773), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(779), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(777), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(783), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(781), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(641), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [29955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(787), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(785), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(791), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(789), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(795), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(793), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(258), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(253), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(805), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(811), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(809), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(371), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(821), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(819), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1045), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1059), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1057), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(643), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(641), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(823), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(827), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(833), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(831), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(837), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(835), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(286), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(281), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(845), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(851), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(849), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [30945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(855), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(853), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1093), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(363), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(357), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(359), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(863), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(861), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(867), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(865), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(871), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(869), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(875), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(873), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(879), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(877), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(889), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(895), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(893), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(899), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(897), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(903), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(901), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(907), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(905), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(909), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(913), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(365), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(367), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(919), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(917), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(923), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(921), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [31990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(927), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(925), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(931), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(929), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(933), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(937), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(947), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(953), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(951), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(957), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(955), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(961), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(959), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(965), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(963), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(969), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(967), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(971), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(977), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(975), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(979), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(985), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(983), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(991), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(989), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(995), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(993), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(997), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1003), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1001), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [32980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1005), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1011), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(1009), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(859), 16, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DOT, + ACTIONS(857), 31, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + sym__newline, + [33145] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4633), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4635), 1, + anon_sym_orelse, + ACTIONS(4637), 1, + anon_sym_catch, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1597), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1593), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + ACTIONS(4629), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [33237] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(449), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(451), 19, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + [33305] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(549), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(551), 21, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [33371] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 16, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(549), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [33441] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4635), 1, + anon_sym_orelse, + ACTIONS(4637), 1, + anon_sym_catch, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(549), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [33525] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(549), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [33605] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(561), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [33683] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 11, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(561), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [33759] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(549), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [33831] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(549), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(551), 19, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + [33899] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(449), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(451), 21, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [33965] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 16, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(449), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [34035] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4635), 1, + anon_sym_orelse, + ACTIONS(4637), 1, + anon_sym_catch, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 7, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(449), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [34119] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(449), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [34199] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4641), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(477), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [34277] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 11, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(477), 13, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [34353] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(449), 17, + ts_builtin_sym_end, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [34425] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4631), 1, + anon_sym_DOT_DOT, + ACTIONS(4633), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4635), 1, + anon_sym_orelse, + ACTIONS(4637), 1, + anon_sym_catch, + ACTIONS(4639), 1, + anon_sym_or, + ACTIONS(4641), 1, + anon_sym_and, + ACTIONS(4649), 1, + anon_sym_EQ, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1597), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4623), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4627), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4645), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4625), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4647), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1593), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(4643), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4651), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [34516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(613), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(615), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [34568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4655), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4653), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [34620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4659), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4657), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [34672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4663), 1, + anon_sym_COMMA, + ACTIONS(4665), 6, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4661), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [34726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(645), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(647), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [34778] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(449), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_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, + [34845] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(449), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(451), 18, + 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, + [34908] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(449), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [34985] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + ACTIONS(4683), 1, + anon_sym_orelse, + ACTIONS(4685), 1, + anon_sym_catch, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(451), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35066] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(477), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35139] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(451), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(449), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [35208] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + ACTIONS(449), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [35273] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(477), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35348] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + ACTIONS(4683), 1, + anon_sym_orelse, + ACTIONS(4685), 1, + anon_sym_catch, + ACTIONS(4687), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_DOT_DOT, + ACTIONS(4693), 1, + anon_sym_DOT_DOT_EQ, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1593), 2, + anon_sym_else, + sym_identifier, + ACTIONS(1597), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4689), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [35437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 6, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4695), 37, + anon_sym_func, + anon_sym_c_func, + anon_sym_struct, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [35488] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + sym_identifier, + ACTIONS(549), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [35555] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(549), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(551), 18, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym_identifier, + [35618] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + ACTIONS(4683), 1, + anon_sym_orelse, + ACTIONS(4685), 1, + anon_sym_catch, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(551), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35699] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(549), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35776] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + anon_sym_and, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(561), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35851] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 8, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(561), 13, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + sym__newline, + [35924] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(551), 10, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + ACTIONS(549), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [35993] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 16, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym_identifier, + ACTIONS(549), 17, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36058] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36122] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4703), 1, + anon_sym_RPAREN, + ACTIONS(4710), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(4728), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3319), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4708), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [36212] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + ACTIONS(463), 1, + anon_sym_LBRACK, + ACTIONS(475), 1, + anon_sym_DOT, + ACTIONS(1593), 1, + sym_identifier, + ACTIONS(4675), 1, + anon_sym_or, + ACTIONS(4677), 1, + anon_sym_and, + ACTIONS(4683), 1, + anon_sym_orelse, + ACTIONS(4685), 1, + anon_sym_catch, + ACTIONS(4691), 1, + anon_sym_DOT_DOT, + ACTIONS(4693), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4731), 1, + anon_sym_EQ, + STATE(99), 1, + sym_argument_list, + ACTIONS(459), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1597), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(4667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4669), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4681), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4671), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4673), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4679), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4733), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [36300] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(4735), 1, + anon_sym_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1597), 3, + anon_sym_RPAREN, + anon_sym_else, + sym__newline, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4737), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [36386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 13, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + ACTIONS(549), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36448] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(549), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36514] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(551), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 14, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [36594] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(551), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [36670] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(563), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [36744] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(563), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 17, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [36816] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36884] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 13, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + ACTIONS(449), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [36946] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(449), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [37012] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(451), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 14, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [37092] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(451), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [37168] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(479), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 16, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [37242] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(479), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 17, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [37314] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 5, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(449), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [37382] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 21, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [37446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4741), 1, + anon_sym_COMMA, + STATE(2277), 1, aux_sym_parameter_repeat1, - ACTIONS(3657), 4, + ACTIONS(4744), 4, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3652), 36, + ACTIONS(4739), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -141279,3676 +210542,4284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9355] = 3, + [37500] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3661), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3659), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3665), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3663), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3669), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3667), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3671), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3677), 5, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3675), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3679), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3685), 5, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - ACTIONS(3683), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3689), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3687), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3693), 5, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_STAR, - anon_sym_LBRACK, - sym__newline, - ACTIONS(3691), 36, - anon_sym_func, - anon_sym_c_func, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_uint, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - sym_identifier, - [9796] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 7, + ACTIONS(4701), 1, anon_sym_EQ, - anon_sym_DASH, + ACTIONS(4710), 1, anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(1176), 19, + ACTIONS(4720), 1, + anon_sym_and, + ACTIONS(4746), 1, 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4749), 1, sym__newline, - [9850] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3701), 1, - anon_sym_orelse, - ACTIONS(3703), 1, - anon_sym_catch, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1190), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [9918] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1487), 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, - [9980] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3701), 1, - anon_sym_orelse, - ACTIONS(3703), 1, - anon_sym_catch, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - ACTIONS(3713), 1, - anon_sym_EQ, - ACTIONS(3717), 1, - anon_sym_DOT_DOT, - ACTIONS(3719), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1513), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3715), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - ACTIONS(1509), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - [10056] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1190), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 19, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_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, - [10112] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 14, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [10174] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 15, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [10234] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1487), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 15, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [10294] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1483), 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, - [10354] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1178), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 12, - 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_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [10422] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(1188), 19, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_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, - [10476] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3733), 1, - anon_sym_or, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1178), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 14, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [10540] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1487), 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, - [10600] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1188), 11, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1190), 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, - [10656] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3733), 1, - anon_sym_or, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1190), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 14, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [10720] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1188), 11, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1190), 15, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_DASH, - 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_PLUS, - sym_identifier, - [10774] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3701), 1, - anon_sym_orelse, - ACTIONS(3703), 1, - anon_sym_catch, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1178), 7, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - [10842] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 5, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 19, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_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, - [10898] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1190), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 12, - 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_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [10966] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1483), 3, - anon_sym_EQ, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 14, - 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_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [11028] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1178), 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, - [11092] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1190), 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, - [11156] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3707), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 7, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1483), 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, - [11218] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1176), 11, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1178), 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, - [11274] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1176), 11, - ts_builtin_sym_end, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1178), 15, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_EQ, - anon_sym_DASH, - 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_PLUS, - sym_identifier, - [11328] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3701), 1, - anon_sym_orelse, - ACTIONS(3703), 1, - anon_sym_catch, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - ACTIONS(3717), 1, - anon_sym_DOT_DOT, - ACTIONS(3719), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3735), 1, - anon_sym_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1513), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3697), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3699), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1509), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3737), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [11403] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_orelse, - ACTIONS(3745), 1, - anon_sym_catch, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1190), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [11469] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1483), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(1481), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [11529] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1190), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(1188), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [11591] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1487), 7, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - sym_identifier, - ACTIONS(1485), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [11651] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1178), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - ACTIONS(1176), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [11713] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 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(1188), 12, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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, - [11767] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1483), 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, - [11825] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1188), 12, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1190), 12, - anon_sym_EQ, - anon_sym_DASH, - 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_PLUS, - sym_identifier, - [11877] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 1, - anon_sym_BANG, - ACTIONS(1008), 1, - anon_sym_LPAREN, - ACTIONS(1027), 1, - anon_sym_DOT, - ACTIONS(1118), 1, - anon_sym_LBRACE, - ACTIONS(1635), 1, - anon_sym_COLON, - ACTIONS(1006), 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, - ACTIONS(1011), 15, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_DASH, - 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_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [11927] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1487), 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, - [11985] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 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(1176), 12, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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, - [12039] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1176), 12, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_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(1178), 12, - anon_sym_EQ, - anon_sym_DASH, - 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_PLUS, - sym_identifier, - [12091] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_orelse, - ACTIONS(3745), 1, - anon_sym_catch, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1178), 4, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 8, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [12157] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_orelse, - ACTIONS(3745), 1, - anon_sym_catch, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3759), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1509), 2, - anon_sym_else, - sym_identifier, - ACTIONS(1513), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3757), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12230] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3763), 1, - anon_sym_EQ, - ACTIONS(3765), 1, - anon_sym_RPAREN, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3774), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2068), 1, + STATE(3171), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, + ACTIONS(4697), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3768), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12304] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3763), 1, - anon_sym_EQ, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3777), 1, - anon_sym_RPAREN, - ACTIONS(3780), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2138), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, + ACTIONS(4699), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, + ACTIONS(4724), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3768), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12378] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3783), 1, - anon_sym_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3721), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1513), 3, - anon_sym_RPAREN, - anon_sym_else, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3785), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12448] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1509), 1, - sym_identifier, - ACTIONS(3743), 1, - anon_sym_orelse, - ACTIONS(3745), 1, - anon_sym_catch, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3759), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3787), 1, - anon_sym_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1513), 2, - anon_sym_LBRACE, - sym__newline, - ACTIONS(3739), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3741), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3789), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12520] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3701), 1, - anon_sym_orelse, - ACTIONS(3703), 1, - anon_sym_catch, - ACTIONS(3705), 1, - anon_sym_or, - ACTIONS(3707), 1, - anon_sym_and, - ACTIONS(3717), 1, - anon_sym_DOT_DOT, - ACTIONS(3719), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1629), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3711), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3791), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3793), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3709), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1627), 5, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - anon_sym_else, - sym_identifier, - [12587] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, + ACTIONS(4706), 3, anon_sym_PIPE, - ACTIONS(3803), 1, - anon_sym_COLON, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(3821), 1, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4708), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [37590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4754), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, sym__newline, - STATE(507), 1, + ACTIONS(4752), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37639] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4701), 1, + anon_sym_EQ, + ACTIONS(4710), 1, + anon_sym_DOT_DOT, + ACTIONS(4712), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4714), 1, + anon_sym_orelse, + ACTIONS(4716), 1, + anon_sym_catch, + ACTIONS(4718), 1, + anon_sym_or, + ACTIONS(4720), 1, + anon_sym_and, + STATE(2147), 1, sym_argument_list, - STATE(1623), 1, + ACTIONS(1597), 2, + anon_sym_RPAREN, + sym__newline, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4697), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4699), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4724), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4706), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4726), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4722), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4708), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_xor_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_PIPE_EQ, + [37724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4758), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4756), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4762), 5, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4760), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4764), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4770), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4768), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4774), 5, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(4772), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [37969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4778), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4776), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [38018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4782), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4780), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [38067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4786), 5, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_STAR, + anon_sym_LBRACK, + sym__newline, + ACTIONS(4784), 36, + anon_sym_func, + anon_sym_c_func, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + sym_identifier, + [38116] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + anon_sym_BANG, + ACTIONS(1779), 1, + anon_sym_COLON, + ACTIONS(385), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(390), 18, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [38171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_variant_payload, + ACTIONS(483), 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(481), 19, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [38219] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(549), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [38275] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [38337] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [38413] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [38485] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(563), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [38555] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(563), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [38623] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(551), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [38687] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(551), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(549), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [38745] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [38821] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [38893] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4806), 1, + anon_sym_and, + STATE(2147), 1, + sym_argument_list, + ACTIONS(479), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 11, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [38963] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(479), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [39031] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(449), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [39093] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(451), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(449), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [39151] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(449), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [39207] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(451), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(449), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [39271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1750), 1, + anon_sym_BANG, + ACTIONS(385), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(390), 18, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [39323] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(549), 13, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + ACTIONS(551), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [39378] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(449), 13, + ts_builtin_sym_end, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + ACTIONS(451), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [39433] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4818), 1, + anon_sym_DOT_DOT, + ACTIONS(4820), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4822), 1, + anon_sym_orelse, + ACTIONS(4824), 1, + anon_sym_catch, + ACTIONS(4826), 1, + anon_sym_or, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1799), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1797), 5, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + sym_identifier, + [39514] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4822), 1, + anon_sym_orelse, + ACTIONS(4824), 1, + anon_sym_catch, + ACTIONS(4826), 1, + anon_sym_or, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [39591] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 9, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(451), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [39652] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_or, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 8, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [39725] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(561), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [39796] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(561), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [39865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(551), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [39930] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(549), 11, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + ACTIONS(551), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [39987] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4822), 1, + anon_sym_orelse, + ACTIONS(4824), 1, + anon_sym_catch, + ACTIONS(4826), 1, + anon_sym_or, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 6, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + [40064] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 9, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(551), 13, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [40125] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4826), 1, + anon_sym_or, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 8, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [40198] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4828), 1, + anon_sym_and, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(477), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 9, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [40269] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4832), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(477), 3, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4830), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 10, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [40338] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4834), 1, + anon_sym_xor, + ACTIONS(4836), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4838), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 7, + ts_builtin_sym_end, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(451), 12, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [40403] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4812), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4814), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(449), 11, + ts_builtin_sym_end, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + ACTIONS(451), 14, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + [40460] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4840), 1, + anon_sym_COMMA, + ACTIONS(4842), 1, + anon_sym_SEMI, + ACTIONS(4844), 1, + anon_sym_RBRACK, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4850), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2663), 1, aux_sym_match_arm_repeat1, - STATE(2156), 1, + STATE(3119), 1, aux_sym_import_declaration_repeat1, - STATE(2280), 1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40546] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4852), 1, + anon_sym_COMMA, + ACTIONS(4854), 1, + anon_sym_SEMI, + ACTIONS(4856), 1, + anon_sym_RBRACK, + ACTIONS(4858), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2670), 1, + aux_sym_match_arm_repeat1, + STATE(2878), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40632] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4852), 1, + anon_sym_COMMA, + ACTIONS(4854), 1, + anon_sym_SEMI, + ACTIONS(4860), 1, + anon_sym_RBRACK, + ACTIONS(4862), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2670), 1, + aux_sym_match_arm_repeat1, + STATE(3075), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40718] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4840), 1, + anon_sym_COMMA, + ACTIONS(4842), 1, + anon_sym_SEMI, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4864), 1, + anon_sym_RBRACK, + ACTIONS(4866), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2663), 1, + aux_sym_match_arm_repeat1, + STATE(2913), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40804] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(4870), 1, + anon_sym_SEMI, + ACTIONS(4872), 1, + anon_sym_RBRACK, + ACTIONS(4874), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2754), 1, + aux_sym_match_arm_repeat1, + STATE(2916), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40890] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4876), 1, + anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_SEMI, + ACTIONS(4880), 1, + anon_sym_RBRACK, + ACTIONS(4882), 1, + anon_sym_DOT_DOT, + ACTIONS(4884), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2696), 1, + aux_sym_match_arm_repeat1, + STATE(2952), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [40976] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4886), 1, + anon_sym_COMMA, + ACTIONS(4888), 1, + anon_sym_SEMI, + ACTIONS(4890), 1, + anon_sym_RBRACK, + ACTIONS(4892), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2745), 1, + aux_sym_match_arm_repeat1, + STATE(2902), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41062] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4894), 1, + sym_identifier, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(4904), 1, + anon_sym_COLON, + ACTIONS(4906), 1, + anon_sym_DOT_DOT, + ACTIONS(4908), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4910), 1, + anon_sym_orelse, + ACTIONS(4912), 1, + anon_sym_catch, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + ACTIONS(4928), 1, + sym__newline, + STATE(686), 1, + sym_argument_list, + STATE(1616), 1, + sym_block, + STATE(2749), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41150] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4876), 1, + anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_SEMI, + ACTIONS(4930), 1, + anon_sym_RBRACK, + ACTIONS(4932), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2696), 1, + aux_sym_match_arm_repeat1, + STATE(2923), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41236] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4886), 1, + anon_sym_COMMA, + ACTIONS(4888), 1, + anon_sym_SEMI, + ACTIONS(4934), 1, + anon_sym_RBRACK, + ACTIONS(4936), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2745), 1, + aux_sym_match_arm_repeat1, + STATE(2924), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41322] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4876), 1, + anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_SEMI, + ACTIONS(4938), 1, + anon_sym_RBRACK, + ACTIONS(4940), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2696), 1, + aux_sym_match_arm_repeat1, + STATE(2825), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41408] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(4870), 1, + anon_sym_SEMI, + ACTIONS(4942), 1, + anon_sym_RBRACK, + ACTIONS(4944), 1, + anon_sym_DOT_DOT, + ACTIONS(4946), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2754), 1, + aux_sym_match_arm_repeat1, + STATE(3015), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41494] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4948), 1, + anon_sym_COMMA, + ACTIONS(4950), 1, + anon_sym_SEMI, + ACTIONS(4952), 1, + anon_sym_RBRACK, + ACTIONS(4954), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2751), 1, + aux_sym_match_arm_repeat1, + STATE(2887), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41580] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4956), 1, + anon_sym_COMMA, + ACTIONS(4958), 1, + anon_sym_PIPE, + ACTIONS(4960), 1, + anon_sym_COLON, + ACTIONS(4962), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2539), 1, + aux_sym_match_arm_repeat1, + STATE(3234), 1, + aux_sym_import_declaration_repeat1, + STATE(3451), 1, sym_match_capture, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3819), 2, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3817), 4, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12664] = 19, + [41668] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3763), 1, - anon_sym_EQ, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1513), 2, - anon_sym_RPAREN, + ACTIONS(4948), 1, + anon_sym_COMMA, + ACTIONS(4950), 1, + anon_sym_SEMI, + ACTIONS(4964), 1, + anon_sym_RBRACK, + ACTIONS(4966), 1, sym__newline, - ACTIONS(3695), 2, + STATE(2147), 1, + sym_argument_list, + STATE(2751), 1, + aux_sym_match_arm_repeat1, + STATE(2851), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3721), 2, + ACTIONS(4792), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3727), 2, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3725), 4, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3768), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [12733] = 22, + [41754] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3745), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3747), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3749), 1, + ACTIONS(4806), 1, anon_sym_and, - ACTIONS(3759), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, + ACTIONS(4840), 1, + anon_sym_COMMA, + ACTIONS(4842), 1, + anon_sym_SEMI, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(4882), 1, + anon_sym_DOT_DOT, + ACTIONS(4968), 1, + anon_sym_RBRACK, + ACTIONS(4970), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2663), 1, + aux_sym_match_arm_repeat1, + STATE(3089), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41840] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4886), 1, + anon_sym_COMMA, + ACTIONS(4888), 1, + anon_sym_SEMI, + ACTIONS(4944), 1, + anon_sym_DOT_DOT, + ACTIONS(4972), 1, + anon_sym_RBRACK, + ACTIONS(4974), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2745), 1, + aux_sym_match_arm_repeat1, + STATE(2957), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [41926] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(4870), 1, + anon_sym_SEMI, + ACTIONS(4976), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2754), 1, + aux_sym_match_arm_repeat1, + STATE(2800), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [42012] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4896), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(4906), 1, + anon_sym_DOT_DOT, + ACTIONS(4908), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4910), 1, + anon_sym_orelse, + ACTIONS(4912), 1, + anon_sym_catch, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4982), 1, anon_sym_COLON, - ACTIONS(3833), 1, + ACTIONS(4984), 1, sym__newline, - STATE(507), 1, + STATE(686), 1, sym_argument_list, - STATE(1029), 1, + STATE(1473), 1, sym_block, - STATE(1749), 1, + STATE(2633), 1, aux_sym_import_declaration_repeat1, ACTIONS(35), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3827), 2, + ACTIONS(4898), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3829), 2, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3751), 4, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4918), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12807] = 22, + [42100] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(2741), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, + ACTIONS(4986), 1, anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3843), 1, - anon_sym_RBRACK, - ACTIONS(3845), 1, + ACTIONS(4988), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1742), 1, + STATE(2767), 1, aux_sym_match_arm_repeat1, - STATE(1819), 1, + STATE(2907), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12881] = 22, + [42183] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(2691), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3743), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3745), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3747), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3749), 1, + ACTIONS(4806), 1, anon_sym_and, - ACTIONS(3759), 1, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3761), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(3847), 1, - sym_identifier, - ACTIONS(3849), 1, - anon_sym_COLON, - ACTIONS(3851), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1171), 1, - sym_block, - STATE(1756), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3827), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3829), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3751), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [12955] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, + ACTIONS(4990), 1, anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3853), 1, - anon_sym_RBRACK, - ACTIONS(3855), 1, + ACTIONS(4992), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1742), 1, + STATE(2690), 1, aux_sym_match_arm_repeat1, - STATE(2040), 1, + STATE(2893), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13029] = 22, + [42266] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(2689), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3861), 1, - anon_sym_RBRACK, - ACTIONS(3863), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_match_arm_repeat1, - STATE(1808), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13103] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, + ACTIONS(4806), 1, anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, + ACTIONS(4994), 1, anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3865), 1, - anon_sym_RBRACK, - ACTIONS(3867), 1, + ACTIONS(4996), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1750), 1, + STATE(2681), 1, aux_sym_match_arm_repeat1, - STATE(1852), 1, + STATE(2883), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13177] = 22, + [42349] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3869), 1, - anon_sym_RBRACK, - ACTIONS(3871), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1742), 1, - aux_sym_match_arm_repeat1, - STATE(2046), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13251] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3873), 1, - anon_sym_RBRACK, - ACTIONS(3875), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_match_arm_repeat1, - STATE(1811), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13325] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_SEMI, - ACTIONS(3879), 1, - anon_sym_RBRACK, - ACTIONS(3881), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1742), 1, - aux_sym_match_arm_repeat1, - STATE(1840), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13399] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3885), 1, - anon_sym_RBRACK, - ACTIONS(3887), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_match_arm_repeat1, - STATE(1843), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13473] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3889), 1, - anon_sym_RBRACK, - ACTIONS(3891), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_match_arm_repeat1, - STATE(1833), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13547] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(3841), 1, - anon_sym_SEMI, - ACTIONS(3893), 1, - anon_sym_RBRACK, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1742), 1, - aux_sym_match_arm_repeat1, - STATE(2041), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13621] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3835), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_SEMI, - ACTIONS(3899), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1742), 1, - aux_sym_match_arm_repeat1, - STATE(1828), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13695] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(3859), 1, - anon_sym_SEMI, - ACTIONS(3903), 1, - anon_sym_RBRACK, - ACTIONS(3905), 1, - anon_sym_DOT_DOT, - ACTIONS(3907), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1750), 1, - aux_sym_match_arm_repeat1, - STATE(1998), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [13769] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1864), 1, + ACTIONS(2376), 1, anon_sym_RBRACE, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3909), 1, + ACTIONS(4998), 1, anon_sym_COMMA, - ACTIONS(3911), 1, + ACTIONS(5000), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1745), 1, + STATE(2668), 1, aux_sym_initializer_list_repeat1, - STATE(1856), 1, + STATE(2976), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13840] = 21, + [42432] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(2559), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(1862), 1, - anon_sym_RBRACE, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3913), 1, + ACTIONS(5002), 1, anon_sym_COMMA, - ACTIONS(3915), 1, + ACTIONS(5004), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1765), 1, + STATE(2656), 1, + aux_sym_match_arm_repeat1, + STATE(2868), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [42515] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5006), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym__newline, + [42590] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1779), 1, + anon_sym_COLON, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 23, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [42641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5010), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(385), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [42686] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_EQ, + ACTIONS(5014), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 20, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [42739] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5017), 1, + anon_sym_COMMA, + ACTIONS(5019), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2737), 1, aux_sym_initializer_list_repeat1, - STATE(1927), 1, + STATE(2937), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13911] = 5, + [42822] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3917), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3919), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1006), 8, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 13, + ACTIONS(4603), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(4611), 1, anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, + ACTIONS(4986), 1, + anon_sym_COMMA, + ACTIONS(5021), 1, + anon_sym_RPAREN, + ACTIONS(5023), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2767), 1, + aux_sym_match_arm_repeat1, + STATE(2999), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [13950] = 19, + [42905] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, + ACTIONS(551), 1, anon_sym_DOT_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3921), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5025), 1, anon_sym_RBRACK, - ACTIONS(3923), 1, + ACTIONS(5027), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2089), 1, + STATE(3136), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1188), 3, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym_DOT_DOT_EQ, - ACTIONS(3725), 4, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14017] = 21, + [42984] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3925), 1, - anon_sym_RPAREN, - ACTIONS(3927), 1, + ACTIONS(5002), 1, anon_sym_COMMA, - ACTIONS(3929), 1, + ACTIONS(5029), 1, + anon_sym_RPAREN, + ACTIONS(5031), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(1707), 1, + STATE(2656), 1, aux_sym_match_arm_repeat1, - STATE(2036), 1, + STATE(3057), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14088] = 5, + [43067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 2, + ACTIONS(5033), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(3933), 4, + ACTIONS(5035), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - ACTIONS(1006), 8, + ACTIONS(385), 10, anon_sym_DOT_DOT, anon_sym_orelse, anon_sym_catch, @@ -144956,10 +214827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_LT, anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1011), 13, + ACTIONS(390), 17, anon_sym_LPAREN, anon_sym_DASH, + anon_sym_PIPE, anon_sym_QMARK, anon_sym_STAR, anon_sym_LBRACK, @@ -144968,3213 +214842,7003 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [14127] = 9, + [43112] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1004), 1, - anon_sym_BANG, - ACTIONS(1008), 1, + ACTIONS(2509), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1027), 1, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5037), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2629), 1, + aux_sym_match_arm_repeat1, + STATE(2942), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [43195] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5043), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2740), 1, + aux_sym_match_arm_repeat1, + STATE(2791), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [43278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5047), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(385), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [43323] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5049), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2610), 1, + aux_sym_initializer_list_repeat1, + STATE(2934), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [43406] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2495), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5053), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2698), 1, + aux_sym_match_arm_repeat1, + STATE(2864), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [43489] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(549), 14, anon_sym_LBRACE, - ACTIONS(3935), 1, - anon_sym_EQ, - ACTIONS(3937), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(1006), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1011), 15, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_PIPE, + 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_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [14174] = 5, + sym__newline, + [43542] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 2, - ts_builtin_sym_end, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5057), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, sym__newline, - ACTIONS(3942), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, + [43617] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4910), 1, + anon_sym_orelse, + ACTIONS(4912), 1, + anon_sym_catch, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 3, + anon_sym_else, + anon_sym_DOT_DOT, sym_identifier, - ACTIONS(1006), 8, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 13, - anon_sym_LPAREN, - anon_sym_DASH, - 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_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [14213] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1948), 1, - anon_sym_RPAREN, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3927), 1, - anon_sym_COMMA, - ACTIONS(3944), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1707), 1, - aux_sym_match_arm_repeat1, - STATE(1814), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3948), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - ACTIONS(1006), 8, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 13, - anon_sym_LPAREN, - anon_sym_DASH, - 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_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [14323] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, - anon_sym_DOT_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3950), 1, - anon_sym_RBRACK, - ACTIONS(3952), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2114), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1188), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT_DOT_EQ, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14390] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1984), 1, - anon_sym_RPAREN, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3954), 1, - anon_sym_COMMA, - ACTIONS(3956), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1776), 1, - aux_sym_match_arm_repeat1, - STATE(1962), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14461] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3954), 1, - anon_sym_COMMA, - ACTIONS(3958), 1, - anon_sym_RPAREN, - ACTIONS(3960), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(1776), 1, - aux_sym_match_arm_repeat1, - STATE(2047), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14532] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1483), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [14586] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, - anon_sym_DOT_DOT, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [14646] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, - anon_sym_DOT_DOT, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [14702] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1487), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [14756] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1487), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 8, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [14808] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 12, - anon_sym_COMMA, - anon_sym_PIPE, - 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, - sym__newline, - [14856] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1828), 1, - anon_sym_RBRACE, - ACTIONS(1878), 1, - sym__newline, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3962), 1, - anon_sym_COMMA, - STATE(507), 1, - sym_argument_list, - STATE(2143), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14924] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 14, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_PIPE, - 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_PLUS, - sym__newline, - [14970] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1178), 1, - anon_sym_DOT_DOT, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 5, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - sym__newline, - [15030] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1178), 1, - anon_sym_DOT_DOT, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [15086] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1483), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 8, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [15138] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 12, - anon_sym_COMMA, - anon_sym_PIPE, - 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, - sym__newline, - [15186] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3883), 1, - anon_sym_SEMI, - ACTIONS(3964), 1, - anon_sym_RBRACK, - ACTIONS(3966), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2130), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15254] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_SEMI, - ACTIONS(3971), 1, - anon_sym_RBRACK, - ACTIONS(3974), 1, - sym__newline, - STATE(2072), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1006), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [15296] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3977), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [15358] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_SEMI, - ACTIONS(3982), 1, - anon_sym_RBRACK, - ACTIONS(3985), 1, - sym__newline, - STATE(2127), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1006), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [15400] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3988), 1, - anon_sym_SEMI, - ACTIONS(3991), 1, - anon_sym_RBRACK, - ACTIONS(3994), 1, - sym__newline, - STATE(2137), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1006), 5, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT, - ACTIONS(1011), 17, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [15442] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3997), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [15504] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3877), 1, - anon_sym_SEMI, - ACTIONS(3999), 1, - anon_sym_RBRACK, - ACTIONS(4001), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2072), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [15572] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [15634] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 1, - anon_sym_BANG, - ACTIONS(1008), 1, - anon_sym_LPAREN, - ACTIONS(1027), 1, - anon_sym_DOT, - ACTIONS(1118), 1, + ACTIONS(549), 4, anon_sym_LBRACE, - ACTIONS(4005), 1, - anon_sym_EQ, - ACTIONS(1006), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1011), 17, - anon_sym_RBRACE, - 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, + sym__newline, + ACTIONS(4918), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - sym__newline, - [15678] = 20, + [43692] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(1719), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(1721), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(1723), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4914), 1, anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 4, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_DOT_DOT_EQ, - ACTIONS(3962), 1, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(551), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [43763] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(561), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [43832] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(561), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(563), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [43899] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 8, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(551), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [43962] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(549), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [44017] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5059), 1, anon_sym_COMMA, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, + ACTIONS(5061), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2188), 1, + STATE(2611), 1, + aux_sym_initializer_list_repeat1, + STATE(2812), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15746] = 18, + [44100] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3743), 1, - anon_sym_orelse, - ACTIONS(3745), 1, - anon_sym_catch, - ACTIONS(3747), 1, - anon_sym_or, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3759), 1, + ACTIONS(551), 1, anon_sym_DOT_DOT, - ACTIONS(3761), 1, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5063), 1, + anon_sym_RBRACK, + ACTIONS(5065), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3216), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 3, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_EQ, - STATE(507), 1, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [44179] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2623), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5067), 1, + anon_sym_COMMA, + ACTIONS(5069), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2616), 1, + aux_sym_match_arm_repeat1, + STATE(2814), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [44262] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, sym_argument_list, ACTIONS(35), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1627), 2, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(449), 14, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [44315] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 10, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(451), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [44374] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4910), 1, + anon_sym_orelse, + ACTIONS(4912), 1, + anon_sym_catch, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 3, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(449), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [44449] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(451), 5, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [44520] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(477), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 6, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [44589] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5071), 1, + anon_sym_COMMA, + ACTIONS(5073), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2720), 1, + aux_sym_initializer_list_repeat1, + STATE(2911), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [44672] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(477), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(4918), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(479), 7, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [44739] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 8, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + ACTIONS(451), 9, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [44802] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 11, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + sym_identifier, + ACTIONS(449), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [44857] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5075), 1, + anon_sym_COMMA, + ACTIONS(5077), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(2631), 1, + aux_sym_initializer_list_repeat1, + STATE(2831), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [44940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5079), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5081), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + ACTIONS(385), 10, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 17, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [44985] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5083), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_COLON, + sym__newline, + [45060] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4898), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4902), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 10, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + sym__newline, + ACTIONS(551), 10, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_xor, + sym_identifier, + [45119] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5085), 1, + anon_sym_SEMI, + ACTIONS(5087), 1, + anon_sym_RBRACK, + ACTIONS(5089), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3282), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45199] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2361), 1, + anon_sym_RBRACE, + ACTIONS(2384), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3213), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45279] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_RBRACE, + ACTIONS(2332), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3173), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45359] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2226), 1, + anon_sym_RBRACE, + ACTIONS(2228), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3198), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45439] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + ACTIONS(5093), 1, + anon_sym_RBRACE, + ACTIONS(5095), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3214), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45519] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2292), 1, + anon_sym_RBRACE, + ACTIONS(2294), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3168), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45599] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4878), 1, + anon_sym_SEMI, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(5099), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3315), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45679] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2281), 1, + anon_sym_RBRACE, + ACTIONS(2283), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3204), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45759] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5101), 1, + anon_sym_SEMI, + ACTIONS(5104), 1, + anon_sym_RBRACK, + ACTIONS(5107), 1, + sym__newline, + STATE(3201), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [45807] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5110), 1, + anon_sym_SEMI, + ACTIONS(5112), 1, + anon_sym_RBRACK, + ACTIONS(5114), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3175), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45887] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(1721), 1, + anon_sym_LBRACK, + ACTIONS(1723), 1, + anon_sym_DOT, + ACTIONS(4906), 1, + anon_sym_DOT_DOT, + ACTIONS(4908), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4910), 1, + anon_sym_orelse, + ACTIONS(4912), 1, + anon_sym_catch, + ACTIONS(4914), 1, + anon_sym_or, + ACTIONS(4916), 1, + anon_sym_and, + ACTIONS(4922), 1, + anon_sym_xor, + ACTIONS(4924), 1, + anon_sym_LT_LT, + STATE(686), 1, + sym_argument_list, + ACTIONS(35), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1797), 2, anon_sym_else, sym_identifier, - ACTIONS(1629), 2, + ACTIONS(1799), 2, anon_sym_LBRACE, sym__newline, - ACTIONS(3753), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3827), 2, + ACTIONS(4898), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3829), 2, + ACTIONS(4900), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(4902), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3751), 4, + ACTIONS(4920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4926), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4918), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15810] = 20, + [45965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(387), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(408), 1, anon_sym_DOT, - ACTIONS(1882), 1, - anon_sym_RBRACE, - ACTIONS(1884), 1, - sym__newline, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5116), 1, + anon_sym_PIPE, + ACTIONS(385), 5, anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3962), 1, - anon_sym_COMMA, - STATE(507), 1, - sym_argument_list, - STATE(2053), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(3837), 2, + anon_sym_LT_LT, + ACTIONS(390), 22, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, + 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, - [15878] = 7, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [46015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(5119), 1, anon_sym_SEMI, - ACTIONS(4014), 1, + ACTIONS(5122), 1, anon_sym_RBRACK, - ACTIONS(4017), 1, + ACTIONS(5125), 1, sym__newline, - STATE(2130), 1, + STATE(3315), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1006), 5, + ACTIONS(385), 6, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(1011), 17, + ACTIONS(390), 22, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [15920] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4003), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [15982] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1816), 1, - anon_sym_RBRACE, - ACTIONS(1818), 1, - sym__newline, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3962), 1, - anon_sym_COMMA, - STATE(507), 1, - sym_argument_list, - STATE(2100), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16050] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3997), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [16112] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 14, anon_sym_COMMA, anon_sym_DASH, anon_sym_PIPE, - 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_PLUS, - sym__newline, - [16158] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, + 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, - ACTIONS(3977), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [16220] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(4020), 1, - anon_sym_PIPE, - ACTIONS(4022), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2118), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16285] = 19, + anon_sym_CARET, + [46063] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3895), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(4024), 1, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4854), 1, + anon_sym_SEMI, + ACTIONS(5128), 1, anon_sym_RBRACK, - ACTIONS(4026), 1, + ACTIONS(5130), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2069), 1, + STATE(3201), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16350] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, + ACTIONS(4792), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4028), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16411] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1860), 1, - anon_sym_RBRACE, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4030), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2140), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16476] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(4032), 1, + ACTIONS(4798), 3, anon_sym_PIPE, - ACTIONS(4034), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2055), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16541] = 19, + [46143] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4036), 1, + ACTIONS(5132), 1, + anon_sym_SEMI, + ACTIONS(5135), 1, anon_sym_RBRACK, - ACTIONS(4038), 1, + ACTIONS(5138), 1, sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2090), 1, + STATE(3250), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(3837), 2, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 22, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, + 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, - [16606] = 19, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [46191] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3905), 1, - anon_sym_DOT_DOT, - ACTIONS(4040), 1, + ACTIONS(5141), 1, + anon_sym_SEMI, + ACTIONS(5144), 1, anon_sym_RBRACK, - ACTIONS(4042), 1, + ACTIONS(5147), 1, sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2166), 1, + STATE(3267), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16671] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(385), 6, anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, + anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4044), 3, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 22, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16732] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4046), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, + 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, - [16793] = 19, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [46239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4050), 1, + ACTIONS(4950), 1, + anon_sym_SEMI, + ACTIONS(5150), 1, + anon_sym_RBRACK, + ACTIONS(5152), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2096), 1, + STATE(3161), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16858] = 17, + [46319] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4052), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [16919] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, + ACTIONS(4806), 1, anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4842), 1, + anon_sym_SEMI, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(4054), 1, - anon_sym_RPAREN, - ACTIONS(4056), 1, + ACTIONS(5154), 1, + anon_sym_RBRACK, + ACTIONS(5156), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2068), 1, + STATE(3250), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16984] = 19, + [46399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(5158), 1, + anon_sym_SEMI, + ACTIONS(5161), 1, + anon_sym_RBRACK, + ACTIONS(5164), 1, + sym__newline, + STATE(3161), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_DOT, - ACTIONS(4058), 1, + ACTIONS(390), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [46447] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5167), 1, + anon_sym_SEMI, + ACTIONS(5169), 1, + anon_sym_RBRACK, + ACTIONS(5171), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3195), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46527] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4888), 1, + anon_sym_SEMI, + ACTIONS(5173), 1, + anon_sym_RBRACK, + ACTIONS(5175), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3267), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46607] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5177), 1, + anon_sym_SEMI, + ACTIONS(5180), 1, + anon_sym_RBRACK, + ACTIONS(5183), 1, + sym__newline, + STATE(3265), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 22, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [46655] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5186), 1, + anon_sym_SEMI, + ACTIONS(5188), 1, + anon_sym_RBRACK, + ACTIONS(5190), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3220), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46735] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4870), 1, + anon_sym_SEMI, + ACTIONS(5192), 1, + anon_sym_RBRACK, + ACTIONS(5194), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3265), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46815] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(2271), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3158), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46895] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + ACTIONS(5196), 1, + anon_sym_RBRACE, + ACTIONS(5198), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3133), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [46975] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, anon_sym_LBRACE, - ACTIONS(4064), 1, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5200), 1, + anon_sym_EQ, + ACTIONS(385), 5, anon_sym_DOT_DOT, - ACTIONS(4066), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4068), 1, - anon_sym_orelse, - ACTIONS(4070), 1, - anon_sym_catch, - ACTIONS(4072), 1, anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - ACTIONS(4080), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2170), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17049] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4082), 3, - anon_sym_COMMA, + anon_sym_LT_LT, + ACTIONS(390), 22, anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17110] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4084), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17171] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(4064), 1, - anon_sym_DOT_DOT, - ACTIONS(4066), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4068), 1, - anon_sym_orelse, - ACTIONS(4070), 1, - anon_sym_catch, - ACTIONS(4072), 1, - anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - ACTIONS(4086), 1, - anon_sym_LBRACE, - ACTIONS(4088), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2061), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17236] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(4090), 1, - anon_sym_RBRACK, - ACTIONS(4092), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2119), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17301] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(4096), 1, - sym__newline, - STATE(507), 1, - sym_argument_list, - STATE(2164), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, + 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, - [17366] = 17, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [47025] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(2202), 1, + anon_sym_RBRACE, + ACTIONS(2365), 1, + sym__newline, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - STATE(507), 1, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, sym_argument_list, - ACTIONS(35), 2, + STATE(3137), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4098), 3, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47105] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2310), 1, + anon_sym_RBRACE, + ACTIONS(2312), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3235), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47185] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_RBRACE, + ACTIONS(5204), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3313), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47265] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2328), 1, + anon_sym_RBRACE, + ACTIONS(2330), 1, + sym__newline, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + STATE(3302), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47345] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5206), 1, + anon_sym_COMMA, + ACTIONS(5208), 1, + anon_sym_PIPE, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 20, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [47396] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5211), 1, + anon_sym_RBRACK, + ACTIONS(5213), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3160), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47473] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5215), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3156), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47550] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5217), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - ACTIONS(3725), 4, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17427] = 19, + [47623] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(4100), 1, + ACTIONS(5219), 1, anon_sym_RPAREN, - ACTIONS(4102), 1, + ACTIONS(5221), 1, sym__newline, - STATE(507), 1, + STATE(2147), 1, sym_argument_list, - STATE(2138), 1, + STATE(3153), 1, aux_sym_import_declaration_repeat1, - ACTIONS(35), 2, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17492] = 17, + [47700] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - STATE(507), 1, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(5225), 1, + sym__newline, + STATE(2147), 1, sym_argument_list, - ACTIONS(35), 2, + STATE(3187), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1629), 3, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47777] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5227), 1, + anon_sym_SEMI, + ACTIONS(5230), 1, + anon_sym_RBRACK, + ACTIONS(5233), 1, + sym__newline, + STATE(3282), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [47824] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5236), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47897] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5238), 1, + anon_sym_RBRACK, + ACTIONS(5240), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3188), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [47974] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5242), 1, + anon_sym_RPAREN, + ACTIONS(5244), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3176), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48051] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1799), 3, anon_sym_RPAREN, anon_sym_else, sym__newline, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17553] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 12, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - sym__newline, - [17597] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 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, - [17643] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, - anon_sym_DOT_DOT, - ACTIONS(4068), 1, - anon_sym_orelse, - ACTIONS(4070), 1, - anon_sym_catch, - ACTIONS(4072), 1, - anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [17701] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(1190), 1, - anon_sym_DOT_DOT, - ACTIONS(4072), 1, - anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1188), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [17755] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1487), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [17807] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1487), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1485), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [17857] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1190), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1188), 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, - [17903] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1178), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 12, - anon_sym_LBRACE, - anon_sym_DASH, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - sym__newline, - [17947] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1178), 1, - anon_sym_DOT_DOT, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(4068), 1, - anon_sym_orelse, - ACTIONS(4070), 1, - anon_sym_catch, - ACTIONS(4072), 1, - anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1176), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [18005] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1178), 1, - anon_sym_DOT_DOT, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(4072), 1, - anon_sym_or, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1176), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [18059] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(4074), 1, - anon_sym_and, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1483), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [18111] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1483), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(4060), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4062), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4078), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4076), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1481), 6, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - sym__newline, - [18161] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(4104), 1, + ACTIONS(4798), 3, anon_sym_PIPE, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18220] = 17, + [48124] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(1515), 1, - anon_sym_COMMA, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - STATE(507), 1, + ACTIONS(5246), 1, + anon_sym_RPAREN, + ACTIONS(5248), 1, + sym__newline, + STATE(2147), 1, sym_argument_list, - ACTIONS(35), 2, + STATE(3285), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [18279] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, - anon_sym_orelse, - ACTIONS(3731), 1, - anon_sym_catch, - ACTIONS(3733), 1, - anon_sym_or, - ACTIONS(3770), 1, - anon_sym_DOT_DOT, - ACTIONS(3772), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3962), 1, - anon_sym_COMMA, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, + ACTIONS(4792), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3839), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3725), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [18338] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(1180), 1, - anon_sym_LBRACK, - ACTIONS(1182), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_DOT_DOT, - ACTIONS(3807), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3809), 1, - anon_sym_orelse, - ACTIONS(3811), 1, - anon_sym_catch, - ACTIONS(3813), 1, - anon_sym_or, - ACTIONS(3815), 1, - anon_sym_and, - ACTIONS(4106), 1, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, anon_sym_PIPE, - STATE(507), 1, - sym_argument_list, - ACTIONS(35), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(3797), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3801), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3819), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3817), 4, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18397] = 17, + [48201] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(1180), 1, + ACTIONS(4611), 1, anon_sym_LBRACK, - ACTIONS(1182), 1, + ACTIONS(4613), 1, anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_and, - ACTIONS(3729), 1, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, anon_sym_orelse, - ACTIONS(3731), 1, + ACTIONS(4802), 1, anon_sym_catch, - ACTIONS(3733), 1, + ACTIONS(4804), 1, anon_sym_or, - ACTIONS(3770), 1, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, anon_sym_DOT_DOT, - ACTIONS(3772), 1, + ACTIONS(4848), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(4108), 1, - anon_sym_COMMA, - STATE(507), 1, + ACTIONS(5250), 1, + anon_sym_RBRACK, + ACTIONS(5252), 1, + sym__newline, + STATE(2147), 1, sym_argument_list, - ACTIONS(35), 2, + STATE(3190), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3727), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3837), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3839), 2, + ACTIONS(4790), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3725), 4, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18456] = 8, + [48278] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4110), 1, + ACTIONS(549), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5254), 1, + anon_sym_RBRACK, + ACTIONS(5256), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3209), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48355] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5258), 1, + anon_sym_RBRACK, + ACTIONS(5260), 1, + anon_sym_DOT_DOT, + ACTIONS(5262), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3163), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48432] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5264), 1, + anon_sym_RPAREN, + ACTIONS(5266), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3319), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48509] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5268), 1, + anon_sym_RBRACE, + ACTIONS(5270), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3170), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48586] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5272), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48659] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5274), 1, + anon_sym_SEMI, + ACTIONS(5277), 1, + anon_sym_RBRACK, + ACTIONS(5280), 1, + sym__newline, + STATE(3195), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [48706] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5283), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48779] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5285), 1, + anon_sym_RBRACK, + ACTIONS(5287), 1, + anon_sym_DOT_DOT, + ACTIONS(5289), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3287), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48856] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5291), 1, + anon_sym_SEMI, + ACTIONS(5294), 1, + anon_sym_RBRACK, + ACTIONS(5297), 1, + sym__newline, + STATE(3220), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [48903] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5300), 1, + anon_sym_RPAREN, + ACTIONS(5302), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3171), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [48980] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4882), 1, + anon_sym_DOT_DOT, + ACTIONS(5304), 1, + anon_sym_RBRACK, + ACTIONS(5306), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3219), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49057] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5308), 1, + anon_sym_RBRACK, + ACTIONS(5310), 1, + anon_sym_DOT_DOT, + ACTIONS(5312), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3227), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49134] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5314), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49207] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5316), 1, + anon_sym_RBRACK, + ACTIONS(5318), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3179), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49284] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5320), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49357] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(4944), 1, + anon_sym_DOT_DOT, + ACTIONS(5322), 1, + anon_sym_RBRACK, + ACTIONS(5324), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3226), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49434] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5326), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49507] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2394), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5328), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3180), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49584] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_PIPE, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 20, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [49635] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5335), 1, + anon_sym_LBRACE, + ACTIONS(5343), 1, + anon_sym_DOT_DOT, + ACTIONS(5345), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5347), 1, + anon_sym_orelse, + ACTIONS(5349), 1, + anon_sym_catch, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + ACTIONS(5363), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3328), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49712] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5365), 1, + anon_sym_RBRACK, + ACTIONS(5367), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3189), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49789] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5369), 1, + anon_sym_RBRACK, + ACTIONS(5371), 1, + anon_sym_DOT_DOT, + ACTIONS(5373), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3200), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49866] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5375), 1, + anon_sym_RPAREN, + ACTIONS(5377), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3177), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [49943] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DOT_DOT, + ACTIONS(5345), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5347), 1, + anon_sym_orelse, + ACTIONS(5349), 1, + anon_sym_catch, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + ACTIONS(5379), 1, + anon_sym_LBRACE, + ACTIONS(5381), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3138), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50020] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 1, + anon_sym_RBRACE, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5383), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3154), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50097] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5385), 1, + anon_sym_RBRACK, + ACTIONS(5387), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3335), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50174] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(5391), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3269), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50251] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(549), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(5393), 1, + anon_sym_RBRACK, + ACTIONS(5395), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3277), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50328] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5397), 1, + anon_sym_RBRACK, + ACTIONS(5399), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3283), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50405] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_LPAREN, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1021), 1, + anon_sym_LBRACE, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(5401), 1, + anon_sym_COMMA, + ACTIONS(5403), 1, + anon_sym_PIPE, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 20, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [50456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 1, + anon_sym_SEMI, + ACTIONS(5409), 1, + anon_sym_RBRACK, + ACTIONS(5412), 1, + sym__newline, + STATE(3175), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 21, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [50503] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5415), 1, + anon_sym_RBRACK, + ACTIONS(5417), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3298), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50580] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(479), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [50644] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(563), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [50706] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5116), 1, + anon_sym_PIPE, + ACTIONS(385), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(390), 23, + anon_sym_LPAREN, + 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, + [50746] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5347), 1, + anon_sym_orelse, + ACTIONS(5349), 1, + anon_sym_catch, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(449), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50816] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5419), 1, + anon_sym_PIPE, + ACTIONS(5421), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3259), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [50892] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(449), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [50958] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5347), 1, + anon_sym_orelse, + ACTIONS(5349), 1, + anon_sym_catch, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(549), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51028] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(549), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [51080] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + anon_sym_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5351), 1, + anon_sym_or, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(549), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [51146] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(479), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(477), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [51208] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(451), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(449), 10, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [51266] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(551), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(549), 17, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [51316] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(449), 17, + anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + sym__newline, + [51366] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5423), 1, + anon_sym_PIPE, + ACTIONS(5425), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3166), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51442] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5427), 1, + anon_sym_PIPE, + ACTIONS(5429), 1, + sym__newline, + STATE(2147), 1, + sym_argument_list, + STATE(3144), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51518] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(551), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 10, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [51576] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5353), 1, + anon_sym_and, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(563), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5357), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(5339), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(5355), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(561), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [51640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 1, + anon_sym_LBRACE, + STATE(2153), 1, + sym_variant_payload, + ACTIONS(483), 6, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_DOT, + ACTIONS(481), 22, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + sym__newline, + [51682] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(451), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(449), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + sym__newline, + [51734] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(451), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(449), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [51790] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(5359), 1, + anon_sym_LT_LT, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(5337), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5341), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(551), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(549), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_xor, + sym__newline, + [51846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(408), 1, + anon_sym_DOT, + ACTIONS(1897), 1, + anon_sym_BANG, + ACTIONS(387), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(385), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(390), 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, + [51890] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [51961] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5434), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52032] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52103] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5436), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52174] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5091), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52245] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5438), 1, + anon_sym_COMMA, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52316] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1653), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4798), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52387] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5440), 1, + anon_sym_PIPE, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52457] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4611), 1, + anon_sym_LBRACK, + ACTIONS(4613), 1, + anon_sym_DOT, + ACTIONS(4794), 1, + anon_sym_LT_LT, + ACTIONS(4800), 1, + anon_sym_orelse, + ACTIONS(4802), 1, + anon_sym_catch, + ACTIONS(4804), 1, + anon_sym_or, + ACTIONS(4806), 1, + anon_sym_and, + ACTIONS(4846), 1, + anon_sym_DOT_DOT, + ACTIONS(4848), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(5442), 1, + anon_sym_PIPE, + STATE(2147), 1, + sym_argument_list, + ACTIONS(4609), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(4790), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4792), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4796), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(4798), 2, + anon_sym_AMP, + anon_sym_xor, + ACTIONS(4810), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4808), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [52527] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 1, ts_builtin_sym_end, - ACTIONS(4112), 1, + ACTIONS(5446), 1, sym_identifier, - ACTIONS(4115), 1, + ACTIONS(5449), 1, anon_sym_import, - ACTIONS(4118), 1, + ACTIONS(5452), 1, anon_sym_test, - ACTIONS(4121), 1, + ACTIONS(5455), 1, anon_sym_hide, - ACTIONS(4124), 1, + ACTIONS(5458), 1, sym__newline, - STATE(1585), 9, + STATE(2494), 9, sym__top_level_declaration, sym_import_declaration, sym_test_import_declaration, @@ -148184,7 +221848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [18489] = 8, + [52560] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -148195,11 +221859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, ACTIONS(13), 1, anon_sym_hide, - ACTIONS(4127), 1, + ACTIONS(5461), 1, ts_builtin_sym_end, - ACTIONS(4129), 1, + ACTIONS(5463), 1, sym__newline, - STATE(1585), 9, + STATE(2494), 9, sym__top_level_declaration, sym_import_declaration, sym_test_import_declaration, @@ -148209,8928 +221873,12457 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [18522] = 9, + [52593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(4896), 1, anon_sym_LBRACE, - ACTIONS(4131), 1, + ACTIONS(5465), 1, ts_builtin_sym_end, - ACTIONS(4135), 1, + ACTIONS(5469), 1, anon_sym_BANG, - ACTIONS(4137), 1, + ACTIONS(5471), 1, sym__newline, - STATE(1648), 1, + STATE(2568), 1, sym_block, - STATE(1969), 1, + STATE(2933), 1, aux_sym_import_declaration_repeat1, - ACTIONS(894), 3, + ACTIONS(1123), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(4133), 4, + ACTIONS(5467), 4, anon_sym_import, anon_sym_test, anon_sym_hide, sym_identifier, - [18555] = 9, + [52626] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(4896), 1, anon_sym_LBRACE, - ACTIONS(4140), 1, - ts_builtin_sym_end, - ACTIONS(4144), 1, - anon_sym_BANG, - ACTIONS(4146), 1, - sym__newline, - STATE(1626), 1, - sym_block, - STATE(1822), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1054), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4142), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18588] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, - ts_builtin_sym_end, - ACTIONS(4153), 1, - anon_sym_BANG, - ACTIONS(4155), 1, - sym__newline, - STATE(1637), 1, - sym_block, - STATE(1940), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(894), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4151), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18621] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - ts_builtin_sym_end, - ACTIONS(4162), 1, - anon_sym_BANG, - ACTIONS(4164), 1, - sym__newline, - STATE(1671), 1, - sym_block, - STATE(1937), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1054), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4160), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18654] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4167), 1, - ts_builtin_sym_end, - ACTIONS(4171), 1, - sym__newline, - STATE(1658), 1, - sym_block, - STATE(1886), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(920), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4169), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18684] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4174), 1, - ts_builtin_sym_end, - ACTIONS(4178), 1, - sym__newline, - STATE(1654), 1, - sym_block, - STATE(1983), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(920), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4176), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18714] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4181), 1, - ts_builtin_sym_end, - ACTIONS(4185), 1, - sym__newline, - STATE(1677), 1, - sym_block, - STATE(1847), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1158), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4183), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18744] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4188), 1, - ts_builtin_sym_end, - ACTIONS(4192), 1, - sym__newline, - STATE(1666), 1, - sym_block, - STATE(1900), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(1158), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(4190), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18774] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 1, - ts_builtin_sym_end, - ACTIONS(4195), 1, - anon_sym_else, - ACTIONS(4198), 1, - sym__newline, - STATE(2159), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3372), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18796] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4205), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2095), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18822] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4209), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4211), 1, - sym__newline, - STATE(1603), 1, - aux_sym_import_declaration_repeat1, - STATE(2074), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18848] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4213), 1, - anon_sym_RPAREN, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18874] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4213), 1, - anon_sym_RPAREN, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4217), 1, - sym__newline, - STATE(1596), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18900] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4209), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4213), 1, - anon_sym_RPAREN, - ACTIONS(4219), 1, - sym__newline, - STATE(1609), 1, - aux_sym_import_declaration_repeat1, - STATE(2074), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18926] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - ts_builtin_sym_end, - ACTIONS(4221), 1, - anon_sym_else, - ACTIONS(4223), 1, - sym__newline, - STATE(2176), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3323), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - ts_builtin_sym_end, - ACTIONS(4226), 1, - anon_sym_else, - ACTIONS(4229), 1, - sym__newline, - STATE(2158), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3352), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [18970] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [18996] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - ts_builtin_sym_end, - ACTIONS(4234), 1, - anon_sym_else, - ACTIONS(4236), 1, - sym__newline, - STATE(2186), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3352), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19018] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - ts_builtin_sym_end, - ACTIONS(4239), 1, - anon_sym_else, - ACTIONS(4241), 1, - sym__newline, - STATE(2171), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3313), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19040] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4205), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4244), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2095), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19066] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - ts_builtin_sym_end, - ACTIONS(4246), 1, - anon_sym_else, - ACTIONS(4249), 1, - sym__newline, - STATE(2155), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3313), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19088] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4252), 1, - anon_sym_RPAREN, - ACTIONS(4254), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4256), 1, - sym__newline, - STATE(1619), 1, - aux_sym_import_declaration_repeat1, - STATE(1774), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19114] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19140] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4209), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4258), 1, - anon_sym_RPAREN, - ACTIONS(4260), 1, - sym__newline, - STATE(1598), 1, - aux_sym_import_declaration_repeat1, - STATE(2074), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19166] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4262), 1, - sym__newline, - STATE(1612), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19192] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4205), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4232), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2095), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19218] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4232), 1, - anon_sym_RPAREN, - ACTIONS(4264), 1, - sym__newline, - STATE(1606), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - ts_builtin_sym_end, - ACTIONS(4266), 1, - anon_sym_else, - ACTIONS(4269), 1, - sym__newline, - STATE(2157), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3323), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19266] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 1, - ts_builtin_sym_end, - ACTIONS(4272), 1, - anon_sym_else, - ACTIONS(4274), 1, - sym__newline, - STATE(2057), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3372), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 1, - ts_builtin_sym_end, - ACTIONS(4277), 1, - anon_sym_else, - ACTIONS(4279), 1, - sym__newline, - STATE(2062), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3333), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 1, - ts_builtin_sym_end, - ACTIONS(4282), 1, - anon_sym_else, - ACTIONS(4285), 1, - sym__newline, - STATE(2160), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3333), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19332] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 1, - ts_builtin_sym_end, - ACTIONS(4288), 1, - anon_sym_else, - ACTIONS(4291), 1, - sym__newline, - STATE(2161), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3342), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19354] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4294), 1, - anon_sym_RPAREN, - ACTIONS(4296), 1, - anon_sym_DOT_DOT_DOT, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1792), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 1, - ts_builtin_sym_end, - ACTIONS(4298), 1, - anon_sym_else, - ACTIONS(4300), 1, - sym__newline, - STATE(2099), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3342), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19402] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4209), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4303), 1, - sym__newline, - STATE(1624), 1, - aux_sym_import_declaration_repeat1, - STATE(2074), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19425] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4305), 1, - sym__newline, - STATE(1625), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19448] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 1, - anon_sym_COMMA, - ACTIONS(3799), 1, - anon_sym_PIPE, - ACTIONS(3821), 1, - sym__newline, - ACTIONS(4307), 1, - anon_sym_COLON, - STATE(1667), 1, - aux_sym_match_arm_repeat1, - STATE(2156), 1, - aux_sym_import_declaration_repeat1, - STATE(2268), 1, - sym_match_capture, - [19473] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - ACTIONS(4215), 1, - anon_sym_DOT_DOT_DOT, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2064), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19496] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4205), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_DOLLAR, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2095), 1, - sym_parameter, - ACTIONS(4201), 2, - sym_sink, - sym_identifier, - [19519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4309), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4311), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4313), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4315), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19547] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4317), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4319), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4321), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4323), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4325), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4327), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4329), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4331), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19603] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4333), 1, - anon_sym_COMMA, - ACTIONS(4336), 1, - sym__newline, - STATE(1632), 1, - aux_sym_match_arm_repeat1, - STATE(2169), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3977), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [19623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4339), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4341), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4343), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4345), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4347), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4349), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4351), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4353), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4355), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4357), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4359), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4361), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4365), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3948), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4367), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4369), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4373), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3917), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3919), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4375), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4377), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4381), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4383), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4385), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19819] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(4389), 1, - anon_sym_PIPE, - ACTIONS(4391), 1, - anon_sym_COLON, - ACTIONS(4393), 1, - sym__newline, - STATE(1670), 1, - aux_sym_capture_list_repeat1, - STATE(2174), 1, - aux_sym_import_declaration_repeat1, - [19841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4397), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4401), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4405), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4409), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19897] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4411), 1, - anon_sym_COMMA, - ACTIONS(4416), 1, - sym__newline, - STATE(1652), 1, - aux_sym_capture_list_repeat1, - STATE(2174), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4414), 2, - anon_sym_PIPE, - anon_sym_COLON, - [19917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4419), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4421), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4425), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4429), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4433), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4437), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [19987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4439), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4441), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4443), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4445), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4449), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4451), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4453), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4455), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4457), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4461), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4463), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4465), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4467), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4469), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4473), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20113] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4475), 1, - anon_sym_COMMA, - ACTIONS(4478), 1, - sym__newline, - STATE(1667), 1, - aux_sym_match_arm_repeat1, - STATE(2156), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3977), 2, - anon_sym_PIPE, - anon_sym_COLON, - [20133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3933), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4481), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4483), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20161] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4387), 1, - anon_sym_COMMA, - ACTIONS(4393), 1, - sym__newline, - ACTIONS(4485), 1, - anon_sym_PIPE, - ACTIONS(4487), 1, - anon_sym_COLON, - STATE(1652), 1, - aux_sym_capture_list_repeat1, - STATE(2174), 1, - aux_sym_import_declaration_repeat1, - [20183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4489), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4491), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4493), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4495), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4497), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4499), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3940), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(3942), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4501), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4503), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4505), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4507), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20267] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4509), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4511), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4513), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4515), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4517), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4519), 4, - anon_sym_import, - anon_sym_test, - anon_sym_hide, - sym_identifier, - [20309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4521), 1, - sym_identifier, - ACTIONS(4523), 1, - sym__newline, - STATE(1193), 1, - sym_block, - STATE(1691), 1, - aux_sym_import_declaration_repeat1, - [20328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4525), 1, - sym_identifier, - ACTIONS(4527), 1, - sym__newline, - STATE(1096), 1, - sym_block, - STATE(1791), 1, - aux_sym_import_declaration_repeat1, - [20347] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4531), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2107), 1, - sym_keyed_field_initializer, - [20366] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4531), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20385] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4531), 1, - anon_sym_RBRACE, - ACTIONS(4533), 1, - sym__newline, - STATE(1715), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4535), 1, - sym_identifier, - ACTIONS(4537), 1, - sym__newline, - STATE(1099), 1, - sym_block, - STATE(1794), 1, - aux_sym_import_declaration_repeat1, - [20423] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4539), 1, - anon_sym_LPAREN, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4543), 1, - sym__newline, - STATE(454), 1, - sym_record_body, - STATE(1950), 1, - aux_sym_import_declaration_repeat1, - [20442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4545), 1, - sym_identifier, - ACTIONS(4547), 1, - sym__newline, - STATE(1228), 1, - sym_block, - STATE(1690), 1, - aux_sym_import_declaration_repeat1, - [20461] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4549), 1, - sym_identifier, - ACTIONS(4551), 1, - sym__newline, - STATE(1100), 1, - sym_block, - STATE(1796), 1, - aux_sym_import_declaration_repeat1, - [20480] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4553), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1221), 1, - sym_block, - [20499] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4555), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1101), 1, - sym_block, - [20518] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4557), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1227), 1, - sym_block, - [20537] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(4561), 1, - sym__newline, - STATE(1236), 1, - sym_block, - STATE(1718), 1, - aux_sym_import_declaration_repeat1, - [20556] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4563), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1244), 1, - sym_block, - [20575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4565), 1, - sym_identifier, - ACTIONS(4567), 1, - sym__newline, - STATE(1246), 1, - sym_block, - STATE(1719), 1, - aux_sym_import_declaration_repeat1, - [20594] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4569), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1251), 1, - sym_block, - [20613] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4571), 1, - sym_identifier, - ACTIONS(4573), 1, - sym__newline, - STATE(1252), 1, - sym_block, - STATE(1722), 1, - aux_sym_import_declaration_repeat1, - [20632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4575), 1, - sym_identifier, - ACTIONS(4577), 1, - sym__newline, - STATE(1258), 1, - sym_block, - STATE(1724), 1, - aux_sym_import_declaration_repeat1, - [20651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4579), 1, - sym_identifier, - ACTIONS(4581), 1, - sym__newline, - STATE(1077), 1, - sym_block, - STATE(1775), 1, - aux_sym_import_declaration_repeat1, - [20670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4583), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1260), 1, - sym_block, - [20689] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4585), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1263), 1, - sym_block, - [20708] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4587), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20727] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4589), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1267), 1, - sym_block, - [20746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4591), 1, - sym_identifier, - ACTIONS(4593), 1, - sym__newline, - STATE(1268), 1, - sym_block, - STATE(1730), 1, - aux_sym_import_declaration_repeat1, - [20765] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4587), 1, - anon_sym_RBRACE, - ACTIONS(4595), 1, - sym__newline, - STATE(1682), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(4597), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [20797] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym__newline, - STATE(1270), 1, - sym_block, - STATE(1741), 1, - aux_sym_import_declaration_repeat1, - [20816] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1984), 1, - anon_sym_RPAREN, - ACTIONS(3954), 1, - anon_sym_COMMA, - ACTIONS(3956), 1, - sym__newline, - STATE(1632), 1, - aux_sym_match_arm_repeat1, - STATE(1962), 1, - aux_sym_import_declaration_repeat1, - [20835] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4605), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1271), 1, - sym_block, - [20854] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - sym_identifier, - ACTIONS(4609), 1, - anon_sym_RBRACE, - ACTIONS(4611), 1, - sym__newline, - STATE(1720), 1, - aux_sym_enum_body_repeat1, - STATE(1817), 1, - sym_enum_member, - [20873] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4613), 1, - anon_sym_BANG, - ACTIONS(4615), 1, - sym__newline, - STATE(541), 1, - sym_block, - STATE(1993), 1, - aux_sym_import_declaration_repeat1, - [20892] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20911] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4619), 1, - sym_identifier, - ACTIONS(4621), 1, - sym__newline, - STATE(1276), 1, - sym_block, - STATE(1800), 1, - aux_sym_import_declaration_repeat1, - [20930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4617), 1, - anon_sym_RBRACE, - ACTIONS(4623), 1, - sym__newline, - STATE(1734), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [20949] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4617), 1, - anon_sym_RBRACE, - ACTIONS(4625), 1, - sym__newline, - STATE(1701), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, - sym_keyed_field_initializer, - [20968] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4627), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2107), 1, - sym_keyed_field_initializer, - [20987] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - anon_sym_COMMA, - ACTIONS(4632), 1, - anon_sym_RBRACE, - ACTIONS(4634), 1, - sym__newline, - STATE(1716), 1, - aux_sym_variant_payload_repeat1, - STATE(2073), 1, - aux_sym_import_declaration_repeat1, - [21006] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4617), 1, - anon_sym_RBRACE, - ACTIONS(4637), 1, - anon_sym_COMMA, - ACTIONS(4639), 1, - sym__newline, - STATE(1716), 1, - aux_sym_variant_payload_repeat1, - STATE(1838), 1, - aux_sym_import_declaration_repeat1, - [21025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4641), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1163), 1, - sym_block, - [21044] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4643), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1176), 1, - sym_block, - [21063] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4645), 1, - sym_identifier, - ACTIONS(4648), 1, - anon_sym_RBRACE, - ACTIONS(4650), 1, - sym__newline, - STATE(1720), 1, - aux_sym_enum_body_repeat1, - STATE(1817), 1, - sym_enum_member, - [21082] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4653), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1188), 1, - sym_block, - [21101] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4655), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1191), 1, - sym_block, - [21120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4657), 1, - sym_identifier, - ACTIONS(4659), 1, - sym__newline, - STATE(1194), 1, - sym_block, - STATE(1755), 1, - aux_sym_import_declaration_repeat1, - [21139] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4661), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1212), 1, - sym_block, - [21158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4663), 1, - sym_identifier, - ACTIONS(4665), 1, - sym__newline, - STATE(1189), 1, - sym_block, - STATE(1689), 1, - aux_sym_import_declaration_repeat1, - [21177] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4667), 1, - sym_identifier, - ACTIONS(4669), 1, - sym__newline, - STATE(1230), 1, - sym_block, - STATE(1757), 1, - aux_sym_import_declaration_repeat1, - [21196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - sym_identifier, - ACTIONS(4671), 1, - anon_sym_RBRACE, - ACTIONS(4673), 1, - sym__newline, - STATE(1709), 1, - aux_sym_enum_body_repeat1, - STATE(1817), 1, - sym_enum_member, - [21215] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - sym_identifier, - ACTIONS(4677), 1, - sym__newline, - STATE(1234), 1, - sym_block, - STATE(1759), 1, - aux_sym_import_declaration_repeat1, - [21234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, - sym_identifier, - ACTIONS(3315), 1, - anon_sym_LBRACE, - ACTIONS(4679), 1, - anon_sym_else, - ACTIONS(4681), 1, - sym__newline, - STATE(2071), 1, - aux_sym_import_declaration_repeat1, - [21253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4684), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1256), 1, - sym_block, - [21272] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4686), 1, - anon_sym_LPAREN, - ACTIONS(4688), 1, - anon_sym_LBRACE, - ACTIONS(4690), 1, - sym__newline, - STATE(455), 1, - sym_enum_body, - STATE(1946), 1, - aux_sym_import_declaration_repeat1, - [21291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(4692), 1, - anon_sym_else, - ACTIONS(4694), 1, - sym__newline, - STATE(2076), 1, - aux_sym_import_declaration_repeat1, - [21310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(4697), 1, - anon_sym_else, - ACTIONS(4699), 1, - sym__newline, - STATE(2080), 1, - aux_sym_import_declaration_repeat1, - [21329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4587), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2107), 1, - sym_keyed_field_initializer, - [21348] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 1, - anon_sym_RBRACE, - ACTIONS(4702), 1, - anon_sym_COMMA, - ACTIONS(4705), 1, - sym__newline, - STATE(1735), 1, - aux_sym_initializer_list_repeat1, - STATE(2066), 1, - aux_sym_import_declaration_repeat1, - [21367] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4708), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1192), 1, - sym_block, - [21386] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, - sym_identifier, - ACTIONS(3374), 1, - anon_sym_LBRACE, - ACTIONS(4710), 1, - anon_sym_else, - ACTIONS(4712), 1, - sym__newline, - STATE(2081), 1, - aux_sym_import_declaration_repeat1, - [21405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LBRACE, - ACTIONS(4715), 1, - anon_sym_else, - ACTIONS(4717), 1, - sym__newline, - STATE(2082), 1, - aux_sym_import_declaration_repeat1, - [21424] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4720), 1, - sym_identifier, - ACTIONS(4722), 1, - sym__newline, - STATE(1181), 1, - sym_block, - STATE(1744), 1, - aux_sym_import_declaration_repeat1, - [21443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 1, - sym_identifier, - ACTIONS(3344), 1, - anon_sym_LBRACE, - ACTIONS(4724), 1, - anon_sym_else, - ACTIONS(4726), 1, - sym__newline, - STATE(2084), 1, - aux_sym_import_declaration_repeat1, - [21462] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1265), 1, - sym_block, - [21481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 1, - anon_sym_RBRACK, - ACTIONS(3857), 1, - anon_sym_COMMA, - ACTIONS(4731), 1, - sym__newline, - STATE(1632), 1, - aux_sym_match_arm_repeat1, - STATE(1836), 1, - aux_sym_import_declaration_repeat1, - [21500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4587), 1, - anon_sym_RBRACE, - ACTIONS(4733), 1, - sym__newline, - STATE(1683), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, - sym_keyed_field_initializer, - [21519] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4735), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1088), 1, - sym_block, - [21538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1870), 1, - anon_sym_RBRACE, - ACTIONS(4737), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - sym__newline, - STATE(1735), 1, - aux_sym_initializer_list_repeat1, - STATE(1826), 1, - aux_sym_import_declaration_repeat1, - [21557] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4741), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1197), 1, - sym_block, - [21576] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4743), 1, - sym_identifier, - ACTIONS(4745), 1, - sym__newline, - STATE(1198), 1, - sym_block, - STATE(1693), 1, - aux_sym_import_declaration_repeat1, - [21595] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4749), 1, - sym__newline, - STATE(1178), 1, - sym_block, - STATE(1758), 1, - aux_sym_import_declaration_repeat1, - [21614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4751), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1169), 1, - sym_block, - [21633] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1922), 1, - anon_sym_RBRACK, - ACTIONS(4753), 1, - anon_sym_COMMA, - ACTIONS(4755), 1, - sym__newline, - STATE(1632), 1, - aux_sym_match_arm_repeat1, - STATE(2035), 1, - aux_sym_import_declaration_repeat1, - [21652] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4757), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1148), 1, - sym_block, - [21671] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4759), 1, - sym__newline, - STATE(1711), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, - sym_keyed_field_initializer, - [21690] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4761), 1, - sym_identifier, - ACTIONS(4763), 1, - sym__newline, - STATE(1201), 1, - sym_block, - STATE(1695), 1, - aux_sym_import_declaration_repeat1, - [21709] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4767), 1, - sym__newline, - STATE(1105), 1, - sym_block, - STATE(1751), 1, - aux_sym_import_declaration_repeat1, - [21728] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4769), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1044), 1, - sym_block, - [21747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4771), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1025), 1, - sym_block, - [21766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4773), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1049), 1, - sym_block, - [21785] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4775), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1083), 1, - sym_block, - [21804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4777), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1053), 1, - sym_block, - [21823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1860), 1, - anon_sym_RBRACE, - ACTIONS(4779), 1, - anon_sym_COMMA, - ACTIONS(4781), 1, - sym__newline, - STATE(1763), 1, - aux_sym_variant_payload_repeat1, - STATE(1877), 1, - aux_sym_import_declaration_repeat1, - [21842] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4783), 1, - sym_identifier, - ACTIONS(4785), 1, - sym__newline, - STATE(1060), 1, - sym_block, - STATE(1780), 1, - aux_sym_import_declaration_repeat1, - [21861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4787), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1203), 1, - sym_block, - [21880] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4789), 1, - anon_sym_COMMA, - ACTIONS(4791), 1, - sym__newline, - STATE(1716), 1, - aux_sym_variant_payload_repeat1, - STATE(1885), 1, - aux_sym_import_declaration_repeat1, - [21899] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4793), 1, - sym_identifier, - ACTIONS(4795), 1, - sym__newline, - STATE(1204), 1, - sym_block, - STATE(1699), 1, - aux_sym_import_declaration_repeat1, - [21918] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_RBRACE, - ACTIONS(3909), 1, - anon_sym_COMMA, - ACTIONS(3911), 1, - sym__newline, - STATE(1735), 1, - aux_sym_initializer_list_repeat1, - STATE(1856), 1, - aux_sym_import_declaration_repeat1, - [21937] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1864), 1, - anon_sym_RBRACE, - ACTIONS(3909), 1, - anon_sym_COMMA, - ACTIONS(3911), 1, - sym__newline, - STATE(1745), 1, - aux_sym_initializer_list_repeat1, - STATE(1856), 1, - aux_sym_import_declaration_repeat1, - [21956] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4797), 1, - sym_identifier, - ACTIONS(4799), 1, - sym__newline, - STATE(1206), 1, - sym_block, - STATE(1700), 1, - aux_sym_import_declaration_repeat1, - [21975] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4803), 1, - sym__newline, - STATE(1207), 1, - sym_block, - STATE(1702), 1, - aux_sym_import_declaration_repeat1, - [21994] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 1, - anon_sym_RPAREN, - ACTIONS(4807), 1, - anon_sym_COMMA, - ACTIONS(4810), 1, - sym__newline, - STATE(1769), 1, - aux_sym_parameter_list_repeat1, - STATE(2123), 1, - aux_sym_import_declaration_repeat1, - [22013] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 1, - anon_sym_RPAREN, - ACTIONS(4813), 1, - anon_sym_COMMA, - ACTIONS(4815), 1, - sym__newline, - STATE(1769), 1, - aux_sym_parameter_list_repeat1, - STATE(1821), 1, - aux_sym_import_declaration_repeat1, - [22032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(4789), 1, - anon_sym_COMMA, - ACTIONS(4791), 1, - sym__newline, - STATE(1717), 1, - aux_sym_variant_payload_repeat1, - STATE(1885), 1, - aux_sym_import_declaration_repeat1, - [22051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4817), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1208), 1, - sym_block, - [22070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4819), 1, - sym_identifier, - ACTIONS(4821), 1, - sym__newline, - STATE(1209), 1, - sym_block, - STATE(1708), 1, - aux_sym_import_declaration_repeat1, - [22089] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_RPAREN, - ACTIONS(4823), 1, - anon_sym_COMMA, - ACTIONS(4825), 1, - sym__newline, - STATE(1784), 1, - aux_sym_parameter_list_repeat1, - STATE(1991), 1, - aux_sym_import_declaration_repeat1, - [22108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4827), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1150), 1, - sym_block, - [22127] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1974), 1, - anon_sym_RPAREN, - ACTIONS(4829), 1, - anon_sym_COMMA, - ACTIONS(4831), 1, - sym__newline, - STATE(1632), 1, - aux_sym_match_arm_repeat1, - STATE(1878), 1, - aux_sym_import_declaration_repeat1, - [22146] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4833), 1, - sym_identifier, - ACTIONS(4835), 1, - sym__newline, - STATE(1151), 1, - sym_block, - STATE(1721), 1, - aux_sym_import_declaration_repeat1, - [22165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_RBRACE, - ACTIONS(3913), 1, - anon_sym_COMMA, - ACTIONS(3915), 1, - sym__newline, - STATE(1765), 1, - aux_sym_initializer_list_repeat1, - STATE(1927), 1, - aux_sym_import_declaration_repeat1, - [22184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - sym_identifier, - ACTIONS(4839), 1, - sym__newline, - STATE(1155), 1, - sym_block, - STATE(1736), 1, - aux_sym_import_declaration_repeat1, - [22203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4841), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1110), 1, - sym_block, - [22222] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4843), 1, - anon_sym_BANG, - ACTIONS(4845), 1, - sym__newline, - STATE(523), 1, - sym_block, - STATE(1829), 1, - aux_sym_import_declaration_repeat1, - [22241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4847), 1, - sym_identifier, - ACTIONS(4849), 1, - sym__newline, - STATE(1157), 1, - sym_block, - STATE(1746), 1, - aux_sym_import_declaration_repeat1, - [22260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3313), 1, - sym_identifier, - ACTIONS(3315), 1, - anon_sym_LBRACE, - ACTIONS(4851), 1, - anon_sym_else, - ACTIONS(4854), 1, - sym__newline, - STATE(2108), 1, - aux_sym_import_declaration_repeat1, - [22279] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_RPAREN, - ACTIONS(4857), 1, - anon_sym_COMMA, - ACTIONS(4859), 1, - sym__newline, - STATE(1769), 1, - aux_sym_parameter_list_repeat1, - STATE(1933), 1, - aux_sym_import_declaration_repeat1, - [22298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4861), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1213), 1, - sym_block, - [22317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 1, - sym_identifier, - ACTIONS(3325), 1, - anon_sym_LBRACE, - ACTIONS(4863), 1, - anon_sym_else, - ACTIONS(4866), 1, - sym__newline, - STATE(2109), 1, - aux_sym_import_declaration_repeat1, - [22336] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3352), 1, - sym_identifier, - ACTIONS(3354), 1, - anon_sym_LBRACE, - ACTIONS(4869), 1, - anon_sym_else, - ACTIONS(4872), 1, - sym__newline, - STATE(2110), 1, - aux_sym_import_declaration_repeat1, - [22355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3372), 1, - sym_identifier, - ACTIONS(3374), 1, - anon_sym_LBRACE, - ACTIONS(4875), 1, - anon_sym_else, - ACTIONS(4878), 1, - sym__newline, - STATE(2111), 1, - aux_sym_import_declaration_repeat1, - [22374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3333), 1, - sym_identifier, - ACTIONS(3335), 1, - anon_sym_LBRACE, - ACTIONS(4881), 1, - anon_sym_else, - ACTIONS(4884), 1, - sym__newline, - STATE(2112), 1, - aux_sym_import_declaration_repeat1, - [22393] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3342), 1, - sym_identifier, - ACTIONS(3344), 1, - anon_sym_LBRACE, - ACTIONS(4887), 1, - anon_sym_else, - ACTIONS(4890), 1, - sym__newline, - STATE(2113), 1, - aux_sym_import_declaration_repeat1, - [22412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4893), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1159), 1, - sym_block, - [22431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4258), 1, - anon_sym_RPAREN, - ACTIONS(4857), 1, - anon_sym_COMMA, - ACTIONS(4859), 1, - sym__newline, - STATE(1770), 1, - aux_sym_parameter_list_repeat1, - STATE(1933), 1, - aux_sym_import_declaration_repeat1, - [22450] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, - sym_identifier, - ACTIONS(4897), 1, - sym__newline, - STATE(1162), 1, - sym_block, - STATE(1762), 1, - aux_sym_import_declaration_repeat1, - [22469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4899), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1165), 1, - sym_block, - [22488] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4901), 1, - sym_identifier, - ACTIONS(4903), 1, - sym__newline, - STATE(1166), 1, - sym_block, - STATE(1772), 1, - aux_sym_import_declaration_repeat1, - [22507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4905), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1167), 1, - sym_block, - [22526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4907), 1, - sym_identifier, - ACTIONS(4909), 1, - sym__newline, - STATE(1168), 1, - sym_block, - STATE(1785), 1, - aux_sym_import_declaration_repeat1, - [22545] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4911), 1, - sym_identifier, - ACTIONS(4913), 1, - sym__newline, - STATE(1173), 1, - sym_block, - STATE(1799), 1, - aux_sym_import_declaration_repeat1, - [22564] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4915), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1216), 1, - sym_block, - [22583] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4917), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1023), 1, - sym_block, - [22602] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4919), 1, - sym__newline, - STATE(1118), 1, - sym_block, - STATE(2031), 1, - aux_sym_import_declaration_repeat1, - [22618] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(4921), 1, - sym__newline, - STATE(1865), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [22634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4923), 1, - sym__newline, - STATE(1180), 1, - sym_block, - STATE(1939), 1, - aux_sym_import_declaration_repeat1, - [22650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4925), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [22660] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4927), 1, - sym__newline, - STATE(1269), 1, - sym_block, - STATE(1810), 1, - aux_sym_import_declaration_repeat1, - [22676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4929), 1, - sym__newline, - STATE(1235), 1, - sym_block, - STATE(1902), 1, - aux_sym_import_declaration_repeat1, - [22692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1190), 1, - sym_block, - [22708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4933), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [22724] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1237), 1, - sym_block, - [22740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1257), 1, - sym_block, - [22756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4935), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [22772] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4937), 1, - sym__newline, - STATE(1264), 1, - sym_block, - STATE(1910), 1, - aux_sym_import_declaration_repeat1, - [22788] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4939), 1, - sym__newline, - STATE(1238), 1, - sym_block, - STATE(2052), 1, - aux_sym_import_declaration_repeat1, - [22804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1984), 1, - anon_sym_RPAREN, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [22820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(4943), 1, - sym__newline, - STATE(1678), 1, - sym_string, - STATE(1818), 1, - aux_sym_import_declaration_repeat1, - [22836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2163), 1, - sym__type_constant, - ACTIONS(4947), 2, - sym_integer, - sym_character, - [22850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4951), 1, - anon_sym_COMMA, - ACTIONS(4949), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [22862] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1638), 1, - sym_string, - [22878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(4955), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [22894] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2189), 1, - sym_keyed_field_initializer, - [22910] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4203), 1, - anon_sym_RPAREN, - ACTIONS(4957), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [22926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1646), 1, - sym_block, - [22942] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4959), 1, - sym__newline, - STATE(1187), 1, - sym_block, - STATE(1851), 1, - aux_sym_import_declaration_repeat1, - [22958] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1272), 1, - sym_block, - [22974] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4961), 1, - sym__newline, - STATE(1279), 1, - sym_block, - STATE(1914), 1, - aux_sym_import_declaration_repeat1, - [22990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1852), 1, - anon_sym_RBRACE, - ACTIONS(4963), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4965), 1, - sym__newline, - STATE(1273), 1, - sym_block, - STATE(1830), 1, - aux_sym_import_declaration_repeat1, - [23022] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(4967), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23038] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_block, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1020), 1, - sym_block, - [23070] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1195), 1, - sym_block, - [23086] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4969), 1, - sym__newline, - STATE(1196), 1, - sym_block, - STATE(1809), 1, - aux_sym_import_declaration_repeat1, - [23102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4971), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23118] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1021), 1, - sym_block, - [23134] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4973), 1, - sym__newline, - STATE(1022), 1, - sym_block, - STATE(1919), 1, - aux_sym_import_declaration_repeat1, - [23150] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1922), 1, - anon_sym_RBRACK, - ACTIONS(4931), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - sym__newline, - STATE(1274), 1, - sym_block, - STATE(1834), 1, - aux_sym_import_declaration_repeat1, - [23182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4587), 1, - anon_sym_RBRACE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23198] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1024), 1, - sym_block, - [23214] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(4979), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23230] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1249), 1, - sym_block, - [23246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4981), 1, - sym__newline, - STATE(1026), 1, - sym_block, - STATE(1925), 1, - aux_sym_import_declaration_repeat1, - [23262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4983), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23278] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1097), 1, - sym_block, - [23294] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(4985), 1, - sym__newline, - STATE(1673), 1, - sym_record_body, - STATE(2045), 1, - aux_sym_import_declaration_repeat1, - [23310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1027), 1, - sym_block, - [23326] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1660), 1, - sym_block, - [23342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1028), 1, - sym_block, - [23358] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1275), 1, - sym_block, - [23374] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - sym__newline, - STATE(1030), 1, - sym_block, - STATE(1930), 1, - aux_sym_import_declaration_repeat1, - [23390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1218), 1, - sym_block, - [23406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4989), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23422] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4991), 1, - sym__newline, - STATE(1225), 1, - sym_block, - STATE(1844), 1, - aux_sym_import_declaration_repeat1, - [23438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4993), 1, - sym__newline, - STATE(1277), 1, - sym_block, - STATE(1839), 1, - aux_sym_import_declaration_repeat1, - [23454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1032), 1, - sym_block, - [23470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1870), 1, - anon_sym_RBRACE, - ACTIONS(4995), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2087), 1, - sym__type_constant, - ACTIONS(4997), 2, - sym_integer, - sym_character, - [23500] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1033), 1, - sym_block, - [23516] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(4999), 1, - sym__newline, - STATE(1035), 1, - sym_block, - STATE(1938), 1, - aux_sym_import_declaration_repeat1, - [23532] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_RPAREN, - ACTIONS(5001), 1, - anon_sym_else, - ACTIONS(5003), 1, - sym__newline, - STATE(2144), 1, - aux_sym_import_declaration_repeat1, - [23548] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, - sym__newline, - STATE(1036), 1, - sym_block, - STATE(1943), 1, - aux_sym_import_declaration_repeat1, - [23564] = 4, - ACTIONS(5008), 1, - anon_sym_DQUOTE, - ACTIONS(5012), 1, - sym_comment, - STATE(1942), 1, - aux_sym_string_repeat1, - ACTIONS(5010), 2, - sym_string_content, - sym_escape_sequence, - [23578] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1253), 1, - sym_block, - [23594] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1037), 1, - sym_block, - [23610] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4529), 1, - sym_identifier, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(2107), 1, - sym_keyed_field_initializer, - [23626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1199), 1, - sym_block, - [23642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - anon_sym_RPAREN, - ACTIONS(5014), 1, - anon_sym_else, - ACTIONS(5016), 1, - sym__newline, - STATE(2162), 1, - aux_sym_import_declaration_repeat1, - [23658] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(5019), 1, - sym__newline, - STATE(460), 1, - sym_record_body, - STATE(2042), 1, - aux_sym_import_declaration_repeat1, - [23674] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_RPAREN, - ACTIONS(5021), 1, - anon_sym_else, - ACTIONS(5023), 1, - sym__newline, - STATE(2165), 1, - aux_sym_import_declaration_repeat1, - [23690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5026), 1, - sym__newline, - STATE(1200), 1, - sym_block, - STATE(1841), 1, - aux_sym_import_declaration_repeat1, - [23706] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1038), 1, - sym_block, - [23722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5028), 1, - sym__newline, - STATE(1039), 1, - sym_block, - STATE(1948), 1, - aux_sym_import_declaration_repeat1, - [23738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5030), 1, - sym__newline, - STATE(1040), 1, - sym_block, - STATE(1951), 1, - aux_sym_import_declaration_repeat1, - [23754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 1, - anon_sym_RPAREN, - ACTIONS(5032), 1, - anon_sym_else, - ACTIONS(5034), 1, - sym__newline, - STATE(2173), 1, - aux_sym_import_declaration_repeat1, - [23770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_RPAREN, - ACTIONS(5037), 1, - anon_sym_else, - ACTIONS(5040), 1, - sym__newline, - STATE(2180), 1, - aux_sym_import_declaration_repeat1, - [23786] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 1, - anon_sym_RPAREN, - ACTIONS(5043), 1, - anon_sym_else, - ACTIONS(5045), 1, - sym__newline, - STATE(2177), 1, - aux_sym_import_declaration_repeat1, - [23802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4048), 1, - anon_sym_RBRACE, - ACTIONS(5048), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23818] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1972), 1, - anon_sym_RPAREN, - ACTIONS(5050), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23834] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1041), 1, - sym_block, - [23850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5052), 1, - sym__newline, - STATE(1042), 1, - sym_block, - STATE(1954), 1, - aux_sym_import_declaration_repeat1, - [23866] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5054), 1, - sym__newline, - STATE(1043), 1, - sym_block, - STATE(1955), 1, - aux_sym_import_declaration_repeat1, - [23882] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(5056), 1, - anon_sym_else, - ACTIONS(5058), 1, - sym__newline, - STATE(2190), 1, - aux_sym_import_declaration_repeat1, - [23898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5061), 1, - sym__newline, - STATE(1255), 1, - sym_block, - STATE(1996), 1, - aux_sym_import_declaration_repeat1, - [23914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5063), 2, - sym_sink, - sym_identifier, - [23928] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4617), 1, - anon_sym_RBRACE, - ACTIONS(5065), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [23944] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1663), 1, - sym_block, - [23960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, - sym__newline, - STATE(1219), 1, - sym_block, - STATE(1896), 1, - aux_sym_import_declaration_repeat1, - [23976] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5069), 1, - sym__newline, - STATE(1202), 1, - sym_block, - STATE(1863), 1, - aux_sym_import_declaration_repeat1, - [23992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5071), 1, - sym__newline, - STATE(1045), 1, - sym_block, - STATE(1959), 1, - aux_sym_import_declaration_repeat1, - [24008] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1046), 1, - sym_block, - [24024] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - ACTIONS(5073), 1, - anon_sym_LBRACE, - STATE(510), 1, - sym_initializer_list, - STATE(2220), 1, - sym_argument_list, - [24040] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1047), 1, - sym_block, - [24056] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - sym__newline, - STATE(1048), 1, - sym_block, - STATE(1964), 1, - aux_sym_import_declaration_repeat1, - [24072] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym_block, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(5077), 1, - sym__newline, - STATE(1644), 1, - sym_string, - STATE(1949), 1, - aux_sym_import_declaration_repeat1, - [24104] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1278), 1, - sym_block, - [24120] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5079), 1, - sym__newline, - STATE(1259), 1, - sym_block, - STATE(2012), 1, - aux_sym_import_declaration_repeat1, - [24136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1051), 1, - sym_block, - [24152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - sym__newline, - STATE(1052), 1, - sym_block, - STATE(1971), 1, - aux_sym_import_declaration_repeat1, - [24168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1633), 1, - sym_block, - [24184] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1142), 1, - sym_block, - [24200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1054), 1, - sym_block, - [24216] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5083), 1, - sym__newline, - STATE(1055), 1, - sym_block, - STATE(1976), 1, - aux_sym_import_declaration_repeat1, - [24232] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5085), 1, - sym__newline, - STATE(1058), 1, - sym_block, - STATE(1977), 1, - aux_sym_import_declaration_repeat1, - [24248] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1185), 1, - sym_block, - [24264] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(5087), 1, - sym__newline, - STATE(1665), 1, - sym_string, - STATE(2011), 1, - aux_sym_import_declaration_repeat1, - [24280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_block, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24296] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5089), 1, - sym__newline, - STATE(1141), 1, - sym_block, - STATE(1846), 1, - aux_sym_import_declaration_repeat1, - [24312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(5091), 1, - sym__newline, - STATE(1645), 1, - sym_string, - STATE(1986), 1, - aux_sym_import_declaration_repeat1, - [24328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1059), 1, - sym_block, - [24344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5093), 1, - sym__newline, - STATE(1143), 1, - sym_block, - STATE(1848), 1, - aux_sym_import_declaration_repeat1, - [24360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5095), 1, - sym__newline, - STATE(1061), 1, - sym_block, - STATE(1981), 1, - aux_sym_import_declaration_repeat1, - [24376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 1, - sym__newline, - STATE(1926), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5063), 2, - sym_sink, - sym_identifier, - [24390] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1062), 1, - sym_block, - [24406] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5099), 1, - sym__newline, - STATE(1063), 1, - sym_block, - STATE(1984), 1, - aux_sym_import_declaration_repeat1, - [24422] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1146), 1, - sym_block, - [24438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5101), 1, - sym__newline, - STATE(479), 1, - sym_block, - STATE(1907), 1, - aux_sym_import_declaration_repeat1, - [24454] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5103), 1, - sym__newline, - STATE(1153), 1, - sym_block, - STATE(1855), 1, - aux_sym_import_declaration_repeat1, - [24470] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1064), 1, - sym_block, - [24486] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, - sym__newline, - STATE(1065), 1, - sym_block, - STATE(1987), 1, - aux_sym_import_declaration_repeat1, - [24502] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5107), 1, - sym__newline, - STATE(1631), 1, - sym_block, - STATE(1958), 1, - aux_sym_import_declaration_repeat1, - [24518] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5109), 1, - sym__newline, - STATE(1160), 1, - sym_block, - STATE(1858), 1, - aux_sym_import_declaration_repeat1, - [24534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5111), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [24544] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5113), 1, - sym__newline, - STATE(1205), 1, - sym_block, - STATE(1985), 1, - aux_sym_import_declaration_repeat1, - [24560] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1066), 1, - sym_block, - [24576] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5115), 2, - sym_sink, - sym_identifier, - [24590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1864), 1, - anon_sym_RBRACE, - ACTIONS(5117), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - sym__newline, - STATE(1220), 1, - sym_block, - STATE(1901), 1, - aux_sym_import_declaration_repeat1, - [24622] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5121), 1, - sym__newline, - STATE(1034), 1, - sym_block, - STATE(1905), 1, - aux_sym_import_declaration_repeat1, - [24638] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1067), 1, - sym_block, - [24654] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, - anon_sym_else, - ACTIONS(5126), 1, - sym__newline, - STATE(2181), 1, - aux_sym_import_declaration_repeat1, - [24670] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_LBRACE, - ACTIONS(5129), 1, - sym__newline, - STATE(393), 1, - sym_record_body, - STATE(1999), 1, - aux_sym_import_declaration_repeat1, - [24686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4213), 1, - anon_sym_RPAREN, - ACTIONS(5131), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24702] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_RPAREN, - ACTIONS(5133), 1, - anon_sym_else, - ACTIONS(5136), 1, - sym__newline, - STATE(2182), 1, - aux_sym_import_declaration_repeat1, - [24718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5139), 2, - sym_sink, - sym_identifier, - [24732] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [24742] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1636), 1, - sym_block, - [24758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1068), 1, - sym_block, - [24774] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1087), 1, - sym_block, - [24790] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1659), 1, - sym_block, - [24806] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - sym__newline, - STATE(1172), 1, - sym_block, - STATE(1864), 1, - aux_sym_import_declaration_repeat1, - [24822] = 4, - ACTIONS(5012), 1, - sym_comment, - ACTIONS(5145), 1, - anon_sym_DQUOTE, - STATE(1942), 1, - aux_sym_string_repeat1, - ACTIONS(5147), 2, - sym_string_content, - sym_escape_sequence, - [24836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1073), 1, - sym_block, - [24852] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5150), 1, - sym__newline, - STATE(1076), 1, - sym_block, - STATE(2000), 1, - aux_sym_import_declaration_repeat1, - [24868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5152), 1, - sym__newline, - STATE(1175), 1, - sym_block, - STATE(1871), 1, - aux_sym_import_declaration_repeat1, - [24884] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4688), 1, - anon_sym_LBRACE, - STATE(396), 1, - sym_enum_body, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5154), 1, - sym__newline, - STATE(1211), 1, - sym_block, - STATE(1824), 1, - aux_sym_import_declaration_repeat1, - [24916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1079), 1, - sym_block, - [24932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1662), 1, - sym_string, - [24948] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_record_body, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [24964] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1080), 1, - sym_block, - [24980] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5156), 1, - sym__newline, - STATE(1081), 1, - sym_block, - STATE(2005), 1, - aux_sym_import_declaration_repeat1, - [24996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5158), 1, - sym__newline, - STATE(1098), 1, - sym_block, - STATE(2008), 1, - aux_sym_import_declaration_repeat1, - [25012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1082), 1, - sym_block, - [25028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1084), 1, - sym_block, - [25044] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - sym__newline, - STATE(1085), 1, - sym_block, - STATE(2007), 1, - aux_sym_import_declaration_repeat1, - [25060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5162), 1, - sym__newline, - STATE(1086), 1, - sym_block, - STATE(2009), 1, - aux_sym_import_declaration_repeat1, - [25076] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1639), 1, - sym_block, - [25092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1089), 1, - sym_block, - [25108] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5164), 1, - sym__newline, - STATE(1090), 1, - sym_block, - STATE(2014), 1, - aux_sym_import_declaration_repeat1, - [25124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4529), 1, - sym_identifier, - ACTIONS(5166), 1, - sym__newline, - STATE(1820), 1, - aux_sym_import_declaration_repeat1, - STATE(2067), 1, - sym_keyed_field_initializer, - [25140] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1974), 1, - anon_sym_RPAREN, - ACTIONS(5168), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3374), 1, - anon_sym_RPAREN, - ACTIONS(5170), 1, - anon_sym_else, - ACTIONS(5173), 1, - sym__newline, - STATE(2183), 1, - aux_sym_import_declaration_repeat1, - [25172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1091), 1, - sym_block, - [25188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5176), 1, - sym__newline, - STATE(1092), 1, - sym_block, - STATE(2016), 1, - aux_sym_import_declaration_repeat1, - [25204] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1138), 1, - sym_block, - [25220] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3335), 1, - anon_sym_RPAREN, - ACTIONS(5178), 1, - anon_sym_else, - ACTIONS(5181), 1, - sym__newline, - STATE(2184), 1, - aux_sym_import_declaration_repeat1, - [25236] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(5184), 1, - anon_sym_else, - ACTIONS(5187), 1, - sym__newline, - STATE(2185), 1, - aux_sym_import_declaration_repeat1, - [25252] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1661), 1, - sym_block, - [25268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - sym__newline, - STATE(511), 1, - sym_block, - STATE(1894), 1, - aux_sym_import_declaration_repeat1, - [25284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1093), 1, - sym_block, - [25300] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5192), 1, - sym__newline, - STATE(1094), 1, - sym_block, - STATE(2024), 1, - aux_sym_import_declaration_repeat1, - [25316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1152), 1, - sym_block, - [25332] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5194), 1, - sym__newline, - STATE(1154), 1, - sym_block, - STATE(1807), 1, - aux_sym_import_declaration_repeat1, - [25348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 1, - anon_sym_LBRACE, - ACTIONS(5196), 1, - sym__newline, - STATE(395), 1, - sym_enum_body, - STATE(2002), 1, - aux_sym_import_declaration_repeat1, - [25364] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1095), 1, - sym_block, - [25380] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1107), 1, - sym_block, - [25396] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5198), 1, - sym__newline, - STATE(1109), 1, - sym_block, - STATE(2026), 1, - aux_sym_import_declaration_repeat1, - [25412] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - sym__newline, - STATE(1156), 1, - sym_block, - STATE(1831), 1, - aux_sym_import_declaration_repeat1, - [25428] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, - sym__newline, - STATE(1177), 1, - sym_block, - STATE(1879), 1, - aux_sym_import_declaration_repeat1, - [25444] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1111), 1, - sym_block, - [25460] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - sym__newline, - STATE(1113), 1, - sym_block, - STATE(2029), 1, - aux_sym_import_declaration_repeat1, - [25476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1672), 1, - sym_block, - [25492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1114), 1, - sym_block, - [25508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1261), 1, - sym_block, - [25524] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1630), 1, - sym_string, - [25540] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1115), 1, - sym_block, - [25556] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5206), 1, - sym__newline, - STATE(1116), 1, - sym_block, - STATE(2032), 1, - aux_sym_import_declaration_repeat1, - [25572] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5208), 1, - sym__newline, - STATE(1262), 1, - sym_block, - STATE(2033), 1, - aux_sym_import_declaration_repeat1, - [25588] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5210), 1, - sym__newline, - STATE(1158), 1, - sym_block, - STATE(1866), 1, - aux_sym_import_declaration_repeat1, - [25604] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4258), 1, - anon_sym_RPAREN, - ACTIONS(5212), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2079), 1, - sym__type_constant, - ACTIONS(5214), 2, - sym_integer, - sym_character, - [25634] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_block, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25650] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2091), 1, - sym__type_constant, - ACTIONS(5216), 2, - sym_integer, - sym_character, - [25664] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_block, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1210), 1, - sym_block, - [25696] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5220), 1, - sym__newline, - STATE(1935), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5218), 2, - sym_sink, - sym_identifier, - [25710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(5222), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25726] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym_record_body, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25742] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1117), 1, - sym_block, - [25758] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5224), 1, - sym__newline, - STATE(1223), 1, - sym_block, - STATE(1916), 1, - aux_sym_import_declaration_repeat1, - [25774] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4688), 1, - anon_sym_LBRACE, - STATE(433), 1, - sym_enum_body, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [25790] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5226), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [25800] = 4, - ACTIONS(5012), 1, - sym_comment, - ACTIONS(5228), 1, - anon_sym_DQUOTE, - STATE(1862), 1, - aux_sym_string_repeat1, - ACTIONS(5230), 2, - sym_string_content, - sym_escape_sequence, - [25814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1119), 1, - sym_block, - [25830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2093), 1, - sym__type_constant, - ACTIONS(5232), 2, - sym_integer, - sym_character, - [25844] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1120), 1, - sym_block, - [25860] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1161), 1, - sym_block, - [25876] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1121), 1, - sym_block, - [25892] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5234), 1, - sym__newline, - STATE(1122), 1, - sym_block, - STATE(2039), 1, - aux_sym_import_declaration_repeat1, - [25908] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(295), 1, - sym__newline, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1645), 1, - sym_string, - [25924] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1222), 1, - sym_block, - [25940] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5236), 1, - sym__newline, - STATE(1224), 1, - sym_block, - STATE(1890), 1, - aux_sym_import_declaration_repeat1, - [25956] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1123), 1, - sym_block, - [25972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2125), 1, - sym__type_constant, - ACTIONS(5238), 2, - sym_integer, - sym_character, - [25986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1125), 1, - sym_block, - [26002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5240), 1, - sym__newline, - STATE(1126), 1, - sym_block, - STATE(2044), 1, - aux_sym_import_declaration_repeat1, - [26018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2133), 1, - sym__type_constant, - ACTIONS(5242), 2, - sym_integer, - sym_character, - [26032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2136), 1, - sym__type_constant, - ACTIONS(5244), 2, - sym_integer, - sym_character, - [26046] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2153), 1, - sym__type_constant, - ACTIONS(5246), 2, - sym_integer, - sym_character, - [26060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4945), 1, - anon_sym_DASH, - STATE(2154), 1, - sym__type_constant, - ACTIONS(5248), 2, - sym_integer, - sym_character, - [26074] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1214), 1, - sym_block, - [26090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5250), 1, - sym__newline, - STATE(1226), 1, - sym_block, - STATE(1892), 1, - aux_sym_import_declaration_repeat1, - [26106] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1127), 1, - sym_block, - [26122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5252), 1, - sym__newline, - STATE(1128), 1, - sym_block, - STATE(2048), 1, - aux_sym_import_declaration_repeat1, - [26138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1129), 1, - sym_block, - [26154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5254), 1, - sym__newline, - STATE(1130), 1, - sym_block, - STATE(2049), 1, - aux_sym_import_declaration_repeat1, - [26170] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5256), 1, - sym__newline, - STATE(1078), 1, - sym_block, - STATE(1973), 1, - aux_sym_import_declaration_repeat1, - [26186] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1131), 1, - sym_block, - [26202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5258), 1, - sym__newline, - STATE(1215), 1, - sym_block, - STATE(1849), 1, - aux_sym_import_declaration_repeat1, - [26218] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1179), 1, - sym_block, - [26234] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1132), 1, - sym_block, - [26250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1229), 1, - sym_block, - [26266] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5260), 1, - sym__newline, - STATE(1170), 1, - sym_block, - STATE(2022), 1, - aux_sym_import_declaration_repeat1, - [26282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(2061), 1, - anon_sym_RBRACK, - ACTIONS(5262), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26298] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3958), 1, - anon_sym_RPAREN, - ACTIONS(4941), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5264), 1, - sym__newline, - STATE(496), 1, - sym_block, - STATE(1995), 1, - aux_sym_import_declaration_repeat1, - [26330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5268), 1, - sym__newline, - STATE(1884), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(5266), 2, - sym_sink, - sym_identifier, - [26344] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1133), 1, - sym_block, - [26360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(5270), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(5272), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_record_body, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26408] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - sym__newline, - STATE(1231), 1, - sym_block, - STATE(1898), 1, - aux_sym_import_declaration_repeat1, - [26424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1134), 1, - sym_block, - [26440] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4541), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1657), 1, - sym_record_body, - [26456] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_COMMA, - ACTIONS(5276), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5168), 1, - anon_sym_COMMA, - ACTIONS(5278), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26488] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1135), 1, - sym_block, - [26504] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1136), 1, - sym_block, - [26520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(5280), 1, - sym__newline, - STATE(1137), 1, - sym_block, - STATE(1966), 1, - aux_sym_import_declaration_repeat1, - [26536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 4, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON, - sym__newline, - [26546] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(3825), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - STATE(1164), 1, - sym_block, - [26562] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4007), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5282), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5284), 1, - anon_sym_PIPE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5288), 1, - anon_sym_AT, - ACTIONS(5286), 2, - sym_sink, - sym_identifier, - [26612] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5290), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [26634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5292), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26647] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 1, - anon_sym_PIPE, - ACTIONS(3803), 1, - anon_sym_COLON, - STATE(2280), 1, - sym_match_capture, - [26660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5294), 1, - anon_sym_LBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26673] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5296), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5298), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5300), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [26708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1904), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5302), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26734] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4632), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [26743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4100), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26769] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5306), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26782] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5308), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26795] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5310), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5312), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26821] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4805), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [26830] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5314), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26843] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5316), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26856] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5318), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [26865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5320), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [26874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 1, - anon_sym_RBRACK, - ACTIONS(5324), 1, - sym__newline, - STATE(2179), 1, - aux_sym_import_declaration_repeat1, - [26887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5326), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5328), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26913] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5330), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5332), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26939] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5334), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5292), 1, - anon_sym_RPAREN, - ACTIONS(5336), 1, - sym__newline, - STATE(2115), 1, - aux_sym_import_declaration_repeat1, - [26965] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5338), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [26978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5340), 1, - anon_sym_RBRACK, - ACTIONS(5342), 1, - sym__newline, - STATE(2088), 1, - aux_sym_import_declaration_repeat1, - [26991] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5344), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27004] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5346), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27017] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5348), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5350), 1, - anon_sym_RBRACK, - ACTIONS(5352), 1, - sym__newline, - STATE(2063), 1, - aux_sym_import_declaration_repeat1, - [27043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5354), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27056] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5356), 1, - anon_sym_RBRACK, - ACTIONS(5358), 1, - sym__newline, - STATE(2092), 1, - aux_sym_import_declaration_repeat1, - [27069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5360), 1, - anon_sym_RPAREN, - ACTIONS(5362), 1, - sym__newline, - STATE(2120), 1, - aux_sym_import_declaration_repeat1, - [27082] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5364), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [27091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4617), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5366), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [27113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5368), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5370), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27139] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1882), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27152] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5372), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5374), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5376), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27191] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5378), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5380), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5382), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5384), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [27239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5386), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5388), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5390), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5392), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5394), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5396), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27317] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5398), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27330] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5402), 1, - anon_sym_RPAREN, - ACTIONS(5404), 1, - sym__newline, - STATE(2126), 1, - aux_sym_import_declaration_repeat1, - [27356] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [27365] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5406), 1, - anon_sym_PIPE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27378] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5408), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27391] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5410), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5410), 1, - anon_sym_RPAREN, - ACTIONS(5412), 1, - sym__newline, - STATE(2075), 1, - aux_sym_import_declaration_repeat1, - [27417] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5416), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5418), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5420), 1, - anon_sym_RBRACK, - ACTIONS(5422), 1, - sym__newline, - STATE(2135), 1, - aux_sym_import_declaration_repeat1, - [27469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5424), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5426), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5424), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - sym__newline, - STATE(2122), 1, - aux_sym_import_declaration_repeat1, - [27508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5432), 1, - anon_sym_AT, - ACTIONS(5430), 2, - sym_sink, - sym_identifier, - [27519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5434), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5436), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5438), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [27554] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5440), 1, - anon_sym_RBRACK, - ACTIONS(5442), 1, - sym__newline, - STATE(2145), 1, - aux_sym_import_declaration_repeat1, - [27567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5444), 1, - anon_sym_RPAREN, - ACTIONS(5446), 1, - sym__newline, - STATE(2175), 1, - aux_sym_import_declaration_repeat1, - [27580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5448), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5450), 1, - anon_sym_RBRACK, - ACTIONS(5452), 1, - sym__newline, - STATE(2152), 1, - aux_sym_import_declaration_repeat1, - [27606] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5454), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5456), 1, - anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [27641] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(4048), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5458), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4648), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [27676] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(1816), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5460), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5462), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27715] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5464), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5466), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27741] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5468), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5470), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27767] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5472), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, ACTIONS(5474), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5476), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27806] = 4, - ACTIONS(3), 1, - sym_comment, + ts_builtin_sym_end, ACTIONS(5478), 1, - anon_sym_RBRACK, + anon_sym_BANG, ACTIONS(5480), 1, sym__newline, - STATE(2167), 1, + STATE(2560), 1, + sym_block, + STATE(2906), 1, aux_sym_import_declaration_repeat1, - [27819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5482), 1, - anon_sym_RBRACK, - ACTIONS(5484), 1, - sym__newline, - STATE(2168), 1, - aux_sym_import_declaration_repeat1, - [27832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5486), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5488), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5490), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5492), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5494), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27897] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5496), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27910] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5498), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27923] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5500), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5502), 1, - anon_sym_RBRACK, - ACTIONS(5504), 1, - sym__newline, - STATE(2086), 1, - aux_sym_import_declaration_repeat1, - [27949] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5506), 1, + ACTIONS(1097), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_PIPE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27962] = 4, + ACTIONS(5476), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52659] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5508), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5510), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [27988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5512), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5514), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28014] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5516), 1, - anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5518), 1, + ACTIONS(4896), 1, anon_sym_LBRACE, - STATE(701), 1, + ACTIONS(5483), 1, + ts_builtin_sym_end, + ACTIONS(5487), 1, + anon_sym_BANG, + ACTIONS(5489), 1, + sym__newline, + STATE(2562), 1, + sym_block, + STATE(3129), 1, aux_sym_import_declaration_repeat1, - [28040] = 4, + ACTIONS(1123), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5485), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + ts_builtin_sym_end, + ACTIONS(5496), 1, + anon_sym_BANG, + ACTIONS(5498), 1, sym__newline, - ACTIONS(5520), 1, - anon_sym_else, - STATE(701), 1, + STATE(2588), 1, + sym_block, + STATE(3014), 1, aux_sym_import_declaration_repeat1, - [28053] = 4, + ACTIONS(1097), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5494), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52725] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5501), 1, + ts_builtin_sym_end, + ACTIONS(5505), 1, sym__newline, + STATE(2556), 1, + sym_block, + STATE(2964), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1157), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5503), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52755] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5508), 1, + ts_builtin_sym_end, + ACTIONS(5512), 1, + sym__newline, + STATE(2592), 1, + sym_block, + STATE(2990), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1197), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5510), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52785] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5515), 1, + ts_builtin_sym_end, + ACTIONS(5519), 1, + sym__newline, + STATE(2577), 1, + sym_block, + STATE(2971), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1197), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5517), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5522), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5524), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, + ts_builtin_sym_end, ACTIONS(5526), 1, + sym__newline, + STATE(2580), 1, + sym_block, + STATE(2932), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1157), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(5524), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [52845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + STATE(1773), 1, + sym_argument_list, + ACTIONS(492), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28092] = 4, + anon_sym_PIPE, + sym__newline, + [52865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5528), 1, + STATE(2509), 1, + aux_sym_type_repeat1, + ACTIONS(513), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, anon_sym_RPAREN, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, sym__newline, - ACTIONS(5530), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28118] = 4, + [52882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5532), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28131] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5528), 1, + STATE(2505), 1, + aux_sym_type_repeat1, + ACTIONS(502), 8, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, anon_sym_RPAREN, - ACTIONS(5534), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, sym__newline, - STATE(2070), 1, - aux_sym_import_declaration_repeat1, - [28144] = 4, + [52899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(5529), 1, + anon_sym_PIPE, + STATE(2508), 1, + aux_sym_type_repeat1, + ACTIONS(502), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + sym__newline, + [52918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5529), 1, + anon_sym_PIPE, + STATE(2509), 1, + aux_sym_type_repeat1, + ACTIONS(513), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + sym__newline, + [52937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5531), 1, + anon_sym_PIPE, + STATE(2509), 1, + aux_sym_type_repeat1, + ACTIONS(506), 7, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + sym__newline, + [52956] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, sym__newline, ACTIONS(5536), 1, - anon_sym_RBRACK, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28157] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, + anon_sym_RPAREN, ACTIONS(5538), 1, - anon_sym_else, - STATE(701), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + STATE(897), 1, aux_sym_import_declaration_repeat1, - [28170] = 4, + STATE(2748), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [52982] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5542), 1, + anon_sym_RPAREN, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5546), 1, + sym__newline, + STATE(2532), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53008] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, sym__newline, ACTIONS(5540), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5542), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5544), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5546), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, + anon_sym_DOLLAR, ACTIONS(5548), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5550), 1, - anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5552), 1, anon_sym_RPAREN, + ACTIONS(5550), 1, + anon_sym_DOT_DOT_DOT, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3140), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53034] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5548), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + ts_builtin_sym_end, + ACTIONS(5552), 1, + anon_sym_else, ACTIONS(5554), 1, sym__newline, - STATE(2059), 1, + STATE(3207), 1, aux_sym_import_declaration_repeat1, - [28261] = 4, + ACTIONS(4153), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5556), 1, - anon_sym_RBRACE, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5558), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [28283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(295), 1, - sym__newline, - ACTIONS(5560), 1, + ACTIONS(4101), 1, + ts_builtin_sym_end, + ACTIONS(5557), 1, anon_sym_else, - STATE(701), 1, - aux_sym_import_declaration_repeat1, - [28296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5562), 1, - anon_sym_COLON_COLON, - ACTIONS(5564), 1, - anon_sym_EQ, - [28306] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5566), 1, - anon_sym_COMMA, - ACTIONS(5568), 1, - anon_sym_PIPE, - [28316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5570), 1, - anon_sym_COMMA, - ACTIONS(5572), 1, - anon_sym_PIPE, - [28326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_LPAREN, - STATE(1352), 1, - sym_parameter_list, - [28336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5576), 1, - sym_identifier, - ACTIONS(5578), 1, - anon_sym_AT, - [28346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5580), 1, - anon_sym_COLON_COLON, - ACTIONS(5582), 1, - anon_sym_EQ, - [28356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5584), 1, - anon_sym_PIPE, - STATE(2293), 1, - sym_expand_match_capture, - [28366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5586), 1, - anon_sym_COMMA, - ACTIONS(5588), 1, - anon_sym_PIPE, - [28376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5590), 1, - anon_sym_COMMA, - ACTIONS(5592), 1, - anon_sym_PIPE, - [28386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5594), 2, - sym_sink, - sym_identifier, - [28394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5596), 2, - anon_sym_RBRACK, + ACTIONS(5559), 1, sym__newline, - [28402] = 2, + STATE(3215), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4099), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5542), 1, + anon_sym_RPAREN, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5564), 1, + sym__newline, + STATE(2533), 1, + aux_sym_import_declaration_repeat1, + STATE(3199), 1, + sym_parameter, + ACTIONS(5534), 2, sym_sink, sym_identifier, - [28410] = 2, + [53130] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 2, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5566), 1, + anon_sym_RPAREN, + ACTIONS(5568), 1, + sym__newline, + STATE(2537), 1, + aux_sym_import_declaration_repeat1, + STATE(3199), 1, + sym_parameter, + ACTIONS(5534), 2, sym_sink, sym_identifier, - [28418] = 3, + [53156] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(872), 1, - anon_sym_LPAREN, - STATE(478), 1, - sym_argument_list, - [28428] = 3, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5548), 1, + anon_sym_RPAREN, + ACTIONS(5570), 1, + sym__newline, + STATE(2523), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5602), 1, + ACTIONS(4146), 1, + ts_builtin_sym_end, + ACTIONS(5572), 1, + anon_sym_else, + ACTIONS(5575), 1, + sym__newline, + STATE(3304), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4144), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53204] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4146), 1, + ts_builtin_sym_end, + ACTIONS(5578), 1, + anon_sym_else, + ACTIONS(5580), 1, + sym__newline, + STATE(3240), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4144), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5583), 1, + anon_sym_BANG, + ACTIONS(1097), 7, anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE, + sym__newline, + [53242] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + ts_builtin_sym_end, + ACTIONS(5585), 1, + anon_sym_else, + ACTIONS(5588), 1, + sym__newline, + STATE(3305), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4089), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53264] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5591), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3140), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53290] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5593), 1, + anon_sym_RPAREN, + ACTIONS(5595), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + sym__newline, + STATE(2510), 1, + aux_sym_import_declaration_repeat1, + STATE(2782), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53316] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + ts_builtin_sym_end, + ACTIONS(5599), 1, + anon_sym_else, + ACTIONS(5601), 1, + sym__newline, + STATE(3326), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4114), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53338] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 1, + ts_builtin_sym_end, ACTIONS(5604), 1, - anon_sym_EQ, - [28438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5606), 1, - anon_sym_COLON_COLON, - ACTIONS(5608), 1, - anon_sym_EQ, - [28448] = 3, + anon_sym_else, + ACTIONS(5607), 1, + sym__newline, + STATE(3306), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4134), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53360] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5610), 1, - sym_identifier, - ACTIONS(5612), 1, - anon_sym_AT, - [28458] = 3, + anon_sym_COMMA, + ACTIONS(5613), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(3234), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5083), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_COLON, + [53382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_LPAREN, - STATE(1349), 1, - sym_parameter_list, - [28468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5614), 1, - anon_sym_DASH, + ACTIONS(4136), 1, + ts_builtin_sym_end, ACTIONS(5616), 1, - sym_integer, - [28478] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_else, ACTIONS(5618), 1, - anon_sym_COLON_COLON, - ACTIONS(5620), 1, - anon_sym_EQ, - [28488] = 3, + sym__newline, + STATE(3325), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4134), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, - anon_sym_COLON_COLON, + ACTIONS(4155), 1, + ts_builtin_sym_end, + ACTIONS(5621), 1, + anon_sym_else, ACTIONS(5624), 1, - anon_sym_EQ, - [28498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5626), 1, - anon_sym_COLON_COLON, - ACTIONS(5628), 1, - anon_sym_EQ, - [28508] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5630), 2, - sym_sink, + sym__newline, + STATE(3307), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4153), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28516] = 3, + [53426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5632), 1, - anon_sym_COLON_COLON, - ACTIONS(5634), 1, - anon_sym_EQ, - [28526] = 3, + ACTIONS(4101), 1, + ts_builtin_sym_end, + ACTIONS(5627), 1, + anon_sym_else, + ACTIONS(5630), 1, + sym__newline, + STATE(3308), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4099), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53448] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4116), 1, + ts_builtin_sym_end, + ACTIONS(5633), 1, + anon_sym_else, ACTIONS(5636), 1, - anon_sym_COMMA, - ACTIONS(5638), 1, - anon_sym_PIPE, - [28536] = 3, + sym__newline, + STATE(3309), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4114), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53470] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5574), 1, - anon_sym_LPAREN, - STATE(1345), 1, - sym_parameter_list, - [28546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5640), 1, - anon_sym_COMMA, - ACTIONS(5642), 1, - anon_sym_PIPE, - [28556] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5644), 2, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5639), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3140), 1, + sym_parameter, + ACTIONS(5534), 2, sym_sink, sym_identifier, - [28564] = 3, + [53496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 1, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5639), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, sym_identifier, - ACTIONS(5648), 1, - anon_sym_AT, - [28574] = 3, + [53522] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5639), 1, + anon_sym_RPAREN, + ACTIONS(5641), 1, + sym__newline, + STATE(2512), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53548] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5639), 1, + anon_sym_RPAREN, + ACTIONS(5643), 1, + sym__newline, + STATE(2513), 1, + aux_sym_import_declaration_repeat1, + STATE(3199), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + ts_builtin_sym_end, + ACTIONS(5645), 1, + anon_sym_else, + ACTIONS(5647), 1, + sym__newline, + STATE(3310), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4089), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53596] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5542), 1, + anon_sym_RPAREN, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5650), 1, + anon_sym_BANG, + ACTIONS(1123), 7, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_RPAREN, anon_sym_LBRACE, - STATE(518), 1, - sym_initializer_list, - [28584] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5650), 2, - sym_sink, - sym_identifier, - [28592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5652), 1, anon_sym_COMMA, - ACTIONS(5654), 1, anon_sym_PIPE, - [28602] = 2, + sym__newline, + [53638] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 2, + ACTIONS(4956), 1, + anon_sym_COMMA, + ACTIONS(4962), 1, + sym__newline, + ACTIONS(5652), 1, + anon_sym_PIPE, + ACTIONS(5654), 1, + anon_sym_COLON, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(3234), 1, + aux_sym_import_declaration_repeat1, + STATE(3506), 1, + sym_match_capture, + [53663] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5656), 1, + sym__newline, + STATE(2542), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, sym_sink, sym_identifier, - [28610] = 2, + [53686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5658), 2, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5544), 1, + anon_sym_DOT_DOT_DOT, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3279), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, sym_identifier, - sym_integer, - [28618] = 2, + [53709] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5550), 1, + anon_sym_DOT_DOT_DOT, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3140), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53732] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_DOLLAR, + ACTIONS(5562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5658), 1, + sym__newline, + STATE(2541), 1, + aux_sym_import_declaration_repeat1, + STATE(3199), 1, + sym_parameter, + ACTIONS(5534), 2, + sym_sink, + sym_identifier, + [53755] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5660), 2, - sym_sink, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5662), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28626] = 3, + [53769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, - anon_sym_COLON_COLON, - ACTIONS(5664), 1, - anon_sym_EQ, - [28636] = 3, + ACTIONS(5664), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5666), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, + ACTIONS(5668), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5670), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5672), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5674), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1029), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(1031), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5678), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5033), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5035), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5682), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5686), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5688), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5690), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53895] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1740), 1, anon_sym_COMMA, - ACTIONS(5668), 1, - anon_sym_PIPE, - [28646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5670), 1, - sym_identifier, - ACTIONS(5672), 1, - anon_sym_AT, - [28656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5674), 1, - anon_sym_COMMA, - ACTIONS(5676), 1, - anon_sym_PIPE, - [28666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5574), 1, - anon_sym_LPAREN, - STATE(1341), 1, - sym_parameter_list, - [28676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5678), 2, - sym_integer, - sym_character, - [28684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5658), 1, - sym_integer, - ACTIONS(5680), 1, - sym_identifier, - [28694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, - anon_sym_AT, - [28704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, - anon_sym_COLON_COLON, - ACTIONS(5688), 1, - anon_sym_EQ, - [28714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5690), 1, - sym_identifier, ACTIONS(5692), 1, - anon_sym_AT, - [28724] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_PIPE, ACTIONS(5694), 1, - anon_sym_COLON_COLON, + anon_sym_COLON, ACTIONS(5696), 1, - anon_sym_EQ, - [28734] = 3, + sym__newline, + STATE(2567), 1, + aux_sym_capture_list_repeat1, + STATE(3280), 1, + aux_sym_import_declaration_repeat1, + [53917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5698), 1, - anon_sym_COMMA, - ACTIONS(5700), 1, - anon_sym_PIPE, - [28744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5702), 1, - anon_sym_COMMA, - ACTIONS(5704), 1, - anon_sym_PIPE, - [28754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5706), 1, - anon_sym_COLON, - [28761] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_SEMI, - [28768] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5710), 1, + ACTIONS(5698), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5700), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28775] = 2, + [53931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 1, - anon_sym_COLON, - [28782] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5714), 1, - anon_sym_COLON, - [28789] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5716), 1, - anon_sym_COLON, - [28796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5718), 1, - anon_sym_EQ, - [28803] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5720), 1, - anon_sym_COLON, - [28810] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 1, - anon_sym_COLON, - [28817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5724), 1, - anon_sym_COLON, - [28824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5576), 1, + ACTIONS(5702), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5704), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28831] = 2, + [53945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 1, - anon_sym_COLON, - [28838] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5728), 1, + ACTIONS(5706), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5708), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28845] = 2, + [53959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 1, + ACTIONS(5710), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5712), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, sym_identifier, - [28852] = 2, + [53973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, - anon_sym_COLON, - [28859] = 2, + ACTIONS(5714), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5716), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [53987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, - anon_sym_PIPE, - [28866] = 2, + ACTIONS(5718), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5720), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - anon_sym_COLON, - [28873] = 2, + ACTIONS(5722), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5724), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_PIPE, - [28880] = 2, + ACTIONS(5726), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5728), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_COLON, - [28887] = 2, + ACTIONS(5730), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5732), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5047), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5734), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5736), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5740), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54085] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5742), 1, - sym_integer, - [28894] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5744), 1, - anon_sym_COLON, - [28901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5746), 1, - anon_sym_COLON, - [28908] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5748), 1, - anon_sym_COLON, - [28915] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON, - [28922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5752), 1, - sym_identifier, - [28929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5754), 1, - anon_sym_COLON, - [28936] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5756), 1, - anon_sym_COLON, - [28943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5758), 1, - anon_sym_COLON, - [28950] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5646), 1, - sym_identifier, - [28957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5760), 1, - anon_sym_COLON, - [28964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5762), 1, - anon_sym_COLON, - [28971] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5764), 1, + anon_sym_COMMA, + ACTIONS(5747), 1, + sym__newline, + STATE(2567), 1, + aux_sym_capture_list_repeat1, + STATE(3280), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(5745), 2, anon_sym_PIPE, - [28978] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5766), 1, - sym_identifier, - [28985] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5768), 1, anon_sym_COLON, - [28992] = 2, + [54105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 1, - anon_sym_COLON, - [28999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5772), 1, - anon_sym_COLON, - [29006] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, - anon_sym_COLON, - [29013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5776), 1, - anon_sym_COLON, - [29020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5778), 1, - anon_sym_PIPE, - [29027] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5780), 1, - anon_sym_PIPE, - [29034] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5782), 1, - anon_sym_COLON, - [29041] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5784), 1, - anon_sym_COLON, - [29048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5786), 1, - sym_identifier, - [29055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5788), 1, - sym_identifier, - [29062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5790), 1, - anon_sym_PIPE, - [29069] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5792), 1, - anon_sym_COLON, - [29076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5794), 1, - sym_identifier, - [29083] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 1, - anon_sym_COLON, - [29090] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5798), 1, - sym_identifier, - [29097] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 1, - anon_sym_COLON, - [29104] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5802), 1, - anon_sym_COLON, - [29111] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5804), 1, - anon_sym_COLON, - [29118] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 1, - sym_identifier, - [29125] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5808), 1, - sym_identifier, - [29132] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5810), 1, - anon_sym_COLON, - [29139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 1, - anon_sym_COLON, - [29146] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5814), 1, - anon_sym_PIPE, - [29153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5816), 1, - anon_sym_COLON, - [29160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 1, - anon_sym_COLON, - [29167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5820), 1, - sym_identifier, - [29174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5822), 1, - anon_sym_COLON, - [29181] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5824), 1, - anon_sym_COLON, - [29188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5826), 1, - anon_sym_COLON, - [29195] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5828), 1, - anon_sym_COLON, - [29202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 1, - anon_sym_COLON, - [29209] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 1, - anon_sym_PIPE, - [29216] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5834), 1, - anon_sym_COLON, - [29223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5836), 1, - sym_identifier, - [29230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 1, - anon_sym_COLON, - [29237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5840), 1, - sym_identifier, - [29244] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5842), 1, - anon_sym_COLON, - [29251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1794), 1, - anon_sym_SEMI, - [29258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 1, - anon_sym_COLON, - [29265] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 1, - sym_identifier, - [29272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5848), 1, - sym_identifier, - [29279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 1, - anon_sym_PIPE, - [29286] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5852), 1, + ACTIONS(5750), 2, ts_builtin_sym_end, - [29293] = 2, + sym__newline, + ACTIONS(5752), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54119] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5754), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5756), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5760), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5762), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5764), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5008), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5010), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1045), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(1047), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5766), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5768), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5079), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5081), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5770), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5772), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5774), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5776), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5778), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5780), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5782), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5784), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5786), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5788), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5790), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5792), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5794), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5796), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5798), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5800), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5802), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5804), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5806), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5808), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5810), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5812), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5814), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5816), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5818), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5820), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5822), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5824), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5828), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5830), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5832), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5834), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5836), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5838), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5840), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5842), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5844), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5846), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5848), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(5852), 4, + anon_sym_import, + anon_sym_test, + anon_sym_hide, + sym_identifier, + [54511] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5854), 1, - anon_sym_COLON, - [29300] = 2, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1583), 1, + sym_block, + [54530] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5856), 1, - anon_sym_COLON, - [29307] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(5858), 1, - sym_identifier, - [29314] = 2, + sym__newline, + STATE(1652), 1, + sym_block, + STATE(2747), 1, + aux_sym_import_declaration_repeat1, + [54549] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5860), 1, - anon_sym_COLON, - [29321] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5862), 1, sym_identifier, - [29328] = 2, + ACTIONS(5862), 1, + sym__newline, + STATE(1654), 1, + sym_block, + STATE(2774), 1, + aux_sym_import_declaration_repeat1, + [54568] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5864), 1, - anon_sym_COLON, - [29335] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(5866), 1, - anon_sym_COLON, - [29342] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LBRACE, ACTIONS(5868), 1, - anon_sym_for, - [29349] = 2, + sym__newline, + STATE(660), 1, + sym_enum_body, + STATE(3123), 1, + aux_sym_import_declaration_repeat1, + [54587] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2308), 1, + anon_sym_RBRACE, ACTIONS(5870), 1, - anon_sym_COLON, - [29356] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(5872), 1, - anon_sym_COLON, - [29363] = 2, + sym__newline, + STATE(2654), 1, + aux_sym_variant_payload_repeat1, + STATE(2966), 1, + aux_sym_import_declaration_repeat1, + [54606] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(5542), 1, + anon_sym_RPAREN, ACTIONS(5874), 1, - sym_identifier, - [29370] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(5876), 1, - anon_sym_PIPE, - [29377] = 2, + sym__newline, + STATE(2605), 1, + aux_sym_parameter_list_repeat1, + STATE(2931), 1, + aux_sym_import_declaration_repeat1, + [54625] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5878), 1, - anon_sym_COLON, - [29384] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(5880), 1, - anon_sym_COLON, - [29391] = 2, + sym__newline, + STATE(1460), 1, + sym_block, + STATE(2770), 1, + aux_sym_import_declaration_repeat1, + [54644] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5882), 1, sym_identifier, - [29398] = 2, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1665), 1, + sym_block, + [54663] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5884), 1, - anon_sym_COLON, - [29405] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_RPAREN, ACTIONS(5886), 1, - anon_sym_COLON, - [29412] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5888), 1, - anon_sym_COLON, - [29419] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 1, - anon_sym_PIPE, - [29426] = 2, + anon_sym_COMMA, + ACTIONS(5889), 1, + sym__newline, + STATE(2605), 1, + aux_sym_parameter_list_repeat1, + STATE(3288), 1, + aux_sym_import_declaration_repeat1, + [54682] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5892), 1, - anon_sym_COLON, - [29433] = 2, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1668), 1, + sym_block, + [54701] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5894), 1, sym_identifier, - [29440] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(5896), 1, - anon_sym_COLON, - [29447] = 2, + sym__newline, + STATE(1510), 1, + sym_block, + STATE(2634), 1, + aux_sym_import_declaration_repeat1, + [54720] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4146), 1, + anon_sym_LBRACE, ACTIONS(5898), 1, - anon_sym_COLON, - [29454] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5900), 1, - anon_sym_COLON, - [29461] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 1, - anon_sym_PIPE, - [29468] = 2, + anon_sym_else, + ACTIONS(5901), 1, + sym__newline, + STATE(3251), 1, + aux_sym_import_declaration_repeat1, + [54739] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4089), 1, + sym_identifier, + ACTIONS(4091), 1, + anon_sym_LBRACE, ACTIONS(5904), 1, - anon_sym_COLON, - [29475] = 2, + anon_sym_else, + ACTIONS(5907), 1, + sym__newline, + STATE(3252), 1, + aux_sym_import_declaration_repeat1, + [54758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 1, - anon_sym_RPAREN, - [29482] = 2, + ACTIONS(2376), 1, + anon_sym_RBRACE, + ACTIONS(4998), 1, + anon_sym_COMMA, + ACTIONS(5000), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(2976), 1, + aux_sym_import_declaration_repeat1, + [54777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, - anon_sym_COLON, - [29489] = 2, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(5075), 1, + anon_sym_COMMA, + ACTIONS(5077), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(2831), 1, + aux_sym_import_declaration_repeat1, + [54796] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5910), 1, - anon_sym_COLON, - [29496] = 2, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1484), 1, + sym_block, + [54815] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(5075), 1, + anon_sym_COMMA, + ACTIONS(5077), 1, + sym__newline, + STATE(2631), 1, + aux_sym_initializer_list_repeat1, + STATE(2831), 1, + aux_sym_import_declaration_repeat1, + [54834] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACE, ACTIONS(5912), 1, - anon_sym_COLON, - [29503] = 2, + anon_sym_else, + ACTIONS(5915), 1, + sym__newline, + STATE(3253), 1, + aux_sym_import_declaration_repeat1, + [54853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5914), 1, - anon_sym_COLON, - [29510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5916), 1, - anon_sym_COLON, - [29517] = 2, + ACTIONS(2376), 1, + anon_sym_RBRACE, + ACTIONS(4998), 1, + anon_sym_COMMA, + ACTIONS(5000), 1, + sym__newline, + STATE(2668), 1, + aux_sym_initializer_list_repeat1, + STATE(2976), 1, + aux_sym_import_declaration_repeat1, + [54872] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(2641), 1, + anon_sym_RPAREN, ACTIONS(5918), 1, - anon_sym_COLON, - [29524] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_COMMA, ACTIONS(5920), 1, - anon_sym_COLON, - [29531] = 2, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2835), 1, + aux_sym_import_declaration_repeat1, + [54891] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5922), 1, - anon_sym_COLON, - [29538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5924), 1, - anon_sym_COLON, - [29545] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5926), 1, - anon_sym_COLON, - [29552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5928), 1, - anon_sym_PIPE, - [29559] = 2, + sym_identifier, + ACTIONS(5925), 1, + anon_sym_RBRACE, + ACTIONS(5927), 1, + sym__newline, + STATE(2617), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [54910] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5930), 1, - anon_sym_COLON, - [29566] = 2, - ACTIONS(3), 1, - sym_comment, + sym_identifier, ACTIONS(5932), 1, - anon_sym_COLON, - [29573] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_RBRACE, ACTIONS(5934), 1, - anon_sym_COLON, - [29580] = 2, + sym__newline, + STATE(2683), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [54929] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, ACTIONS(5936), 1, sym_identifier, - [29587] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(5938), 1, - anon_sym_import, - [29594] = 2, + sym__newline, + STATE(1675), 1, + sym_block, + STATE(2700), 1, + aux_sym_import_declaration_repeat1, + [54948] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4153), 1, + sym_identifier, + ACTIONS(4155), 1, + anon_sym_LBRACE, ACTIONS(5940), 1, - sym_identifier, - [29601] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_else, ACTIONS(5942), 1, + sym__newline, + STATE(3247), 1, + aux_sym_import_declaration_repeat1, + [54967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, sym_identifier, - [29608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5610), 1, - sym_identifier, - [29615] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5944), 1, - sym_identifier, - [29622] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5946), 1, - anon_sym_COLON, - [29629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 1, - anon_sym_COLON, - [29636] = 2, + ACTIONS(4101), 1, + anon_sym_LBRACE, + ACTIONS(5945), 1, + anon_sym_else, + ACTIONS(5947), 1, + sym__newline, + STATE(3257), 1, + aux_sym_import_declaration_repeat1, + [54986] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5950), 1, - anon_sym_COLON, - [29643] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN, ACTIONS(5952), 1, - sym_identifier, - [29650] = 2, + anon_sym_LBRACE, + ACTIONS(5954), 1, + sym__newline, + STATE(2112), 1, + sym_record_body, + STATE(2867), 1, + aux_sym_import_declaration_repeat1, + [55005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(5958), 1, + sym__newline, + STATE(2636), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [55024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, + anon_sym_RBRACE, + ACTIONS(5017), 1, + anon_sym_COMMA, + ACTIONS(5019), 1, + sym__newline, + STATE(2737), 1, + aux_sym_initializer_list_repeat1, + STATE(2937), 1, + aux_sym_import_declaration_repeat1, + [55043] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(2840), 1, + aux_sym_import_declaration_repeat1, + [55062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5964), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1667), 1, + sym_block, + [55081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + sym__newline, + STATE(2639), 1, + aux_sym_variant_payload_repeat1, + STATE(2840), 1, + aux_sym_import_declaration_repeat1, + [55100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5966), 1, + anon_sym_LPAREN, + ACTIONS(5968), 1, + anon_sym_LBRACE, + ACTIONS(5970), 1, + sym__newline, + STATE(2093), 1, + sym_enum_body, + STATE(3094), 1, + aux_sym_import_declaration_repeat1, + [55119] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 1, anon_sym_RPAREN, - [29657] = 2, + ACTIONS(5972), 1, + anon_sym_COMMA, + ACTIONS(5974), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2982), 1, + aux_sym_import_declaration_repeat1, + [55138] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5976), 1, + sym_identifier, + ACTIONS(5978), 1, + sym__newline, + STATE(1682), 1, + sym_block, + STATE(2775), 1, + aux_sym_import_declaration_repeat1, + [55157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2318), 1, + anon_sym_RBRACE, + ACTIONS(5980), 1, + anon_sym_COMMA, + ACTIONS(5982), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(2845), 1, + aux_sym_import_declaration_repeat1, + [55176] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5984), 1, + sym_identifier, + ACTIONS(5986), 1, + sym__newline, + STATE(1464), 1, + sym_block, + STATE(2713), 1, + aux_sym_import_declaration_repeat1, + [55195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5988), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1614), 1, + sym_block, + [55214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(5990), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1603), 1, + sym_block, + [55233] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(5992), 1, + anon_sym_else, + ACTIONS(5994), 1, + sym__newline, + STATE(3312), 1, + aux_sym_import_declaration_repeat1, + [55252] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(5997), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55271] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5956), 1, sym_identifier, - [29664] = 2, + ACTIONS(5997), 1, + anon_sym_RBRACE, + ACTIONS(5999), 1, + sym__newline, + STATE(2645), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 1, - anon_sym_COLON, - [29671] = 2, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(5997), 1, + anon_sym_RBRACE, + ACTIONS(6001), 1, + sym__newline, + STATE(2646), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [55309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1650), 1, - anon_sym_SEMI, - [29678] = 2, + ACTIONS(5997), 1, + anon_sym_RBRACE, + ACTIONS(6003), 1, + anon_sym_COMMA, + ACTIONS(6005), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(2852), 1, + aux_sym_import_declaration_repeat1, + [55328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5960), 1, - anon_sym_SEMI, - [29685] = 2, + ACTIONS(6007), 1, + anon_sym_BANG, + ACTIONS(6009), 1, + anon_sym_LBRACE, + ACTIONS(6011), 1, + sym__newline, + STATE(127), 1, + sym_block, + STATE(2792), 1, + aux_sym_import_declaration_repeat1, + [55347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, - anon_sym_COLON, - [29692] = 2, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6013), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1448), 1, + sym_block, + [55366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5964), 1, - anon_sym_COLON, - [29699] = 2, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6015), 1, + anon_sym_RBRACE, + ACTIONS(6017), 1, + sym__newline, + STATE(2617), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [55385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - anon_sym_PIPE, - [29706] = 2, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6019), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1456), 1, + sym_block, + [55404] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6021), 1, + sym_identifier, + ACTIONS(6023), 1, + sym__newline, + STATE(1457), 1, + sym_block, + STATE(2768), 1, + aux_sym_import_declaration_repeat1, + [55423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [55442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55461] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_RBRACE, + ACTIONS(6027), 1, + sym__newline, + STATE(2649), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6025), 1, + anon_sym_RBRACE, + ACTIONS(6029), 1, + sym__newline, + STATE(2650), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [55499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [55518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6031), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6031), 1, + anon_sym_RBRACE, + ACTIONS(6033), 1, + sym__newline, + STATE(2652), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [55556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6035), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [55575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6037), 1, + sym__newline, + STATE(2684), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [55594] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(6039), 1, + anon_sym_COMMA, + ACTIONS(6041), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(2998), 1, + aux_sym_import_declaration_repeat1, + [55613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6043), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1466), 1, + sym_block, + [55632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2741), 1, + anon_sym_RPAREN, + ACTIONS(4986), 1, + anon_sym_COMMA, + ACTIONS(4988), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2907), 1, + aux_sym_import_declaration_repeat1, + [55651] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(6039), 1, + anon_sym_COMMA, + ACTIONS(6041), 1, + sym__newline, + STATE(2695), 1, + aux_sym_variant_payload_repeat1, + STATE(2998), 1, + aux_sym_import_declaration_repeat1, + [55670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6045), 1, + anon_sym_BANG, + ACTIONS(6047), 1, + anon_sym_LBRACE, + ACTIONS(6049), 1, + sym__newline, + STATE(696), 1, + sym_block, + STATE(2958), 1, + aux_sym_import_declaration_repeat1, + [55689] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6051), 1, + anon_sym_LPAREN, + ACTIONS(6053), 1, + anon_sym_LBRACE, + ACTIONS(6055), 1, + sym__newline, + STATE(231), 1, + sym_record_body, + STATE(2909), 1, + aux_sym_import_declaration_repeat1, + [55708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6057), 1, + anon_sym_LPAREN, + ACTIONS(6059), 1, + anon_sym_LBRACE, + ACTIONS(6061), 1, + sym__newline, + STATE(232), 1, + sym_enum_body, + STATE(2869), 1, + aux_sym_import_declaration_repeat1, + [55727] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 1, + anon_sym_RBRACE, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6063), 1, + sym__newline, + STATE(2702), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [55746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6017), 1, + sym__newline, + ACTIONS(6065), 1, + anon_sym_RBRACE, + STATE(2617), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [55765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, + anon_sym_RBRACK, + ACTIONS(4868), 1, + anon_sym_COMMA, + ACTIONS(6067), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2799), 1, + aux_sym_import_declaration_repeat1, + [55784] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6069), 1, + sym_identifier, + ACTIONS(6071), 1, + sym__newline, + STATE(1561), 1, + sym_block, + STATE(2773), 1, + aux_sym_import_declaration_repeat1, + [55803] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 1, + anon_sym_RBRACE, + ACTIONS(6073), 1, + anon_sym_COMMA, + ACTIONS(6075), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(2965), 1, + aux_sym_import_declaration_repeat1, + [55822] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6077), 1, + anon_sym_RBRACE, + ACTIONS(6079), 1, + sym__newline, + STATE(2678), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [55841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6081), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1490), 1, + sym_block, + [55860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2212), 1, + anon_sym_RBRACE, + ACTIONS(6083), 1, + anon_sym_COMMA, + ACTIONS(6085), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(3009), 1, + aux_sym_import_declaration_repeat1, + [55879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6087), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1599), 1, + sym_block, + [55898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2671), 1, + anon_sym_RBRACK, + ACTIONS(4948), 1, + anon_sym_COMMA, + ACTIONS(6089), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2828), 1, + aux_sym_import_declaration_repeat1, + [55917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5268), 1, + anon_sym_RBRACE, + ACTIONS(6073), 1, + anon_sym_COMMA, + ACTIONS(6075), 1, + sym__newline, + STATE(2741), 1, + aux_sym_variant_payload_repeat1, + STATE(2965), 1, + aux_sym_import_declaration_repeat1, + [55936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6091), 1, + anon_sym_LPAREN, + ACTIONS(6093), 1, + anon_sym_LBRACE, + ACTIONS(6095), 1, + sym__newline, + STATE(1805), 1, + sym_record_body, + STATE(3054), 1, + aux_sym_import_declaration_repeat1, + [55955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6097), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1563), 1, + sym_block, + [55974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4144), 1, + sym_identifier, + ACTIONS(4146), 1, + anon_sym_LBRACE, + ACTIONS(6099), 1, + anon_sym_else, + ACTIONS(6101), 1, + sym__newline, + STATE(3165), 1, + aux_sym_import_declaration_repeat1, + [55993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6104), 1, + anon_sym_RBRACE, + ACTIONS(6106), 1, + sym__newline, + STATE(2642), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [56012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 1, + anon_sym_RBRACE, + ACTIONS(6108), 1, + anon_sym_COMMA, + ACTIONS(6110), 1, + sym__newline, + STATE(2665), 1, + aux_sym_variant_payload_repeat1, + STATE(2861), 1, + aux_sym_import_declaration_repeat1, + [56031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6112), 1, + sym_identifier, + ACTIONS(6114), 1, + sym__newline, + STATE(1694), 1, + sym_block, + STATE(2612), 1, + aux_sym_import_declaration_repeat1, + [56050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6017), 1, + sym__newline, + ACTIONS(6116), 1, + anon_sym_RBRACE, + STATE(2617), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [56069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6120), 1, + anon_sym_EQ, + ACTIONS(6118), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [56082] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6122), 1, + sym_identifier, + ACTIONS(6124), 1, + sym__newline, + STATE(1474), 1, + sym_block, + STATE(2667), 1, + aux_sym_import_declaration_repeat1, + [56101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 1, + anon_sym_RPAREN, + ACTIONS(4990), 1, + anon_sym_COMMA, + ACTIONS(4992), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2893), 1, + aux_sym_import_declaration_repeat1, + [56120] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6126), 1, + sym_identifier, + ACTIONS(6128), 1, + sym__newline, + STATE(1478), 1, + sym_block, + STATE(2733), 1, + aux_sym_import_declaration_repeat1, + [56139] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6017), 1, + sym__newline, + ACTIONS(6130), 1, + anon_sym_RBRACE, + STATE(2617), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [56158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6132), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56177] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6134), 1, + sym_identifier, + ACTIONS(6136), 1, + sym__newline, + STATE(1671), 1, + sym_block, + STATE(2699), 1, + aux_sym_import_declaration_repeat1, + [56196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2230), 1, + anon_sym_RBRACE, + ACTIONS(5049), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + sym__newline, + STATE(2610), 1, + aux_sym_initializer_list_repeat1, + STATE(2934), 1, + aux_sym_import_declaration_repeat1, + [56215] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6138), 1, + sym_identifier, + ACTIONS(6140), 1, + sym__newline, + STATE(1673), 1, + sym_block, + STATE(2604), 1, + aux_sym_import_declaration_repeat1, + [56234] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 1, + sym_identifier, + ACTIONS(4155), 1, + anon_sym_LBRACE, + ACTIONS(6142), 1, + anon_sym_else, + ACTIONS(6145), 1, + sym__newline, + STATE(3254), 1, + aux_sym_import_declaration_repeat1, + [56253] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + sym_identifier, + ACTIONS(4101), 1, + anon_sym_LBRACE, + ACTIONS(6148), 1, + anon_sym_else, + ACTIONS(6151), 1, + sym__newline, + STATE(3255), 1, + aux_sym_import_declaration_repeat1, + [56272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + anon_sym_RPAREN, + ACTIONS(6154), 1, + anon_sym_COMMA, + ACTIONS(6156), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2900), 1, + aux_sym_import_declaration_repeat1, + [56291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6158), 1, + sym_identifier, + ACTIONS(6160), 1, + sym__newline, + STATE(1686), 1, + sym_block, + STATE(2606), 1, + aux_sym_import_declaration_repeat1, + [56310] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6162), 1, + sym_identifier, + ACTIONS(6164), 1, + sym__newline, + STATE(1525), 1, + sym_block, + STATE(2597), 1, + aux_sym_import_declaration_repeat1, + [56329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6132), 1, + anon_sym_RBRACE, + ACTIONS(6166), 1, + sym__newline, + STATE(2714), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56348] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6132), 1, + anon_sym_RBRACE, + ACTIONS(6168), 1, + sym__newline, + STATE(2715), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [56367] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6132), 1, + anon_sym_RBRACE, + ACTIONS(6170), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(3018), 1, + aux_sym_import_declaration_repeat1, + [56386] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 1, + anon_sym_RBRACK, + ACTIONS(4886), 1, + anon_sym_COMMA, + ACTIONS(6174), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2901), 1, + aux_sym_import_declaration_repeat1, + [56405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6176), 1, + anon_sym_BANG, + ACTIONS(6178), 1, + anon_sym_LBRACE, + ACTIONS(6180), 1, + sym__newline, + STATE(2159), 1, + sym_block, + STATE(2872), 1, + aux_sym_import_declaration_repeat1, + [56424] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2509), 1, + anon_sym_RPAREN, + ACTIONS(5037), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2942), 1, + aux_sym_import_declaration_repeat1, + [56443] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6182), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1539), 1, + sym_block, + [56462] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6184), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1507), 1, + sym_block, + [56481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6186), 1, + sym_identifier, + ACTIONS(6188), 1, + sym__newline, + STATE(1704), 1, + sym_block, + STATE(2655), 1, + aux_sym_import_declaration_repeat1, + [56500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6190), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6192), 1, + anon_sym_COMMA, + ACTIONS(6195), 1, + anon_sym_RBRACE, + ACTIONS(6197), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(3334), 1, + aux_sym_import_declaration_repeat1, + [56538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_RPAREN, + ACTIONS(6200), 1, + anon_sym_COMMA, + ACTIONS(6202), 1, + sym__newline, + STATE(2605), 1, + aux_sym_parameter_list_repeat1, + STATE(3033), 1, + aux_sym_import_declaration_repeat1, + [56557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6204), 1, + sym_identifier, + ACTIONS(6206), 1, + sym__newline, + STATE(1664), 1, + sym_block, + STATE(2734), 1, + aux_sym_import_declaration_repeat1, + [56576] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6208), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1492), 1, + sym_block, + [56595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6210), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1523), 1, + sym_block, + [56614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6212), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1565), 1, + sym_block, + [56633] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6178), 1, + anon_sym_LBRACE, + ACTIONS(6214), 1, + anon_sym_BANG, + ACTIONS(6216), 1, + sym__newline, + STATE(2171), 1, + sym_block, + STATE(2945), 1, + aux_sym_import_declaration_repeat1, + [56652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6218), 1, + sym_identifier, + ACTIONS(6220), 1, + sym__newline, + STATE(1567), 1, + sym_block, + STATE(2728), 1, + aux_sym_import_declaration_repeat1, + [56671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6190), 1, + anon_sym_RBRACE, + ACTIONS(6222), 1, + sym__newline, + STATE(2777), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [56690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_RBRACE, + ACTIONS(6226), 1, + sym__newline, + STATE(2759), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6228), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1530), 1, + sym_block, + [56728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6230), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [56747] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6230), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6230), 1, + anon_sym_RBRACE, + ACTIONS(6232), 1, + sym__newline, + STATE(2722), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [56785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6230), 1, + anon_sym_RBRACE, + ACTIONS(6234), 1, + sym__newline, + STATE(2731), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [56804] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 1, + anon_sym_RBRACE, + ACTIONS(6236), 1, + anon_sym_COMMA, + ACTIONS(6239), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(3185), 1, + aux_sym_import_declaration_repeat1, + [56823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6242), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1529), 1, + sym_block, + [56842] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(6244), 1, + anon_sym_COMMA, + ACTIONS(6246), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(2846), 1, + aux_sym_import_declaration_repeat1, + [56861] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6248), 1, + sym_identifier, + ACTIONS(6250), 1, + sym__newline, + STATE(1596), 1, + sym_block, + STATE(2626), 1, + aux_sym_import_declaration_repeat1, + [56880] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6252), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [56899] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + sym_identifier, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(6254), 1, + anon_sym_else, + ACTIONS(6257), 1, + sym__newline, + STATE(3256), 1, + aux_sym_import_declaration_repeat1, + [56918] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6260), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1693), 1, + sym_block, + [56937] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6262), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1481), 1, + sym_block, + [56956] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(6264), 1, + anon_sym_RBRACE, + ACTIONS(6266), 1, + sym__newline, + STATE(2662), 1, + aux_sym_enum_body_repeat1, + STATE(2993), 1, + sym_enum_member, + [56975] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6268), 1, + sym_identifier, + ACTIONS(6270), 1, + sym__newline, + STATE(1443), 1, + sym_block, + STATE(2719), 1, + aux_sym_import_declaration_repeat1, + [56994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6272), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1656), 1, + sym_block, + [57013] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6190), 1, + anon_sym_RBRACE, + ACTIONS(6274), 1, + sym__newline, + STATE(2772), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [57032] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6276), 1, + sym_identifier, + ACTIONS(6278), 1, + sym__newline, + STATE(1531), 1, + sym_block, + STATE(2673), 1, + aux_sym_import_declaration_repeat1, + [57051] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6252), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [57070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6280), 1, + sym_identifier, + ACTIONS(6282), 1, + sym__newline, + STATE(1658), 1, + sym_block, + STATE(2669), 1, + aux_sym_import_declaration_repeat1, + [57089] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6284), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1495), 1, + sym_block, + [57108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6286), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1676), 1, + sym_block, + [57127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, + anon_sym_RBRACE, + ACTIONS(5059), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + sym__newline, + STATE(2611), 1, + aux_sym_initializer_list_repeat1, + STATE(2812), 1, + aux_sym_import_declaration_repeat1, + [57146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6288), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1659), 1, + sym_block, + [57165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + anon_sym_RBRACE, + ACTIONS(5071), 1, + anon_sym_COMMA, + ACTIONS(5073), 1, + sym__newline, + STATE(2718), 1, + aux_sym_initializer_list_repeat1, + STATE(2911), 1, + aux_sym_import_declaration_repeat1, + [57184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6290), 1, + anon_sym_LPAREN, + ACTIONS(6292), 1, + anon_sym_LBRACE, + ACTIONS(6294), 1, + sym__newline, + STATE(1791), 1, + sym_enum_body, + STATE(3115), 1, + aux_sym_import_declaration_repeat1, + [57203] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 1, + anon_sym_LPAREN, + ACTIONS(6298), 1, + anon_sym_LBRACE, + ACTIONS(6300), 1, + sym__newline, + STATE(1805), 1, + sym_record_body, + STATE(3121), 1, + aux_sym_import_declaration_repeat1, + [57222] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2623), 1, + anon_sym_RPAREN, + ACTIONS(5067), 1, + anon_sym_COMMA, + ACTIONS(5069), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2814), 1, + aux_sym_import_declaration_repeat1, + [57241] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6190), 1, + anon_sym_RBRACE, + ACTIONS(6302), 1, + anon_sym_COMMA, + ACTIONS(6304), 1, + sym__newline, + STATE(2703), 1, + aux_sym_variant_payload_repeat1, + STATE(2787), 1, + aux_sym_import_declaration_repeat1, + [57260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6306), 1, + sym_identifier, + ACTIONS(6308), 1, + sym__newline, + STATE(1570), 1, + sym_block, + STATE(2736), 1, + aux_sym_import_declaration_repeat1, + [57279] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6252), 1, + anon_sym_RBRACE, + ACTIONS(6310), 1, + sym__newline, + STATE(2744), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [57298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6312), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [57317] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2515), 1, + anon_sym_RBRACK, + ACTIONS(6314), 1, + anon_sym_COMMA, + ACTIONS(6316), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2960), 1, + aux_sym_import_declaration_repeat1, + [57336] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 1, + anon_sym_LBRACE, + ACTIONS(6318), 1, + anon_sym_BANG, + ACTIONS(6320), 1, + sym__newline, + STATE(151), 1, + sym_block, + STATE(2816), 1, + aux_sym_import_declaration_repeat1, + [57355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6322), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1696), 1, + sym_block, + [57374] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5566), 1, + anon_sym_RPAREN, + ACTIONS(6200), 1, + anon_sym_COMMA, + ACTIONS(6202), 1, + sym__newline, + STATE(2602), 1, + aux_sym_parameter_list_repeat1, + STATE(3033), 1, + aux_sym_import_declaration_repeat1, + [57393] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6324), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1528), 1, + sym_block, + [57412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + sym__newline, + STATE(1577), 1, + sym_block, + STATE(2708), 1, + aux_sym_import_declaration_repeat1, + [57431] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + anon_sym_RBRACK, + ACTIONS(6330), 1, + anon_sym_COMMA, + ACTIONS(6332), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(3048), 1, + aux_sym_import_declaration_repeat1, + [57450] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + anon_sym_RBRACE, + ACTIONS(5071), 1, + anon_sym_COMMA, + ACTIONS(5073), 1, + sym__newline, + STATE(2720), 1, + aux_sym_initializer_list_repeat1, + STATE(2911), 1, + aux_sym_import_declaration_repeat1, + [57469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6334), 1, + sym_identifier, + ACTIONS(6336), 1, + sym__newline, + STATE(1660), 1, + sym_block, + STATE(2784), 1, + aux_sym_import_declaration_repeat1, + [57488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_RBRACK, + ACTIONS(6338), 1, + anon_sym_COMMA, + ACTIONS(6340), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2824), 1, + aux_sym_import_declaration_repeat1, + [57507] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, + sym_identifier, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(6342), 1, + anon_sym_else, + ACTIONS(6344), 1, + sym__newline, + STATE(3172), 1, + aux_sym_import_declaration_repeat1, + [57526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1661), 1, + sym_block, + [57545] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6349), 1, + sym_identifier, + ACTIONS(6351), 1, + sym__newline, + STATE(1662), 1, + sym_block, + STATE(2725), 1, + aux_sym_import_declaration_repeat1, + [57564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4134), 1, + sym_identifier, + ACTIONS(4136), 1, + anon_sym_LBRACE, + ACTIONS(6353), 1, + anon_sym_else, + ACTIONS(6355), 1, + sym__newline, + STATE(3178), 1, + aux_sym_import_declaration_repeat1, + [57583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6358), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [57602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2394), 1, + anon_sym_RBRACE, + ACTIONS(6360), 1, + anon_sym_COMMA, + ACTIONS(6362), 1, + sym__newline, + STATE(2625), 1, + aux_sym_variant_payload_repeat1, + STATE(2827), 1, + aux_sym_import_declaration_repeat1, + [57621] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6364), 1, + sym_identifier, + ACTIONS(6366), 1, + sym__newline, + STATE(1582), 1, + sym_block, + STATE(2756), 1, + aux_sym_import_declaration_repeat1, + [57640] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [57659] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6368), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1452), 1, + sym_block, + [57678] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6370), 1, + sym_identifier, + ACTIONS(6372), 1, + sym__newline, + STATE(1475), 1, + sym_block, + STATE(2641), 1, + aux_sym_import_declaration_repeat1, + [57697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + sym_identifier, + ACTIONS(6376), 1, + sym__newline, + STATE(1503), 1, + sym_block, + STATE(2706), 1, + aux_sym_import_declaration_repeat1, + [57716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6047), 1, + anon_sym_LBRACE, + ACTIONS(6378), 1, + anon_sym_BANG, + ACTIONS(6380), 1, + sym__newline, + STATE(657), 1, + sym_block, + STATE(2856), 1, + aux_sym_import_declaration_repeat1, + [57735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_RPAREN, + ACTIONS(6382), 1, + anon_sym_COMMA, + ACTIONS(6384), 1, + sym__newline, + STATE(2527), 1, + aux_sym_match_arm_repeat1, + STATE(2963), 1, + aux_sym_import_declaration_repeat1, + [57754] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6386), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1485), 1, + sym_block, + [57773] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LBRACE, + ACTIONS(6388), 1, + anon_sym_LPAREN, + ACTIONS(6390), 1, + sym__newline, + STATE(658), 1, + sym_record_body, + STATE(3091), 1, + aux_sym_import_declaration_repeat1, + [57792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6392), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1480), 1, + sym_block, + [57811] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6394), 1, + sym_identifier, + ACTIONS(6396), 1, + sym__newline, + STATE(1482), 1, + sym_block, + STATE(2643), 1, + aux_sym_import_declaration_repeat1, + [57830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6398), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [57849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6400), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1648), 1, + sym_block, + [57868] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6402), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1700), 1, + sym_block, + [57887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6404), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1589), 1, + sym_block, + [57906] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [57925] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6398), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [57944] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6406), 1, + sym_identifier, + ACTIONS(6408), 1, + sym__newline, + STATE(1649), 1, + sym_block, + STATE(2724), 1, + aux_sym_import_declaration_repeat1, + [57963] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + sym_identifier, + ACTIONS(6412), 1, + sym__newline, + STATE(1701), 1, + sym_block, + STATE(2763), 1, + aux_sym_import_declaration_repeat1, + [57982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6398), 1, + anon_sym_RBRACE, + ACTIONS(6414), 1, + sym__newline, + STATE(2776), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [58001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6416), 1, + sym_identifier, + ACTIONS(6418), 1, + sym__newline, + STATE(1697), 1, + sym_block, + STATE(2707), 1, + aux_sym_import_declaration_repeat1, + [58020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5536), 1, + anon_sym_RPAREN, + ACTIONS(6420), 1, + anon_sym_COMMA, + ACTIONS(6422), 1, + sym__newline, + STATE(2704), 1, + aux_sym_parameter_list_repeat1, + STATE(2986), 1, + aux_sym_import_declaration_repeat1, + [58039] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6398), 1, + anon_sym_RBRACE, + ACTIONS(6424), 1, + sym__newline, + STATE(2762), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [58058] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6426), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1703), 1, + sym_block, + [58077] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5968), 1, + anon_sym_LBRACE, + ACTIONS(6428), 1, + sym__newline, + STATE(2094), 1, + sym_enum_body, + STATE(2818), 1, + aux_sym_import_declaration_repeat1, + [58093] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1522), 1, + sym_block, + [58109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6398), 1, + anon_sym_RBRACE, + ACTIONS(6430), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58125] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6432), 1, + sym__newline, + STATE(1524), 1, + sym_block, + STATE(2853), 1, + aux_sym_import_declaration_repeat1, + [58141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6434), 2, + sym_sink, + sym_identifier, + [58155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1532), 1, + sym_block, + [58171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2623), 1, + anon_sym_RPAREN, + ACTIONS(6436), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(150), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1476), 1, + sym_block, + [58219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LBRACE, + ACTIONS(6438), 1, + sym__newline, + STATE(655), 1, + sym_record_body, + STATE(2817), 1, + aux_sym_import_declaration_repeat1, + [58235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1535), 1, + sym_block, + [58251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6440), 1, + sym__newline, + STATE(1533), 1, + sym_block, + STATE(3066), 1, + aux_sym_import_declaration_repeat1, + [58267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1537), 1, + sym_block, + [58283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6442), 1, + sym__newline, + STATE(1544), 1, + sym_block, + STATE(2860), 1, + aux_sym_import_declaration_repeat1, + [58299] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2627), 1, + anon_sym_RBRACK, + ACTIONS(6444), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6444), 1, + anon_sym_COMMA, + ACTIONS(6446), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58331] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1545), 1, + sym_block, + [58347] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + ACTIONS(6450), 1, + sym__newline, + STATE(2549), 1, + sym_string, + STATE(3020), 1, + aux_sym_import_declaration_repeat1, + [58363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1546), 1, + sym_block, + [58379] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6452), 1, + sym__newline, + STATE(1551), 1, + sym_block, + STATE(2863), 1, + aux_sym_import_declaration_repeat1, + [58395] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6454), 1, + sym__newline, + STATE(1557), 1, + sym_block, + STATE(2865), 1, + aux_sym_import_declaration_repeat1, + [58411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6456), 1, + sym__newline, + STATE(1601), 1, + sym_block, + STATE(3085), 1, + aux_sym_import_declaration_repeat1, + [58427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1559), 1, + sym_block, + [58443] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6292), 1, + anon_sym_LBRACE, + ACTIONS(6458), 1, + sym__newline, + STATE(1779), 1, + sym_enum_body, + STATE(2973), 1, + aux_sym_import_declaration_repeat1, + [58459] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + sym__newline, + STATE(1672), 1, + sym_block, + STATE(2832), 1, + aux_sym_import_declaration_repeat1, + [58475] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1491), 1, + sym_block, + [58491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6462), 1, + sym__newline, + STATE(1566), 1, + sym_block, + STATE(2873), 1, + aux_sym_import_declaration_repeat1, + [58507] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2304), 1, + anon_sym_RBRACE, + ACTIONS(6464), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + sym__newline, + STATE(1501), 1, + sym_block, + STATE(2975), 1, + aux_sym_import_declaration_repeat1, + [58539] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2641), 1, + anon_sym_RPAREN, + ACTIONS(6468), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 1, + anon_sym_LBRACE, + ACTIONS(6470), 1, + sym__newline, + STATE(168), 1, + sym_block, + STATE(2836), 1, + aux_sym_import_declaration_repeat1, + [58571] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(169), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58587] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2099), 1, + sym_enum_body, + [58619] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6472), 1, + sym__newline, + STATE(1527), 1, + sym_block, + STATE(2980), 1, + aux_sym_import_declaration_repeat1, + [58635] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1580), 1, + sym_block, + [58651] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6474), 1, + sym__newline, + STATE(1587), 1, + sym_block, + STATE(2876), 1, + aux_sym_import_declaration_repeat1, + [58667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6476), 1, + sym__newline, + STATE(2551), 1, + sym_block, + STATE(2970), 1, + aux_sym_import_declaration_repeat1, + [58683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1588), 1, + sym_block, + [58699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2647), 1, + anon_sym_RBRACK, + ACTIONS(6478), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6480), 1, + anon_sym_COMMA, + ACTIONS(6482), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58731] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6484), 1, + sym__newline, + STATE(1590), 1, + sym_block, + STATE(2881), 1, + aux_sym_import_declaration_repeat1, + [58747] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5389), 1, + anon_sym_RBRACE, + ACTIONS(6486), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58763] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2753), 1, + anon_sym_RBRACK, + ACTIONS(6488), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 1, + anon_sym_LBRACE, + ACTIONS(6490), 1, + sym__newline, + STATE(187), 1, + sym_block, + STATE(2843), 1, + aux_sym_import_declaration_repeat1, + [58795] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1592), 1, + sym_block, + [58811] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2318), 1, + anon_sym_RBRACE, + ACTIONS(6492), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1642), 1, + sym_block, + [58843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1594), 1, + sym_block, + [58859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6494), 1, + sym__newline, + STATE(1595), 1, + sym_block, + STATE(2890), 1, + aux_sym_import_declaration_repeat1, + [58875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2659), 1, + anon_sym_RPAREN, + ACTIONS(6496), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(190), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6009), 1, + anon_sym_LBRACE, + ACTIONS(6498), 1, + sym__newline, + STATE(191), 1, + sym_block, + STATE(2849), 1, + aux_sym_import_declaration_repeat1, + [58923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6500), 1, + sym__newline, + STATE(1646), 1, + sym_block, + STATE(2989), 1, + aux_sym_import_declaration_repeat1, + [58939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1604), 1, + sym_block, + [58955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5997), 1, + anon_sym_RBRACE, + ACTIONS(6502), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [58971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3316), 1, + sym__type_constant, + ACTIONS(6506), 2, + sym_integer, + sym_character, + [58985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6508), 1, + sym__newline, + STATE(1605), 1, + sym_block, + STATE(2897), 1, + aux_sym_import_declaration_repeat1, + [59001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(206), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1606), 1, + sym_block, + [59033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2340), 1, + anon_sym_RBRACE, + ACTIONS(6510), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2261), 1, + anon_sym_RBRACE, + ACTIONS(6512), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1607), 1, + sym_block, + [59081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6514), 1, + sym__newline, + STATE(1609), 1, + sym_block, + STATE(2899), 1, + aux_sym_import_declaration_repeat1, + [59097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6009), 1, + anon_sym_LBRACE, + STATE(208), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6516), 1, + sym__newline, + STATE(1677), 1, + sym_block, + STATE(3006), 1, + aux_sym_import_declaration_repeat1, + [59129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6488), 1, + anon_sym_COMMA, + ACTIONS(6518), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6025), 1, + anon_sym_RBRACE, + ACTIONS(6520), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1612), 1, + sym_block, + [59177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1467), 1, + sym_block, + [59193] = 4, + ACTIONS(6522), 1, + anon_sym_DQUOTE, + ACTIONS(6526), 1, + sym_comment, + STATE(2858), 1, + aux_sym_string_repeat1, + ACTIONS(6524), 2, + sym_string_content, + sym_escape_sequence, + [59207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6047), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6528), 1, + sym__newline, + STATE(1468), 1, + sym_block, + STATE(3013), 1, + aux_sym_import_declaration_repeat1, + [59239] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6530), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_string_repeat1, + ACTIONS(6532), 2, + sym_string_content, + sym_escape_sequence, + [59253] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LBRACE, + ACTIONS(6534), 1, + sym__newline, + STATE(2235), 1, + sym_record_body, + STATE(2866), 1, + aux_sym_import_declaration_repeat1, + [59269] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1613), 1, + sym_block, + [59285] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5268), 1, + anon_sym_RBRACE, + ACTIONS(6536), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59301] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6538), 1, + sym__newline, + STATE(1498), 1, + sym_block, + STATE(3016), 1, + aux_sym_import_declaration_repeat1, + [59317] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1615), 1, + sym_block, + [59333] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2509), 1, + anon_sym_RPAREN, + ACTIONS(6540), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1619), 1, + sym_block, + [59365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6093), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2239), 1, + sym_record_body, + [59381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5952), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2133), 1, + sym_record_body, + [59397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2741), 1, + anon_sym_RPAREN, + ACTIONS(6542), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6059), 1, + anon_sym_LBRACE, + STATE(242), 1, + sym_enum_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6544), 1, + sym__newline, + STATE(1620), 1, + sym_block, + STATE(2904), 1, + aux_sym_import_declaration_repeat1, + [59445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6546), 1, + sym__newline, + STATE(1705), 1, + sym_block, + STATE(2854), 1, + aux_sym_import_declaration_repeat1, + [59461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6178), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2170), 1, + sym_block, + [59477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1621), 1, + sym_block, + [59493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LBRACE, + ACTIONS(6548), 1, + sym__newline, + STATE(1777), 1, + sym_record_body, + STATE(2946), 1, + aux_sym_import_declaration_repeat1, + [59509] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5866), 1, + anon_sym_LBRACE, + ACTIONS(6550), 1, + sym__newline, + STATE(656), 1, + sym_enum_body, + STATE(2948), 1, + aux_sym_import_declaration_repeat1, + [59525] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1622), 1, + sym_block, + [59541] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6552), 1, + anon_sym_DQUOTE, + STATE(2997), 1, + aux_sym_string_repeat1, + ACTIONS(6554), 2, + sym_string_content, + sym_escape_sequence, + [59555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6556), 1, + anon_sym_COMMA, + ACTIONS(6558), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3218), 1, + sym__type_constant, + ACTIONS(6560), 2, + sym_integer, + sym_character, + [59585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6562), 1, + sym__newline, + STATE(1624), 1, + sym_block, + STATE(2910), 1, + aux_sym_import_declaration_repeat1, + [59601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1626), 1, + sym_block, + [59617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6564), 1, + sym__newline, + STATE(1628), 1, + sym_block, + STATE(2914), 1, + aux_sym_import_declaration_repeat1, + [59633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2691), 1, + anon_sym_RPAREN, + ACTIONS(6566), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1504), 1, + sym_block, + [59665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 1, + anon_sym_LBRACE, + ACTIONS(6568), 1, + sym__newline, + STATE(2108), 1, + sym_record_body, + STATE(2895), 1, + aux_sym_import_declaration_repeat1, + [59681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6059), 1, + anon_sym_LBRACE, + ACTIONS(6570), 1, + sym__newline, + STATE(258), 1, + sym_enum_body, + STATE(2896), 1, + aux_sym_import_declaration_repeat1, + [59697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6488), 1, + anon_sym_COMMA, + ACTIONS(6572), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1625), 1, + sym_block, + [59729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1657), 1, + sym_block, + [59745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1629), 1, + sym_block, + [59761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6574), 1, + sym__newline, + STATE(1634), 1, + sym_block, + STATE(2918), 1, + aux_sym_import_declaration_repeat1, + [59777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6576), 1, + sym__newline, + STATE(1597), 1, + sym_block, + STATE(3022), 1, + aux_sym_import_declaration_repeat1, + [59793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2695), 1, + anon_sym_RPAREN, + ACTIONS(6578), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2559), 1, + sym_string, + [59825] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5952), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2088), 1, + sym_record_body, + [59841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6059), 1, + anon_sym_LBRACE, + STATE(268), 1, + sym_enum_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1635), 1, + sym_block, + [59873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6047), 1, + anon_sym_LBRACE, + ACTIONS(6580), 1, + sym__newline, + STATE(682), 1, + sym_block, + STATE(3021), 1, + aux_sym_import_declaration_repeat1, + [59889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1636), 1, + sym_block, + [59905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2701), 1, + anon_sym_RPAREN, + ACTIONS(6582), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2515), 1, + anon_sym_RBRACK, + ACTIONS(6584), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6584), 1, + anon_sym_COMMA, + ACTIONS(6586), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [59953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1579), 1, + sym_block, + [59969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1637), 1, + sym_block, + [59985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3159), 1, + sym_keyed_field_initializer, + [60001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2584), 1, + sym_block, + [60017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2781), 1, + anon_sym_RPAREN, + ACTIONS(6588), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6590), 1, + sym__newline, + STATE(1623), 1, + sym_block, + STATE(2884), 1, + aux_sym_import_declaration_repeat1, + [60049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6053), 1, + anon_sym_LBRACE, + STATE(240), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1638), 1, + sym_block, + [60081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2222), 1, + anon_sym_RBRACE, + ACTIONS(6592), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1600), 1, + sym_block, + [60113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6594), 1, + anon_sym_COMMA, + ACTIONS(6596), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1639), 1, + sym_block, + [60145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6053), 1, + anon_sym_LBRACE, + ACTIONS(6598), 1, + sym__newline, + STATE(257), 1, + sym_record_body, + STATE(2919), 1, + aux_sym_import_declaration_repeat1, + [60161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6444), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1602), 1, + sym_block, + [60193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1640), 1, + sym_block, + [60209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6053), 1, + anon_sym_LBRACE, + STATE(267), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + sym__newline, + STATE(1669), 1, + sym_block, + STATE(2925), 1, + aux_sym_import_declaration_repeat1, + [60241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6604), 1, + sym__newline, + STATE(1618), 1, + sym_block, + STATE(3028), 1, + aux_sym_import_declaration_repeat1, + [60257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6606), 1, + sym__newline, + STATE(1630), 1, + sym_block, + STATE(3030), 1, + aux_sym_import_declaration_repeat1, + [60273] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6480), 1, + anon_sym_COMMA, + ACTIONS(6608), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6584), 1, + anon_sym_COMMA, + ACTIONS(6610), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60305] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1670), 1, + sym_block, + [60321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3182), 1, + sym__type_constant, + ACTIONS(6612), 2, + sym_integer, + sym_character, + [60335] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6614), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_string_repeat1, + ACTIONS(6616), 2, + sym_string_content, + sym_escape_sequence, + [60349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1632), 1, + sym_block, + [60365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6619), 1, + sym__newline, + STATE(1633), 1, + sym_block, + STATE(3038), 1, + aux_sym_import_declaration_repeat1, + [60381] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6621), 1, + sym__newline, + STATE(1641), 1, + sym_block, + STATE(3040), 1, + aux_sym_import_declaration_repeat1, + [60397] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5639), 1, + anon_sym_RPAREN, + ACTIONS(6623), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2596), 1, + sym_block, + [60429] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2589), 1, + sym_block, + [60445] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2376), 1, + anon_sym_RBRACE, + ACTIONS(6625), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3150), 1, + sym__type_constant, + ACTIONS(6627), 2, + sym_integer, + sym_character, + [60475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3157), 1, + sym__type_constant, + ACTIONS(6629), 2, + sym_integer, + sym_character, + [60489] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2334), 1, + anon_sym_RBRACE, + ACTIONS(6631), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60505] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4146), 1, + anon_sym_RPAREN, + ACTIONS(6633), 1, + anon_sym_else, + ACTIONS(6635), 1, + sym__newline, + STATE(3134), 1, + aux_sym_import_declaration_repeat1, + [60521] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3322), 1, + sym__type_constant, + ACTIONS(6638), 2, + sym_integer, + sym_character, + [60535] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3324), 1, + sym__type_constant, + ACTIONS(6640), 2, + sym_integer, + sym_character, + [60549] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6047), 1, + anon_sym_LBRACE, + ACTIONS(6642), 1, + sym__newline, + STATE(661), 1, + sym_block, + STATE(2967), 1, + aux_sym_import_declaration_repeat1, + [60565] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2531), 1, + anon_sym_RPAREN, + ACTIONS(6644), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60581] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6178), 1, + anon_sym_LBRACE, + ACTIONS(6646), 1, + sym__newline, + STATE(2182), 1, + sym_block, + STATE(2983), 1, + aux_sym_import_declaration_repeat1, + [60597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(6648), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_initializer_list, + STATE(3367), 1, + sym_argument_list, + [60613] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6178), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2183), 1, + sym_block, + [60629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1776), 1, + sym_record_body, + [60645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_RPAREN, + ACTIONS(6650), 1, + anon_sym_else, + ACTIONS(6652), 1, + sym__newline, + STATE(3139), 1, + aux_sym_import_declaration_repeat1, + [60661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5866), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym_enum_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60677] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_RPAREN, + ACTIONS(6655), 1, + anon_sym_else, + ACTIONS(6657), 1, + sym__newline, + STATE(3141), 1, + aux_sym_import_declaration_repeat1, + [60693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1608), 1, + sym_block, + [60709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6660), 4, + anon_sym_COMMA, anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [60719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6480), 1, + anon_sym_COMMA, + ACTIONS(6662), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + sym__newline, + STATE(1458), 1, + sym_block, + STATE(3043), 1, + aux_sym_import_declaration_repeat1, + [60751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6666), 1, + sym__newline, + STATE(1585), 1, + sym_block, + STATE(3044), 1, + aux_sym_import_declaration_repeat1, + [60767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_RPAREN, + ACTIONS(6668), 1, + anon_sym_else, + ACTIONS(6670), 1, + sym__newline, + STATE(3145), 1, + aux_sym_import_declaration_repeat1, + [60783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + anon_sym_RPAREN, + ACTIONS(6673), 1, + anon_sym_else, + ACTIONS(6675), 1, + sym__newline, + STATE(3147), 1, + aux_sym_import_declaration_repeat1, + [60799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6584), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6047), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_RPAREN, + ACTIONS(6680), 1, + anon_sym_else, + ACTIONS(6682), 1, + sym__newline, + STATE(3151), 1, + aux_sym_import_declaration_repeat1, + [60847] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2537), 1, + anon_sym_RBRACK, + ACTIONS(6685), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6687), 1, + sym__newline, + STATE(1449), 1, + sym_block, + STATE(3049), 1, + aux_sym_import_declaration_repeat1, + [60879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6093), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1776), 1, + sym_record_body, + [60895] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2561), 1, + anon_sym_RPAREN, + ACTIONS(6689), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60911] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2590), 1, + sym_block, + [60927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6190), 1, + anon_sym_RBRACE, + ACTIONS(6691), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5223), 1, + anon_sym_RBRACE, + ACTIONS(6693), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60959] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6047), 1, + anon_sym_LBRACE, + STATE(691), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [60975] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6047), 1, + anon_sym_LBRACE, + ACTIONS(6695), 1, + sym__newline, + STATE(692), 1, + sym_block, + STATE(3005), 1, + aux_sym_import_declaration_repeat1, + [60991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + ACTIONS(6697), 1, + sym__newline, + STATE(2581), 1, + sym_string, + STATE(2978), 1, + aux_sym_import_declaration_repeat1, + [61007] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2594), 1, + sym_block, + [61023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2565), 1, + sym_block, + [61039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6699), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [61049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6292), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1766), 1, + sym_enum_body, + [61065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6178), 1, + anon_sym_LBRACE, + ACTIONS(6701), 1, + sym__newline, + STATE(2194), 1, + sym_block, + STATE(3003), 1, + aux_sym_import_declaration_repeat1, + [61081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1471), 1, + sym_block, + [61097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2212), 1, + anon_sym_RBRACE, + ACTIONS(6703), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1521), 1, + sym_block, + [61129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2585), 1, + sym_string, + [61145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6705), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [61155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1444), 1, + sym_block, + [61171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6707), 1, + sym__newline, + STATE(1446), 1, + sym_block, + STATE(3071), 1, + aux_sym_import_declaration_repeat1, + [61187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2396), 1, + anon_sym_RPAREN, + ACTIONS(6709), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6178), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2196), 1, + sym_block, + [61219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6178), 1, + anon_sym_LBRACE, + ACTIONS(6711), 1, + sym__newline, + STATE(2197), 1, + sym_block, + STATE(3010), 1, + aux_sym_import_declaration_repeat1, + [61235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6713), 1, + sym__newline, + STATE(1451), 1, + sym_block, + STATE(3077), 1, + aux_sym_import_declaration_repeat1, + [61251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5566), 1, + anon_sym_RPAREN, + ACTIONS(6715), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5956), 1, + sym_identifier, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [61283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6717), 1, + sym__newline, + STATE(2905), 1, + aux_sym_import_declaration_repeat1, + STATE(3320), 1, + sym_keyed_field_initializer, + [61299] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1453), 1, + sym_block, + [61315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2545), 1, + sym_block, + [61331] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6719), 1, + sym__newline, + STATE(1477), 1, + sym_block, + STATE(3087), 1, + aux_sym_import_declaration_repeat1, + [61347] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6723), 1, + sym__newline, + STATE(3068), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6721), 2, + sym_sink, + sym_identifier, + [61361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6727), 1, + anon_sym_COMMA, + ACTIONS(6725), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [61373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6729), 1, + sym__newline, + STATE(1506), 1, + sym_block, + STATE(3106), 1, + aux_sym_import_declaration_repeat1, + [61389] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6731), 1, + sym__newline, + STATE(1692), 1, + sym_block, + STATE(3081), 1, + aux_sym_import_declaration_repeat1, + [61405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LBRACE, + ACTIONS(6733), 1, + sym__newline, + STATE(1777), 1, + sym_record_body, + STATE(2962), 1, + aux_sym_import_declaration_repeat1, + [61421] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6735), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_string_repeat1, + ACTIONS(6532), 2, + sym_string_content, + sym_escape_sequence, + [61435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6132), 1, + anon_sym_RBRACE, + ACTIONS(6737), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6588), 1, + anon_sym_COMMA, + ACTIONS(6739), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5745), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [61477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6741), 2, + sym_sink, + sym_identifier, + [61491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2581), 1, + sym_string, + [61507] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6178), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2205), 1, + sym_block, + [61523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6743), 1, + sym__newline, + STATE(2789), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6741), 2, + sym_sink, + sym_identifier, + [61537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6047), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1508), 1, + sym_block, + [61569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6745), 1, + sym__newline, + STATE(1500), 1, + sym_block, + STATE(2888), 1, + aux_sym_import_declaration_repeat1, + [61585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6747), 1, + sym__newline, + STATE(1517), 1, + sym_block, + STATE(3109), 1, + aux_sym_import_declaration_repeat1, + [61601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2285), 1, + anon_sym_RBRACE, + ACTIONS(6749), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61617] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6178), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2207), 1, + sym_block, + [61633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym__newline, + STATE(1542), 1, + sym_block, + STATE(3112), 1, + aux_sym_import_declaration_repeat1, + [61649] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + ACTIONS(6753), 1, + sym__newline, + STATE(2558), 1, + sym_string, + STATE(3002), 1, + aux_sym_import_declaration_repeat1, + [61665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1543), 1, + sym_block, + [61681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2552), 1, + sym_block, + [61697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6444), 1, + anon_sym_COMMA, + ACTIONS(6755), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1575), 1, + sym_block, + [61729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1695), 1, + sym_block, + [61745] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6230), 1, + anon_sym_RBRACE, + ACTIONS(6757), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6759), 1, + sym__newline, + STATE(1450), 1, + sym_block, + STATE(3117), 1, + aux_sym_import_declaration_repeat1, + [61777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2553), 1, + sym_string, + [61793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6047), 1, + anon_sym_LBRACE, + STATE(713), 1, + sym_block, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1571), 1, + sym_block, + [61825] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6761), 1, + sym__newline, + STATE(1572), 1, + sym_block, + STATE(3124), 1, + aux_sym_import_declaration_repeat1, + [61841] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1650), 1, + sym_block, + [61857] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_LBRACE, + ACTIONS(6763), 1, + sym__newline, + STATE(699), 1, + sym_record_body, + STATE(3026), 1, + aux_sym_import_declaration_repeat1, + [61873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [61889] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6765), 1, + sym__newline, + STATE(1651), 1, + sym_block, + STATE(3017), 1, + aux_sym_import_declaration_repeat1, + [61905] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1573), 1, + sym_block, + [61921] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4146), 1, + anon_sym_RPAREN, + ACTIONS(6767), 1, + anon_sym_else, + ACTIONS(6770), 1, + sym__newline, + STATE(3329), 1, + aux_sym_import_declaration_repeat1, + [61937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1574), 1, + sym_block, + [61953] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_RPAREN, + ACTIONS(6773), 1, + anon_sym_else, + ACTIONS(6776), 1, + sym__newline, + STATE(3330), 1, + aux_sym_import_declaration_repeat1, + [61969] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + sym__newline, + STATE(1576), 1, + sym_block, + STATE(3126), 1, + aux_sym_import_declaration_repeat1, + [61985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5542), 1, + anon_sym_RPAREN, + ACTIONS(6781), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4136), 1, + anon_sym_RPAREN, + ACTIONS(6783), 1, + anon_sym_else, + ACTIONS(6786), 1, + sym__newline, + STATE(3331), 1, + aux_sym_import_declaration_repeat1, + [62017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6093), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2547), 1, + sym_record_body, + [62033] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_RPAREN, + ACTIONS(6789), 1, + anon_sym_else, + ACTIONS(6792), 1, + sym__newline, + STATE(3332), 1, + aux_sym_import_declaration_repeat1, + [62049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + anon_sym_RPAREN, + ACTIONS(6795), 1, + anon_sym_else, + ACTIONS(6798), 1, + sym__newline, + STATE(3333), 1, + aux_sym_import_declaration_repeat1, + [62065] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1578), 1, + sym_block, + [62081] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4116), 1, + anon_sym_RPAREN, + ACTIONS(6801), 1, + anon_sym_else, + ACTIONS(6804), 1, + sym__newline, + STATE(3132), 1, + aux_sym_import_declaration_repeat1, + [62097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1584), 1, + sym_block, + [62113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6807), 1, + sym__newline, + STATE(1586), 1, + sym_block, + STATE(2977), 1, + aux_sym_import_declaration_repeat1, + [62129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6809), 1, + sym__newline, + STATE(1706), 1, + sym_block, + STATE(2786), 1, + aux_sym_import_declaration_repeat1, + [62145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1610), 1, + sym_block, + [62161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1666), 1, + sym_block, + [62177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6811), 1, + sym__newline, + STATE(1447), 1, + sym_block, + STATE(2795), 1, + aux_sym_import_declaration_repeat1, + [62193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6813), 1, + sym__newline, + STATE(1459), 1, + sym_block, + STATE(2797), 1, + aux_sym_import_declaration_repeat1, + [62209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6093), 1, + anon_sym_LBRACE, + ACTIONS(6815), 1, + sym__newline, + STATE(2579), 1, + sym_record_body, + STATE(3035), 1, + aux_sym_import_declaration_repeat1, + [62225] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2453), 1, + anon_sym_RBRACK, + ACTIONS(6817), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1470), 1, + sym_block, + [62257] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6819), 1, + sym__newline, + STATE(1472), 1, + sym_block, + STATE(2801), 1, + aux_sym_import_declaration_repeat1, + [62273] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1698), 1, + sym_block, + [62289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6821), 1, + sym__newline, + STATE(1483), 1, + sym_block, + STATE(2803), 1, + aux_sym_import_declaration_repeat1, + [62305] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6823), 1, + sym__newline, + STATE(1562), 1, + sym_block, + STATE(3024), 1, + aux_sym_import_declaration_repeat1, + [62321] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6093), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1767), 1, + sym_record_body, + [62337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3274), 1, + sym__type_constant, + ACTIONS(6825), 2, + sym_integer, + sym_character, + [62351] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6827), 1, + sym__newline, + STATE(1699), 1, + sym_block, + STATE(3130), 1, + aux_sym_import_declaration_repeat1, + [62367] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5021), 1, + anon_sym_RPAREN, + ACTIONS(6542), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3314), 1, + sym__type_constant, + ACTIONS(6829), 2, + sym_integer, + sym_character, + [62397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3135), 1, + sym__type_constant, + ACTIONS(6831), 2, + sym_integer, + sym_character, + [62411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6833), 1, + sym__newline, + STATE(1486), 1, + sym_block, + STATE(2807), 1, + aux_sym_import_declaration_repeat1, + [62427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + sym__newline, + STATE(1653), 1, + sym_block, + STATE(3051), 1, + aux_sym_import_declaration_repeat1, + [62443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6839), 1, + sym__newline, + STATE(3001), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6837), 2, + sym_sink, + sym_identifier, + [62457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3164), 1, + sym__type_constant, + ACTIONS(6841), 2, + sym_integer, + sym_character, + [62471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3236), 1, + sym__type_constant, + ACTIONS(6843), 2, + sym_integer, + sym_character, + [62485] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3203), 1, + sym__type_constant, + ACTIONS(6845), 2, + sym_integer, + sym_character, + [62499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1564), 1, + sym_block, + [62515] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6847), 1, + sym__newline, + STATE(1518), 1, + sym_block, + STATE(2790), 1, + aux_sym_import_declaration_repeat1, + [62531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(6849), 2, + sym_sink, + sym_identifier, + [62545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3303), 1, + sym__type_constant, + ACTIONS(6851), 2, + sym_integer, + sym_character, + [62559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3323), 1, + sym__type_constant, + ACTIONS(6853), 2, + sym_integer, + sym_character, + [62573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1487), 1, + sym_block, + [62589] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6855), 1, + anon_sym_DQUOTE, + STATE(3076), 1, + aux_sym_string_repeat1, + ACTIONS(6857), 2, + sym_string_content, + sym_escape_sequence, + [62603] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1702), 1, + sym_block, + [62619] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_DQUOTE, + STATE(3083), 1, + aux_sym_string_repeat1, + ACTIONS(6861), 2, + sym_string_content, + sym_escape_sequence, + [62633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6556), 1, + anon_sym_COMMA, + ACTIONS(6863), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62649] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6865), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_string_repeat1, + ACTIONS(6532), 2, + sym_string_content, + sym_escape_sequence, + [62663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1488), 1, + sym_block, + [62679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6053), 1, + anon_sym_LBRACE, + ACTIONS(6867), 1, + sym__newline, + STATE(92), 1, + sym_record_body, + STATE(3090), 1, + aux_sym_import_declaration_repeat1, + [62695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6869), 1, + sym__newline, + STATE(1679), 1, + sym_block, + STATE(2793), 1, + aux_sym_import_declaration_repeat1, + [62711] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6871), 1, + sym__newline, + STATE(1489), 1, + sym_block, + STATE(2820), 1, + aux_sym_import_declaration_repeat1, + [62727] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1536), 1, + sym_block, + [62743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(6873), 1, + anon_sym_LBRACE, + STATE(100), 1, + sym_initializer_list, + STATE(3356), 1, + sym_argument_list, + [62759] = 4, + ACTIONS(6526), 1, + sym_comment, + ACTIONS(6875), 1, + anon_sym_DQUOTE, + STATE(2927), 1, + aux_sym_string_repeat1, + ACTIONS(6532), 2, + sym_string_content, + sym_escape_sequence, + [62773] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6877), 1, + sym__newline, + STATE(1681), 1, + sym_block, + STATE(2912), 1, + aux_sym_import_declaration_repeat1, + [62789] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1568), 1, + sym_block, + [62805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 1, + anon_sym_LBRACE, + ACTIONS(6879), 1, + sym__newline, + STATE(2144), 1, + sym_record_body, + STATE(3120), 1, + aux_sym_import_declaration_repeat1, + [62821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1493), 1, + sym_block, + [62837] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6881), 1, + sym__newline, + STATE(1494), 1, + sym_block, + STATE(2823), 1, + aux_sym_import_declaration_repeat1, + [62853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6594), 1, + anon_sym_COMMA, + ACTIONS(6883), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62869] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6053), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_record_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [62901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + sym__newline, + STATE(1465), 1, + sym_block, + STATE(2810), 1, + aux_sym_import_declaration_repeat1, + [62917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6887), 1, + sym__newline, + STATE(1569), 1, + sym_block, + STATE(2889), 1, + aux_sym_import_declaration_repeat1, + [62933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2123), 1, + sym_enum_body, + [62949] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3174), 1, + sym__type_constant, + ACTIONS(6889), 2, + sym_integer, + sym_character, + [62963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6891), 1, + sym__newline, + STATE(1479), 1, + sym_block, + STATE(2917), 1, + aux_sym_import_declaration_repeat1, + [62979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3191), 1, + sym__type_constant, + ACTIONS(6893), 2, + sym_integer, + sym_character, + [62993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3194), 1, + sym__type_constant, + ACTIONS(6895), 2, + sym_integer, + sym_character, + [63007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3211), 1, + sym__type_constant, + ACTIONS(6897), 2, + sym_integer, + sym_character, + [63021] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3212), 1, + sym__type_constant, + ACTIONS(6899), 2, + sym_integer, + sym_character, + [63035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3249), 1, + sym__type_constant, + ACTIONS(6901), 2, + sym_integer, + sym_character, + [63049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3261), 1, + sym__type_constant, + ACTIONS(6903), 2, + sym_integer, + sym_character, + [63063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3263), 1, + sym__type_constant, + ACTIONS(6905), 2, + sym_integer, + sym_character, + [63077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3272), 1, + sym__type_constant, + ACTIONS(6907), 2, + sym_integer, + sym_character, + [63091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6504), 1, + anon_sym_DASH, + STATE(3273), 1, + sym__type_constant, + ACTIONS(6909), 2, + sym_integer, + sym_character, + [63105] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1496), 1, + sym_block, + [63121] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6911), 1, + sym__newline, + STATE(1497), 1, + sym_block, + STATE(2830), 1, + aux_sym_import_declaration_repeat1, + [63137] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + sym__newline, + STATE(1499), 1, + sym_block, + STATE(2833), 1, + aux_sym_import_declaration_repeat1, + [63153] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1502), 1, + sym_block, + [63169] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + ACTIONS(6915), 1, + anon_sym_LBRACE, + STATE(2148), 1, + sym_initializer_list, + STATE(3370), 1, + sym_argument_list, + [63185] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6917), 1, + sym__newline, + STATE(1511), 1, + sym_block, + STATE(2839), 1, + aux_sym_import_declaration_repeat1, + [63201] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1512), 1, + sym_block, + [63217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6919), 1, + sym__newline, + STATE(1513), 1, + sym_block, + STATE(2844), 1, + aux_sym_import_declaration_repeat1, + [63233] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6921), 1, + sym__newline, + STATE(1655), 1, + sym_block, + STATE(3073), 1, + aux_sym_import_declaration_repeat1, + [63249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6292), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1786), 1, + sym_enum_body, + [63265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6923), 1, + sym__newline, + STATE(1505), 1, + sym_block, + STATE(2928), 1, + aux_sym_import_declaration_repeat1, + [63281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1514), 1, + sym_block, + [63297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6925), 1, + sym__newline, + STATE(1515), 1, + sym_block, + STATE(2847), 1, + aux_sym_import_declaration_repeat1, + [63313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6594), 1, + anon_sym_COMMA, + ACTIONS(6927), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5952), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2149), 1, + sym_record_body, + [63345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6298), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1767), 1, + sym_record_body, + [63361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6929), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [63371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5866), 1, + anon_sym_LBRACE, + STATE(717), 1, + sym_enum_body, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1519), 1, + sym_block, + [63403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + sym_identifier, + ACTIONS(6931), 1, + sym__newline, + STATE(2987), 1, + aux_sym_import_declaration_repeat1, + STATE(3148), 1, + sym_keyed_field_initializer, + [63419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1520), 1, + sym_block, + [63435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6933), 1, + sym__newline, + STATE(1445), 1, + sym_block, + STATE(2950), 1, + aux_sym_import_declaration_repeat1, + [63451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6448), 1, + anon_sym_DQUOTE, + ACTIONS(6935), 1, + sym__newline, + STATE(2576), 1, + sym_string, + STATE(2894), 1, + aux_sym_import_declaration_repeat1, + [63467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(2586), 1, + sym_block, + [63483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + STATE(1678), 1, + sym_block, + [63499] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4896), 1, + anon_sym_LBRACE, + ACTIONS(6937), 1, + sym__newline, + STATE(1663), 1, + sym_block, + STATE(2903), 1, + aux_sym_import_declaration_repeat1, + [63515] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6939), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6941), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6943), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6945), 1, + anon_sym_RBRACK, + ACTIONS(6947), 1, + sym__newline, + STATE(3336), 1, + aux_sym_import_declaration_repeat1, + [63567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6949), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2208), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6951), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6953), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6955), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [63628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6957), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5925), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [63650] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6959), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6961), 1, + anon_sym_PIPE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6963), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6965), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6967), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [63724] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6969), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63737] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6971), 1, + anon_sym_RBRACK, + ACTIONS(6973), 1, + sym__newline, + STATE(3318), 1, + aux_sym_import_declaration_repeat1, + [63750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6975), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6977), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5242), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5268), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63802] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6979), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5223), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_RBRACK, + ACTIONS(6983), 1, + sym__newline, + STATE(3321), 1, + aux_sym_import_declaration_repeat1, + [63841] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2310), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6985), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [63863] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6987), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63876] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6989), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6991), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6993), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6995), 1, + anon_sym_RBRACK, + ACTIONS(6997), 1, + sym__newline, + STATE(3300), 1, + aux_sym_import_declaration_repeat1, + [63928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6999), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7001), 1, + anon_sym_PIPE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7003), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63967] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2281), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7005), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [63993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6190), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7007), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7009), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64032] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2226), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7011), 1, + anon_sym_RBRACK, + ACTIONS(7013), 1, + sym__newline, + STATE(3193), 1, + aux_sym_import_declaration_repeat1, + [64058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7015), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7017), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7019), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7021), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7023), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5389), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64136] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7025), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_RBRACK, + ACTIONS(7029), 1, + sym__newline, + STATE(3152), 1, + aux_sym_import_declaration_repeat1, + [64162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7031), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64175] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [64184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7033), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7035), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [64206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(6132), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7037), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7039), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64245] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7041), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7043), 1, + anon_sym_RBRACK, + ACTIONS(7045), 1, + sym__newline, + STATE(3205), 1, + aux_sym_import_declaration_repeat1, + [64271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2775), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7047), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7049), 1, + anon_sym_RBRACK, + ACTIONS(7051), 1, + sym__newline, + STATE(3208), 1, + aux_sym_import_declaration_repeat1, + [64310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7053), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7055), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7057), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5093), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5884), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [64371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7059), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7061), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64397] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7063), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7065), 1, + anon_sym_RBRACK, + ACTIONS(7067), 1, + sym__newline, + STATE(3146), 1, + aux_sym_import_declaration_repeat1, + [64423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5202), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7069), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64449] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7071), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7073), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7075), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7077), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7079), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7081), 1, + anon_sym_RBRACK, + ACTIONS(7083), 1, + sym__newline, + STATE(3224), 1, + aux_sym_import_declaration_repeat1, + [64527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_RBRACK, + ACTIONS(7087), 1, + sym__newline, + STATE(3225), 1, + aux_sym_import_declaration_repeat1, + [64540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2292), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7089), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64566] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7091), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7093), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7095), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64605] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7097), 1, + anon_sym_RBRACK, + ACTIONS(7099), 1, + sym__newline, + STATE(3196), 1, + aux_sym_import_declaration_repeat1, + [64618] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7101), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7103), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2637), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64657] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7105), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64670] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7107), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64683] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7109), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7111), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7113), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7115), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_AT, + ACTIONS(7117), 2, + sym_sink, + sym_identifier, + [64746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7119), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_COLON, + ACTIONS(5652), 1, + anon_sym_PIPE, + STATE(3451), 1, + sym_match_capture, + [64772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7121), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7123), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [64807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7125), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2328), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7127), 1, + anon_sym_RBRACK, + ACTIONS(7129), 1, + sym__newline, + STATE(3301), 1, + aux_sym_import_declaration_repeat1, + [64846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7131), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64859] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7131), 1, + anon_sym_RPAREN, + ACTIONS(7133), 1, + sym__newline, + STATE(3206), 1, + aux_sym_import_declaration_repeat1, + [64872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7135), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7137), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7139), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7141), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7143), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64937] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7145), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7147), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7149), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7151), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [64989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7153), 1, + anon_sym_RPAREN, + ACTIONS(7155), 1, + sym__newline, + STATE(3258), 1, + aux_sym_import_declaration_repeat1, + [65002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7157), 1, + anon_sym_RBRACK, + ACTIONS(7159), 1, + sym__newline, + STATE(3262), 1, + aux_sym_import_declaration_repeat1, + [65015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7161), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7163), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7165), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7167), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7169), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7171), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7173), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7175), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7177), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65132] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7179), 1, + anon_sym_PIPE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7177), 1, + anon_sym_RPAREN, + ACTIONS(7181), 1, + sym__newline, + STATE(3231), 1, + aux_sym_import_declaration_repeat1, + [65158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 1, + anon_sym_RBRACK, + ACTIONS(7185), 1, + sym__newline, + STATE(3270), 1, + aux_sym_import_declaration_repeat1, + [65171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7187), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 1, + anon_sym_RBRACK, + ACTIONS(7191), 1, + sym__newline, + STATE(3271), 1, + aux_sym_import_declaration_repeat1, + [65197] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7193), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [65206] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7195), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65219] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7197), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7199), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7201), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [65254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5997), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7203), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7205), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7207), 1, + anon_sym_RBRACK, + ACTIONS(7209), 1, + sym__newline, + STATE(3275), 1, + aux_sym_import_declaration_repeat1, + [65306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7211), 1, + anon_sym_RBRACK, + ACTIONS(7213), 1, + sym__newline, + STATE(3276), 1, + aux_sym_import_declaration_repeat1, + [65319] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 1, + anon_sym_RBRACK, + ACTIONS(7217), 1, + sym__newline, + STATE(3143), 1, + aux_sym_import_declaration_repeat1, + [65332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7219), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7221), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7223), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7225), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65384] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [65393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7229), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7231), 1, + anon_sym_RPAREN, + ACTIONS(7233), 1, + sym__newline, + STATE(3278), 1, + aux_sym_import_declaration_repeat1, + [65419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7235), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7237), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7239), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5375), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(2527), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7241), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7243), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7239), 1, + anon_sym_RPAREN, + ACTIONS(7245), 1, + sym__newline, + STATE(3229), 1, + aux_sym_import_declaration_repeat1, + [65523] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7247), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [65532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 1, + anon_sym_AT, + ACTIONS(7249), 2, + sym_sink, + sym_identifier, + [65543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7253), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7255), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7257), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65582] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7259), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65595] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7261), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7263), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65621] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7265), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [65643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7267), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65656] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7269), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65669] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5196), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7271), 1, + anon_sym_RBRACK, + ACTIONS(7273), 1, + sym__newline, + STATE(3222), 1, + aux_sym_import_declaration_repeat1, + [65695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7275), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7277), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7279), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7281), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7283), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7285), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65773] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7287), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65786] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7225), 1, + anon_sym_RPAREN, + ACTIONS(7289), 1, + sym__newline, + STATE(3266), 1, + aux_sym_import_declaration_repeat1, + [65799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7291), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65812] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7293), 1, + anon_sym_RBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 1, + anon_sym_RBRACK, + ACTIONS(7297), 1, + sym__newline, + STATE(3232), 1, + aux_sym_import_declaration_repeat1, + [65838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7299), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7301), 1, + anon_sym_RBRACK, + ACTIONS(7303), 1, + sym__newline, + STATE(3210), 1, + aux_sym_import_declaration_repeat1, + [65864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7305), 1, + anon_sym_RPAREN, + ACTIONS(7307), 1, + sym__newline, + STATE(3284), 1, + aux_sym_import_declaration_repeat1, + [65877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7309), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(5300), 1, + anon_sym_RPAREN, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7311), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [65912] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7313), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7315), 1, + anon_sym_RBRACK, + ACTIONS(7317), 1, + sym__newline, + STATE(3167), 1, + aux_sym_import_declaration_repeat1, + [65938] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7319), 1, + anon_sym_RBRACK, + ACTIONS(7321), 1, + sym__newline, + STATE(3223), 1, + aux_sym_import_declaration_repeat1, + [65951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7323), 1, + anon_sym_RBRACK, + ACTIONS(7325), 1, + sym__newline, + STATE(3169), 1, + aux_sym_import_declaration_repeat1, + [65964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7327), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7329), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [65990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 1, + anon_sym_RPAREN, + ACTIONS(7333), 1, + sym__newline, + STATE(3237), 1, + aux_sym_import_declaration_repeat1, + [66003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7335), 1, + anon_sym_LBRACE, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66016] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7337), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7339), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7341), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7343), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7345), 1, + anon_sym_else, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7347), 1, + anon_sym_COMMA, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7349), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(447), 1, + sym__newline, + ACTIONS(7351), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_import_declaration_repeat1, + [66120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1848), 1, + sym_parameter_list, + [66130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7355), 1, + sym_identifier, + ACTIONS(7357), 1, + anon_sym_AT, + [66140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7359), 1, + anon_sym_COLON_COLON, + ACTIONS(7361), 1, + anon_sym_EQ, + [66150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7363), 2, + sym_sink, + sym_identifier, + [66158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1719), 1, + anon_sym_LPAREN, + STATE(728), 1, + sym_argument_list, + [66168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7365), 1, + anon_sym_COLON_COLON, + ACTIONS(7367), 1, + anon_sym_EQ, + [66178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7369), 1, + anon_sym_COMMA, + ACTIONS(7371), 1, + anon_sym_PIPE, + [66188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7373), 1, + anon_sym_COMMA, + ACTIONS(7375), 1, + anon_sym_PIPE, + [66198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 2, + sym_sink, + sym_identifier, + [66206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7379), 1, + sym_identifier, + ACTIONS(7381), 1, + anon_sym_AT, + [66216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(453), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_argument_list, + [66226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1845), 1, + sym_parameter_list, + [66236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_COMMA, + ACTIONS(7385), 1, + anon_sym_PIPE, + [66246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1859), 1, + sym_parameter_list, + [66256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7387), 1, + anon_sym_COMMA, + ACTIONS(7389), 1, + anon_sym_PIPE, + [66266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7391), 1, + anon_sym_COMMA, + ACTIONS(7393), 1, + anon_sym_PIPE, + [66276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7395), 2, + sym_identifier, + sym_integer, + [66284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_PIPE, + [66294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7401), 1, + sym_identifier, + ACTIONS(7403), 1, + anon_sym_AT, + [66304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6873), 1, + anon_sym_LBRACE, + STATE(126), 1, + sym_initializer_list, + [66314] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7405), 2, + sym_sink, + sym_identifier, + [66322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1844), 1, + sym_parameter_list, + [66332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7407), 2, + sym_sink, + sym_identifier, + [66340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7409), 1, + anon_sym_COMMA, + ACTIONS(7411), 1, + anon_sym_PIPE, + [66350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1857), 1, + sym_parameter_list, + [66360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_PIPE, + STATE(3437), 1, + sym_expand_match_capture, + [66370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7415), 1, + anon_sym_COLON_COLON, + ACTIONS(7417), 1, + anon_sym_EQ, + [66380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7419), 2, + anon_sym_RBRACK, + sym__newline, + [66388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1853), 1, + sym_parameter_list, + [66398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7421), 1, + anon_sym_COLON_COLON, + ACTIONS(7423), 1, + anon_sym_EQ, + [66408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6648), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_initializer_list, + [66418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_COLON_COLON, + ACTIONS(7427), 1, + anon_sym_EQ, + [66428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7429), 1, + sym_identifier, + ACTIONS(7431), 1, + sym_integer, + [66438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6915), 1, + anon_sym_LBRACE, + STATE(2157), 1, + sym_initializer_list, + [66448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 2, + sym_integer, + sym_character, + [66456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4603), 1, + anon_sym_LPAREN, + STATE(2154), 1, + sym_argument_list, + [66466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1855), 1, + sym_parameter_list, + [66476] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 2, + sym_identifier, + sym_integer, + [66484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 1, + sym_integer, + ACTIONS(7437), 1, + sym_identifier, + [66494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_COLON_COLON, + ACTIONS(7441), 1, + anon_sym_EQ, + [66504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7443), 1, + anon_sym_COLON_COLON, + ACTIONS(7445), 1, + anon_sym_EQ, + [66514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 2, + sym_sink, + sym_identifier, + [66522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1854), 1, + sym_parameter_list, + [66532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7449), 2, + sym_sink, + sym_identifier, + [66540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7451), 1, + anon_sym_COLON_COLON, + ACTIONS(7453), 1, + anon_sym_EQ, + [66550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7455), 1, + anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_EQ, + [66560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1867), 1, + sym_parameter_list, + [66570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7431), 2, + sym_identifier, + sym_integer, + [66578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7459), 1, + anon_sym_COLON_COLON, + ACTIONS(7461), 1, + anon_sym_EQ, + [66588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7463), 1, + anon_sym_COMMA, + ACTIONS(7465), 1, + anon_sym_PIPE, + [66598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7467), 2, + sym_sink, + sym_identifier, + [66606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7469), 1, + anon_sym_COLON_COLON, + ACTIONS(7471), 1, + anon_sym_EQ, + [66616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7473), 2, + sym_sink, + sym_identifier, + [66624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7353), 1, + anon_sym_LPAREN, + STATE(1866), 1, + sym_parameter_list, + [66634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7475), 2, + sym_sink, + sym_identifier, + [66642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7477), 1, + anon_sym_DASH, + ACTIONS(7479), 1, + sym_integer, + [66652] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7481), 1, + anon_sym_RPAREN, + [66659] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + sym_identifier, + [66666] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7485), 1, + sym_identifier, + [66673] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7487), 1, + anon_sym_PIPE, + [66680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7489), 1, + anon_sym_COLON, + [66687] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7491), 1, + anon_sym_COLON, + [66694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7493), 1, + sym_identifier, + [66701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7495), 1, + anon_sym_RPAREN, + [66708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7355), 1, + sym_identifier, + [66715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_PIPE, + [66722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7499), 1, + anon_sym_COLON, + [66729] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7501), 1, + anon_sym_PIPE, + [66736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7503), 1, + anon_sym_COLON, + [66743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7505), 1, + anon_sym_COLON, + [66750] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7507), 1, + anon_sym_COLON, + [66757] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7509), 1, + anon_sym_COLON, + [66764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7511), 1, + anon_sym_COLON, + [66771] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7513), 1, + anon_sym_COLON, + [66778] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7515), 1, + sym_identifier, + [66785] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7517), 1, + anon_sym_COLON, + [66792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7519), 1, + sym_identifier, + [66799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7521), 1, + anon_sym_COLON, + [66806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7523), 1, + anon_sym_COLON, + [66813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7525), 1, + anon_sym_COLON, + [66820] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7527), 1, + anon_sym_COLON, + [66827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7529), 1, + anon_sym_COLON, + [66834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7531), 1, + sym_identifier, + [66841] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7533), 1, + anon_sym_PIPE, + [66848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7535), 1, + anon_sym_COLON, + [66855] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7537), 1, + sym_identifier, + [66862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7539), 1, + anon_sym_COLON, + [66869] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_COLON, + [66876] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7543), 1, + anon_sym_PIPE, + [66883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7545), 1, + anon_sym_COLON, + [66890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7547), 1, + anon_sym_PIPE, + [66897] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7549), 1, + anon_sym_COLON, + [66904] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7551), 1, + anon_sym_COLON, + [66911] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7553), 1, + sym_identifier, + [66918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7555), 1, + anon_sym_SEMI, + [66925] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7557), 1, + anon_sym_COLON, + [66932] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7559), 1, + anon_sym_COLON, + [66939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7561), 1, + sym_identifier, + [66946] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7563), 1, + anon_sym_COLON, + [66953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7565), 1, + anon_sym_COLON, + [66960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7567), 1, + anon_sym_COLON, + [66967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7569), 1, + anon_sym_COLON, + [66974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7571), 1, + anon_sym_PIPE, + [66981] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7379), 1, + sym_identifier, + [66988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7573), 1, + sym_identifier, + [66995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7575), 1, + anon_sym_RPAREN, + [67002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7577), 1, + anon_sym_RPAREN, + [67009] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7579), 1, + sym_identifier, + [67016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7581), 1, + sym_identifier, + [67023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, + anon_sym_COLON, + [67030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7585), 1, + anon_sym_COLON, + [67037] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7587), 1, + sym_identifier, + [67044] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7589), 1, + anon_sym_RPAREN, + [67051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7591), 1, + anon_sym_COLON, + [67058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7593), 1, + anon_sym_COLON, + [67065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7595), 1, + anon_sym_PIPE, + [67072] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2090), 1, + anon_sym_SEMI, + [67079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7597), 1, + anon_sym_COLON, + [67086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7599), 1, + anon_sym_COLON, + [67093] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7601), 1, + anon_sym_COLON, + [67100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7603), 1, + anon_sym_COLON, + [67107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7605), 1, + anon_sym_COLON, + [67114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7607), 1, + anon_sym_SEMI, + [67121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7609), 1, + sym_identifier, + [67128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7611), 1, + anon_sym_RPAREN, + [67135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7613), 1, + anon_sym_COLON, + [67142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7615), 1, + sym_identifier, + [67149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7617), 1, + sym_identifier, + [67156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7619), 1, + anon_sym_COLON, + [67163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_COLON, + [67170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7623), 1, + anon_sym_COLON, + [67177] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7625), 1, + sym_identifier, + [67184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7627), 1, + anon_sym_COLON, + [67191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7629), 1, + sym_identifier, + [67198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7631), 1, + anon_sym_COLON, + [67205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7633), 1, + sym_identifier, + [67212] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7635), 1, + anon_sym_PIPE, + [67219] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7637), 1, + anon_sym_RPAREN, + [67226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7639), 1, + anon_sym_RPAREN, + [67233] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7641), 1, + sym_identifier, + [67240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7643), 1, + anon_sym_COLON, + [67247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7645), 1, + sym_identifier, + [67254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7647), 1, + anon_sym_COLON, + [67261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7649), 1, + anon_sym_COLON, + [67268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7651), 1, + ts_builtin_sym_end, + [67275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7653), 1, + sym_identifier, + [67282] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7655), 1, + anon_sym_COLON, + [67289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 1, + sym_identifier, + [67296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7401), 1, + sym_identifier, + [67303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7659), 1, + anon_sym_COLON, + [67310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7661), 1, + anon_sym_COLON, + [67317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7663), 1, + anon_sym_COLON, + [67324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7665), 1, + sym_identifier, + [67331] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7667), 1, + anon_sym_COLON, + [67338] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_COLON, + [67345] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7671), 1, + anon_sym_COLON, + [67352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7673), 1, + sym_integer, + [67359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7675), 1, + anon_sym_for, + [67366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7677), 1, + anon_sym_COLON, + [67373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7679), 1, + sym_identifier, + [67380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7681), 1, + anon_sym_PIPE, + [67387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7683), 1, + anon_sym_COLON, + [67394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7685), 1, + anon_sym_COLON, + [67401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7687), 1, + anon_sym_COLON, + [67408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7689), 1, + sym_identifier, + [67415] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7691), 1, + anon_sym_COLON, + [67422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7693), 1, + anon_sym_COLON, + [67429] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7695), 1, + anon_sym_COLON, + [67436] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7697), 1, + sym_identifier, + [67443] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7699), 1, + anon_sym_COLON, + [67450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7701), 1, + anon_sym_PIPE, + [67457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7703), 1, + anon_sym_COLON, + [67464] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7705), 1, + anon_sym_COLON, + [67471] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, + sym_identifier, + [67478] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7709), 1, + anon_sym_COLON, + [67485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7711), 1, + anon_sym_EQ, + [67492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7713), 1, + sym_identifier, + [67499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7715), 1, + anon_sym_PIPE, + [67506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7717), 1, + anon_sym_COLON, + [67513] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7719), 1, + anon_sym_COLON, + [67520] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7721), 1, + anon_sym_PIPE, + [67527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 1, + anon_sym_COLON, + [67534] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7725), 1, + anon_sym_COLON, + [67541] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7727), 1, + anon_sym_COLON, + [67548] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7729), 1, + anon_sym_COLON, + [67555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7731), 1, + anon_sym_COLON, + [67562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COLON, + [67569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7735), 1, + sym_identifier, + [67576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7737), 1, + anon_sym_COLON, + [67583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_COLON, + [67590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 1, + sym_identifier, + [67597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 1, + anon_sym_RPAREN, + [67604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 1, + anon_sym_COLON, + [67611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7747), 1, + sym_identifier, + [67618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 1, + anon_sym_COLON, + [67625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 1, + sym_identifier, + [67632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2048), 1, + anon_sym_SEMI, + [67639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 1, + anon_sym_PIPE, + [67646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7755), 1, + anon_sym_COLON, + [67653] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7757), 1, + anon_sym_PIPE, + [67660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7759), 1, + anon_sym_COLON, + [67667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 1, + anon_sym_COLON, + [67674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7763), 1, + anon_sym_SEMI, + [67681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 1, + sym_identifier, + [67688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 1, + anon_sym_COLON, + [67695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2104), 1, + anon_sym_SEMI, + [67702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2166), 1, + anon_sym_SEMI, + [67709] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 1, + anon_sym_PIPE, + [67716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7771), 1, + anon_sym_PIPE, + [67723] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 1, + anon_sym_SEMI, + [67730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2068), 1, + anon_sym_SEMI, + [67737] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7775), 1, + anon_sym_import, + [67744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_SEMI, + [67751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7779), 1, + anon_sym_COLON, + [67758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 1, + anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1305)] = 0, - [SMALL_STATE(1306)] = 75, - [SMALL_STATE(1307)] = 148, - [SMALL_STATE(1308)] = 222, - [SMALL_STATE(1309)] = 296, - [SMALL_STATE(1310)] = 370, - [SMALL_STATE(1311)] = 444, - [SMALL_STATE(1312)] = 518, - [SMALL_STATE(1313)] = 592, - [SMALL_STATE(1314)] = 666, - [SMALL_STATE(1315)] = 740, - [SMALL_STATE(1316)] = 807, - [SMALL_STATE(1317)] = 874, - [SMALL_STATE(1318)] = 941, - [SMALL_STATE(1319)] = 1008, - [SMALL_STATE(1320)] = 1075, - [SMALL_STATE(1321)] = 1142, - [SMALL_STATE(1322)] = 1209, - [SMALL_STATE(1323)] = 1276, - [SMALL_STATE(1324)] = 1346, - [SMALL_STATE(1325)] = 1418, - [SMALL_STATE(1326)] = 1488, - [SMALL_STATE(1327)] = 1560, - [SMALL_STATE(1328)] = 1645, - [SMALL_STATE(1329)] = 1732, - [SMALL_STATE(1330)] = 1819, - [SMALL_STATE(1331)] = 1906, - [SMALL_STATE(1332)] = 1986, - [SMALL_STATE(1333)] = 2066, - [SMALL_STATE(1334)] = 2146, - [SMALL_STATE(1335)] = 2226, - [SMALL_STATE(1336)] = 2306, - [SMALL_STATE(1337)] = 2386, - [SMALL_STATE(1338)] = 2466, - [SMALL_STATE(1339)] = 2546, - [SMALL_STATE(1340)] = 2626, - [SMALL_STATE(1341)] = 2703, - [SMALL_STATE(1342)] = 2780, - [SMALL_STATE(1343)] = 2857, - [SMALL_STATE(1344)] = 2934, - [SMALL_STATE(1345)] = 3011, - [SMALL_STATE(1346)] = 3088, - [SMALL_STATE(1347)] = 3165, - [SMALL_STATE(1348)] = 3242, - [SMALL_STATE(1349)] = 3319, - [SMALL_STATE(1350)] = 3396, - [SMALL_STATE(1351)] = 3473, - [SMALL_STATE(1352)] = 3550, - [SMALL_STATE(1353)] = 3627, - [SMALL_STATE(1354)] = 3701, - [SMALL_STATE(1355)] = 3775, - [SMALL_STATE(1356)] = 3849, - [SMALL_STATE(1357)] = 3923, - [SMALL_STATE(1358)] = 3997, - [SMALL_STATE(1359)] = 4071, - [SMALL_STATE(1360)] = 4145, - [SMALL_STATE(1361)] = 4219, - [SMALL_STATE(1362)] = 4293, - [SMALL_STATE(1363)] = 4367, - [SMALL_STATE(1364)] = 4441, - [SMALL_STATE(1365)] = 4515, - [SMALL_STATE(1366)] = 4589, - [SMALL_STATE(1367)] = 4663, - [SMALL_STATE(1368)] = 4737, - [SMALL_STATE(1369)] = 4811, - [SMALL_STATE(1370)] = 4885, - [SMALL_STATE(1371)] = 4959, - [SMALL_STATE(1372)] = 5033, - [SMALL_STATE(1373)] = 5107, - [SMALL_STATE(1374)] = 5181, - [SMALL_STATE(1375)] = 5255, - [SMALL_STATE(1376)] = 5329, - [SMALL_STATE(1377)] = 5403, - [SMALL_STATE(1378)] = 5477, - [SMALL_STATE(1379)] = 5551, - [SMALL_STATE(1380)] = 5625, - [SMALL_STATE(1381)] = 5699, - [SMALL_STATE(1382)] = 5773, - [SMALL_STATE(1383)] = 5847, - [SMALL_STATE(1384)] = 5921, - [SMALL_STATE(1385)] = 5995, - [SMALL_STATE(1386)] = 6069, - [SMALL_STATE(1387)] = 6143, - [SMALL_STATE(1388)] = 6214, - [SMALL_STATE(1389)] = 6285, - [SMALL_STATE(1390)] = 6356, - [SMALL_STATE(1391)] = 6427, - [SMALL_STATE(1392)] = 6498, - [SMALL_STATE(1393)] = 6569, - [SMALL_STATE(1394)] = 6640, - [SMALL_STATE(1395)] = 6711, - [SMALL_STATE(1396)] = 6782, - [SMALL_STATE(1397)] = 6853, - [SMALL_STATE(1398)] = 6924, - [SMALL_STATE(1399)] = 6995, - [SMALL_STATE(1400)] = 7066, - [SMALL_STATE(1401)] = 7137, - [SMALL_STATE(1402)] = 7208, - [SMALL_STATE(1403)] = 7279, - [SMALL_STATE(1404)] = 7350, - [SMALL_STATE(1405)] = 7421, - [SMALL_STATE(1406)] = 7492, - [SMALL_STATE(1407)] = 7563, - [SMALL_STATE(1408)] = 7634, - [SMALL_STATE(1409)] = 7705, - [SMALL_STATE(1410)] = 7776, - [SMALL_STATE(1411)] = 7847, - [SMALL_STATE(1412)] = 7918, - [SMALL_STATE(1413)] = 7989, - [SMALL_STATE(1414)] = 8060, - [SMALL_STATE(1415)] = 8131, - [SMALL_STATE(1416)] = 8202, - [SMALL_STATE(1417)] = 8273, - [SMALL_STATE(1418)] = 8344, - [SMALL_STATE(1419)] = 8415, - [SMALL_STATE(1420)] = 8486, - [SMALL_STATE(1421)] = 8557, - [SMALL_STATE(1422)] = 8628, - [SMALL_STATE(1423)] = 8699, - [SMALL_STATE(1424)] = 8770, - [SMALL_STATE(1425)] = 8841, - [SMALL_STATE(1426)] = 8912, - [SMALL_STATE(1427)] = 8980, - [SMALL_STATE(1428)] = 9034, - [SMALL_STATE(1429)] = 9086, - [SMALL_STATE(1430)] = 9138, - [SMALL_STATE(1431)] = 9189, - [SMALL_STATE(1432)] = 9247, - [SMALL_STATE(1433)] = 9301, - [SMALL_STATE(1434)] = 9355, - [SMALL_STATE(1435)] = 9404, - [SMALL_STATE(1436)] = 9453, - [SMALL_STATE(1437)] = 9502, - [SMALL_STATE(1438)] = 9551, - [SMALL_STATE(1439)] = 9600, - [SMALL_STATE(1440)] = 9649, - [SMALL_STATE(1441)] = 9698, - [SMALL_STATE(1442)] = 9747, - [SMALL_STATE(1443)] = 9796, - [SMALL_STATE(1444)] = 9850, - [SMALL_STATE(1445)] = 9918, - [SMALL_STATE(1446)] = 9980, - [SMALL_STATE(1447)] = 10056, - [SMALL_STATE(1448)] = 10112, - [SMALL_STATE(1449)] = 10174, - [SMALL_STATE(1450)] = 10234, - [SMALL_STATE(1451)] = 10294, - [SMALL_STATE(1452)] = 10354, - [SMALL_STATE(1453)] = 10422, - [SMALL_STATE(1454)] = 10476, - [SMALL_STATE(1455)] = 10540, - [SMALL_STATE(1456)] = 10600, - [SMALL_STATE(1457)] = 10656, - [SMALL_STATE(1458)] = 10720, - [SMALL_STATE(1459)] = 10774, - [SMALL_STATE(1460)] = 10842, - [SMALL_STATE(1461)] = 10898, - [SMALL_STATE(1462)] = 10966, - [SMALL_STATE(1463)] = 11028, - [SMALL_STATE(1464)] = 11092, - [SMALL_STATE(1465)] = 11156, - [SMALL_STATE(1466)] = 11218, - [SMALL_STATE(1467)] = 11274, - [SMALL_STATE(1468)] = 11328, - [SMALL_STATE(1469)] = 11403, - [SMALL_STATE(1470)] = 11469, - [SMALL_STATE(1471)] = 11529, - [SMALL_STATE(1472)] = 11591, - [SMALL_STATE(1473)] = 11651, - [SMALL_STATE(1474)] = 11713, - [SMALL_STATE(1475)] = 11767, - [SMALL_STATE(1476)] = 11825, - [SMALL_STATE(1477)] = 11877, - [SMALL_STATE(1478)] = 11927, - [SMALL_STATE(1479)] = 11985, - [SMALL_STATE(1480)] = 12039, - [SMALL_STATE(1481)] = 12091, - [SMALL_STATE(1482)] = 12157, - [SMALL_STATE(1483)] = 12230, - [SMALL_STATE(1484)] = 12304, - [SMALL_STATE(1485)] = 12378, - [SMALL_STATE(1486)] = 12448, - [SMALL_STATE(1487)] = 12520, - [SMALL_STATE(1488)] = 12587, - [SMALL_STATE(1489)] = 12664, - [SMALL_STATE(1490)] = 12733, - [SMALL_STATE(1491)] = 12807, - [SMALL_STATE(1492)] = 12881, - [SMALL_STATE(1493)] = 12955, - [SMALL_STATE(1494)] = 13029, - [SMALL_STATE(1495)] = 13103, - [SMALL_STATE(1496)] = 13177, - [SMALL_STATE(1497)] = 13251, - [SMALL_STATE(1498)] = 13325, - [SMALL_STATE(1499)] = 13399, - [SMALL_STATE(1500)] = 13473, - [SMALL_STATE(1501)] = 13547, - [SMALL_STATE(1502)] = 13621, - [SMALL_STATE(1503)] = 13695, - [SMALL_STATE(1504)] = 13769, - [SMALL_STATE(1505)] = 13840, - [SMALL_STATE(1506)] = 13911, - [SMALL_STATE(1507)] = 13950, - [SMALL_STATE(1508)] = 14017, - [SMALL_STATE(1509)] = 14088, - [SMALL_STATE(1510)] = 14127, - [SMALL_STATE(1511)] = 14174, - [SMALL_STATE(1512)] = 14213, - [SMALL_STATE(1513)] = 14284, - [SMALL_STATE(1514)] = 14323, - [SMALL_STATE(1515)] = 14390, - [SMALL_STATE(1516)] = 14461, - [SMALL_STATE(1517)] = 14532, - [SMALL_STATE(1518)] = 14586, - [SMALL_STATE(1519)] = 14646, - [SMALL_STATE(1520)] = 14702, - [SMALL_STATE(1521)] = 14756, - [SMALL_STATE(1522)] = 14808, - [SMALL_STATE(1523)] = 14856, - [SMALL_STATE(1524)] = 14924, - [SMALL_STATE(1525)] = 14970, - [SMALL_STATE(1526)] = 15030, - [SMALL_STATE(1527)] = 15086, - [SMALL_STATE(1528)] = 15138, - [SMALL_STATE(1529)] = 15186, - [SMALL_STATE(1530)] = 15254, - [SMALL_STATE(1531)] = 15296, - [SMALL_STATE(1532)] = 15358, - [SMALL_STATE(1533)] = 15400, - [SMALL_STATE(1534)] = 15442, - [SMALL_STATE(1535)] = 15504, - [SMALL_STATE(1536)] = 15572, - [SMALL_STATE(1537)] = 15634, - [SMALL_STATE(1538)] = 15678, - [SMALL_STATE(1539)] = 15746, - [SMALL_STATE(1540)] = 15810, - [SMALL_STATE(1541)] = 15878, - [SMALL_STATE(1542)] = 15920, - [SMALL_STATE(1543)] = 15982, - [SMALL_STATE(1544)] = 16050, - [SMALL_STATE(1545)] = 16112, - [SMALL_STATE(1546)] = 16158, - [SMALL_STATE(1547)] = 16220, - [SMALL_STATE(1548)] = 16285, - [SMALL_STATE(1549)] = 16350, - [SMALL_STATE(1550)] = 16411, - [SMALL_STATE(1551)] = 16476, - [SMALL_STATE(1552)] = 16541, - [SMALL_STATE(1553)] = 16606, - [SMALL_STATE(1554)] = 16671, - [SMALL_STATE(1555)] = 16732, - [SMALL_STATE(1556)] = 16793, - [SMALL_STATE(1557)] = 16858, - [SMALL_STATE(1558)] = 16919, - [SMALL_STATE(1559)] = 16984, - [SMALL_STATE(1560)] = 17049, - [SMALL_STATE(1561)] = 17110, - [SMALL_STATE(1562)] = 17171, - [SMALL_STATE(1563)] = 17236, - [SMALL_STATE(1564)] = 17301, - [SMALL_STATE(1565)] = 17366, - [SMALL_STATE(1566)] = 17427, - [SMALL_STATE(1567)] = 17492, - [SMALL_STATE(1568)] = 17553, - [SMALL_STATE(1569)] = 17597, - [SMALL_STATE(1570)] = 17643, - [SMALL_STATE(1571)] = 17701, - [SMALL_STATE(1572)] = 17755, - [SMALL_STATE(1573)] = 17807, - [SMALL_STATE(1574)] = 17857, - [SMALL_STATE(1575)] = 17903, - [SMALL_STATE(1576)] = 17947, - [SMALL_STATE(1577)] = 18005, - [SMALL_STATE(1578)] = 18059, - [SMALL_STATE(1579)] = 18111, - [SMALL_STATE(1580)] = 18161, - [SMALL_STATE(1581)] = 18220, - [SMALL_STATE(1582)] = 18279, - [SMALL_STATE(1583)] = 18338, - [SMALL_STATE(1584)] = 18397, - [SMALL_STATE(1585)] = 18456, - [SMALL_STATE(1586)] = 18489, - [SMALL_STATE(1587)] = 18522, - [SMALL_STATE(1588)] = 18555, - [SMALL_STATE(1589)] = 18588, - [SMALL_STATE(1590)] = 18621, - [SMALL_STATE(1591)] = 18654, - [SMALL_STATE(1592)] = 18684, - [SMALL_STATE(1593)] = 18714, - [SMALL_STATE(1594)] = 18744, - [SMALL_STATE(1595)] = 18774, - [SMALL_STATE(1596)] = 18796, - [SMALL_STATE(1597)] = 18822, - [SMALL_STATE(1598)] = 18848, - [SMALL_STATE(1599)] = 18874, - [SMALL_STATE(1600)] = 18900, - [SMALL_STATE(1601)] = 18926, - [SMALL_STATE(1602)] = 18948, - [SMALL_STATE(1603)] = 18970, - [SMALL_STATE(1604)] = 18996, - [SMALL_STATE(1605)] = 19018, - [SMALL_STATE(1606)] = 19040, - [SMALL_STATE(1607)] = 19066, - [SMALL_STATE(1608)] = 19088, - [SMALL_STATE(1609)] = 19114, - [SMALL_STATE(1610)] = 19140, - [SMALL_STATE(1611)] = 19166, - [SMALL_STATE(1612)] = 19192, - [SMALL_STATE(1613)] = 19218, - [SMALL_STATE(1614)] = 19244, - [SMALL_STATE(1615)] = 19266, - [SMALL_STATE(1616)] = 19288, - [SMALL_STATE(1617)] = 19310, - [SMALL_STATE(1618)] = 19332, - [SMALL_STATE(1619)] = 19354, - [SMALL_STATE(1620)] = 19380, - [SMALL_STATE(1621)] = 19402, - [SMALL_STATE(1622)] = 19425, - [SMALL_STATE(1623)] = 19448, - [SMALL_STATE(1624)] = 19473, - [SMALL_STATE(1625)] = 19496, - [SMALL_STATE(1626)] = 19519, - [SMALL_STATE(1627)] = 19533, - [SMALL_STATE(1628)] = 19547, - [SMALL_STATE(1629)] = 19561, - [SMALL_STATE(1630)] = 19575, - [SMALL_STATE(1631)] = 19589, - [SMALL_STATE(1632)] = 19603, - [SMALL_STATE(1633)] = 19623, - [SMALL_STATE(1634)] = 19637, - [SMALL_STATE(1635)] = 19651, - [SMALL_STATE(1636)] = 19665, - [SMALL_STATE(1637)] = 19679, - [SMALL_STATE(1638)] = 19693, - [SMALL_STATE(1639)] = 19707, - [SMALL_STATE(1640)] = 19721, - [SMALL_STATE(1641)] = 19735, - [SMALL_STATE(1642)] = 19749, - [SMALL_STATE(1643)] = 19763, - [SMALL_STATE(1644)] = 19777, - [SMALL_STATE(1645)] = 19791, - [SMALL_STATE(1646)] = 19805, - [SMALL_STATE(1647)] = 19819, - [SMALL_STATE(1648)] = 19841, - [SMALL_STATE(1649)] = 19855, - [SMALL_STATE(1650)] = 19869, - [SMALL_STATE(1651)] = 19883, - [SMALL_STATE(1652)] = 19897, - [SMALL_STATE(1653)] = 19917, - [SMALL_STATE(1654)] = 19931, - [SMALL_STATE(1655)] = 19945, - [SMALL_STATE(1656)] = 19959, - [SMALL_STATE(1657)] = 19973, - [SMALL_STATE(1658)] = 19987, - [SMALL_STATE(1659)] = 20001, - [SMALL_STATE(1660)] = 20015, - [SMALL_STATE(1661)] = 20029, - [SMALL_STATE(1662)] = 20043, - [SMALL_STATE(1663)] = 20057, - [SMALL_STATE(1664)] = 20071, - [SMALL_STATE(1665)] = 20085, - [SMALL_STATE(1666)] = 20099, - [SMALL_STATE(1667)] = 20113, - [SMALL_STATE(1668)] = 20133, - [SMALL_STATE(1669)] = 20147, - [SMALL_STATE(1670)] = 20161, - [SMALL_STATE(1671)] = 20183, - [SMALL_STATE(1672)] = 20197, - [SMALL_STATE(1673)] = 20211, - [SMALL_STATE(1674)] = 20225, - [SMALL_STATE(1675)] = 20239, - [SMALL_STATE(1676)] = 20253, - [SMALL_STATE(1677)] = 20267, - [SMALL_STATE(1678)] = 20281, - [SMALL_STATE(1679)] = 20295, - [SMALL_STATE(1680)] = 20309, - [SMALL_STATE(1681)] = 20328, - [SMALL_STATE(1682)] = 20347, - [SMALL_STATE(1683)] = 20366, - [SMALL_STATE(1684)] = 20385, - [SMALL_STATE(1685)] = 20404, - [SMALL_STATE(1686)] = 20423, - [SMALL_STATE(1687)] = 20442, - [SMALL_STATE(1688)] = 20461, - [SMALL_STATE(1689)] = 20480, - [SMALL_STATE(1690)] = 20499, - [SMALL_STATE(1691)] = 20518, - [SMALL_STATE(1692)] = 20537, - [SMALL_STATE(1693)] = 20556, - [SMALL_STATE(1694)] = 20575, - [SMALL_STATE(1695)] = 20594, - [SMALL_STATE(1696)] = 20613, - [SMALL_STATE(1697)] = 20632, - [SMALL_STATE(1698)] = 20651, - [SMALL_STATE(1699)] = 20670, - [SMALL_STATE(1700)] = 20689, - [SMALL_STATE(1701)] = 20708, - [SMALL_STATE(1702)] = 20727, - [SMALL_STATE(1703)] = 20746, - [SMALL_STATE(1704)] = 20765, - [SMALL_STATE(1705)] = 20784, - [SMALL_STATE(1706)] = 20797, - [SMALL_STATE(1707)] = 20816, - [SMALL_STATE(1708)] = 20835, - [SMALL_STATE(1709)] = 20854, - [SMALL_STATE(1710)] = 20873, - [SMALL_STATE(1711)] = 20892, - [SMALL_STATE(1712)] = 20911, - [SMALL_STATE(1713)] = 20930, - [SMALL_STATE(1714)] = 20949, - [SMALL_STATE(1715)] = 20968, - [SMALL_STATE(1716)] = 20987, - [SMALL_STATE(1717)] = 21006, - [SMALL_STATE(1718)] = 21025, - [SMALL_STATE(1719)] = 21044, - [SMALL_STATE(1720)] = 21063, - [SMALL_STATE(1721)] = 21082, - [SMALL_STATE(1722)] = 21101, - [SMALL_STATE(1723)] = 21120, - [SMALL_STATE(1724)] = 21139, - [SMALL_STATE(1725)] = 21158, - [SMALL_STATE(1726)] = 21177, - [SMALL_STATE(1727)] = 21196, - [SMALL_STATE(1728)] = 21215, - [SMALL_STATE(1729)] = 21234, - [SMALL_STATE(1730)] = 21253, - [SMALL_STATE(1731)] = 21272, - [SMALL_STATE(1732)] = 21291, - [SMALL_STATE(1733)] = 21310, - [SMALL_STATE(1734)] = 21329, - [SMALL_STATE(1735)] = 21348, - [SMALL_STATE(1736)] = 21367, - [SMALL_STATE(1737)] = 21386, - [SMALL_STATE(1738)] = 21405, - [SMALL_STATE(1739)] = 21424, - [SMALL_STATE(1740)] = 21443, - [SMALL_STATE(1741)] = 21462, - [SMALL_STATE(1742)] = 21481, - [SMALL_STATE(1743)] = 21500, - [SMALL_STATE(1744)] = 21519, - [SMALL_STATE(1745)] = 21538, - [SMALL_STATE(1746)] = 21557, - [SMALL_STATE(1747)] = 21576, - [SMALL_STATE(1748)] = 21595, - [SMALL_STATE(1749)] = 21614, - [SMALL_STATE(1750)] = 21633, - [SMALL_STATE(1751)] = 21652, - [SMALL_STATE(1752)] = 21671, - [SMALL_STATE(1753)] = 21690, - [SMALL_STATE(1754)] = 21709, - [SMALL_STATE(1755)] = 21728, - [SMALL_STATE(1756)] = 21747, - [SMALL_STATE(1757)] = 21766, - [SMALL_STATE(1758)] = 21785, - [SMALL_STATE(1759)] = 21804, - [SMALL_STATE(1760)] = 21823, - [SMALL_STATE(1761)] = 21842, - [SMALL_STATE(1762)] = 21861, - [SMALL_STATE(1763)] = 21880, - [SMALL_STATE(1764)] = 21899, - [SMALL_STATE(1765)] = 21918, - [SMALL_STATE(1766)] = 21937, - [SMALL_STATE(1767)] = 21956, - [SMALL_STATE(1768)] = 21975, - [SMALL_STATE(1769)] = 21994, - [SMALL_STATE(1770)] = 22013, - [SMALL_STATE(1771)] = 22032, - [SMALL_STATE(1772)] = 22051, - [SMALL_STATE(1773)] = 22070, - [SMALL_STATE(1774)] = 22089, - [SMALL_STATE(1775)] = 22108, - [SMALL_STATE(1776)] = 22127, - [SMALL_STATE(1777)] = 22146, - [SMALL_STATE(1778)] = 22165, - [SMALL_STATE(1779)] = 22184, - [SMALL_STATE(1780)] = 22203, - [SMALL_STATE(1781)] = 22222, - [SMALL_STATE(1782)] = 22241, - [SMALL_STATE(1783)] = 22260, - [SMALL_STATE(1784)] = 22279, - [SMALL_STATE(1785)] = 22298, - [SMALL_STATE(1786)] = 22317, - [SMALL_STATE(1787)] = 22336, - [SMALL_STATE(1788)] = 22355, - [SMALL_STATE(1789)] = 22374, - [SMALL_STATE(1790)] = 22393, - [SMALL_STATE(1791)] = 22412, - [SMALL_STATE(1792)] = 22431, - [SMALL_STATE(1793)] = 22450, - [SMALL_STATE(1794)] = 22469, - [SMALL_STATE(1795)] = 22488, - [SMALL_STATE(1796)] = 22507, - [SMALL_STATE(1797)] = 22526, - [SMALL_STATE(1798)] = 22545, - [SMALL_STATE(1799)] = 22564, - [SMALL_STATE(1800)] = 22583, - [SMALL_STATE(1801)] = 22602, - [SMALL_STATE(1802)] = 22618, - [SMALL_STATE(1803)] = 22634, - [SMALL_STATE(1804)] = 22650, - [SMALL_STATE(1805)] = 22660, - [SMALL_STATE(1806)] = 22676, - [SMALL_STATE(1807)] = 22692, - [SMALL_STATE(1808)] = 22708, - [SMALL_STATE(1809)] = 22724, - [SMALL_STATE(1810)] = 22740, - [SMALL_STATE(1811)] = 22756, - [SMALL_STATE(1812)] = 22772, - [SMALL_STATE(1813)] = 22788, - [SMALL_STATE(1814)] = 22804, - [SMALL_STATE(1815)] = 22820, - [SMALL_STATE(1816)] = 22836, - [SMALL_STATE(1817)] = 22850, - [SMALL_STATE(1818)] = 22862, - [SMALL_STATE(1819)] = 22878, - [SMALL_STATE(1820)] = 22894, - [SMALL_STATE(1821)] = 22910, - [SMALL_STATE(1822)] = 22926, - [SMALL_STATE(1823)] = 22942, - [SMALL_STATE(1824)] = 22958, - [SMALL_STATE(1825)] = 22974, - [SMALL_STATE(1826)] = 22990, - [SMALL_STATE(1827)] = 23006, - [SMALL_STATE(1828)] = 23022, - [SMALL_STATE(1829)] = 23038, - [SMALL_STATE(1830)] = 23054, - [SMALL_STATE(1831)] = 23070, - [SMALL_STATE(1832)] = 23086, - [SMALL_STATE(1833)] = 23102, - [SMALL_STATE(1834)] = 23118, - [SMALL_STATE(1835)] = 23134, - [SMALL_STATE(1836)] = 23150, - [SMALL_STATE(1837)] = 23166, - [SMALL_STATE(1838)] = 23182, - [SMALL_STATE(1839)] = 23198, - [SMALL_STATE(1840)] = 23214, - [SMALL_STATE(1841)] = 23230, - [SMALL_STATE(1842)] = 23246, - [SMALL_STATE(1843)] = 23262, - [SMALL_STATE(1844)] = 23278, - [SMALL_STATE(1845)] = 23294, - [SMALL_STATE(1846)] = 23310, - [SMALL_STATE(1847)] = 23326, - [SMALL_STATE(1848)] = 23342, - [SMALL_STATE(1849)] = 23358, - [SMALL_STATE(1850)] = 23374, - [SMALL_STATE(1851)] = 23390, - [SMALL_STATE(1852)] = 23406, - [SMALL_STATE(1853)] = 23422, - [SMALL_STATE(1854)] = 23438, - [SMALL_STATE(1855)] = 23454, - [SMALL_STATE(1856)] = 23470, - [SMALL_STATE(1857)] = 23486, - [SMALL_STATE(1858)] = 23500, - [SMALL_STATE(1859)] = 23516, - [SMALL_STATE(1860)] = 23532, - [SMALL_STATE(1861)] = 23548, - [SMALL_STATE(1862)] = 23564, - [SMALL_STATE(1863)] = 23578, - [SMALL_STATE(1864)] = 23594, - [SMALL_STATE(1865)] = 23610, - [SMALL_STATE(1866)] = 23626, - [SMALL_STATE(1867)] = 23642, - [SMALL_STATE(1868)] = 23658, - [SMALL_STATE(1869)] = 23674, - [SMALL_STATE(1870)] = 23690, - [SMALL_STATE(1871)] = 23706, - [SMALL_STATE(1872)] = 23722, - [SMALL_STATE(1873)] = 23738, - [SMALL_STATE(1874)] = 23754, - [SMALL_STATE(1875)] = 23770, - [SMALL_STATE(1876)] = 23786, - [SMALL_STATE(1877)] = 23802, - [SMALL_STATE(1878)] = 23818, - [SMALL_STATE(1879)] = 23834, - [SMALL_STATE(1880)] = 23850, - [SMALL_STATE(1881)] = 23866, - [SMALL_STATE(1882)] = 23882, - [SMALL_STATE(1883)] = 23898, - [SMALL_STATE(1884)] = 23914, - [SMALL_STATE(1885)] = 23928, - [SMALL_STATE(1886)] = 23944, - [SMALL_STATE(1887)] = 23960, - [SMALL_STATE(1888)] = 23976, - [SMALL_STATE(1889)] = 23992, - [SMALL_STATE(1890)] = 24008, - [SMALL_STATE(1891)] = 24024, - [SMALL_STATE(1892)] = 24040, - [SMALL_STATE(1893)] = 24056, - [SMALL_STATE(1894)] = 24072, - [SMALL_STATE(1895)] = 24088, - [SMALL_STATE(1896)] = 24104, - [SMALL_STATE(1897)] = 24120, - [SMALL_STATE(1898)] = 24136, - [SMALL_STATE(1899)] = 24152, - [SMALL_STATE(1900)] = 24168, - [SMALL_STATE(1901)] = 24184, - [SMALL_STATE(1902)] = 24200, - [SMALL_STATE(1903)] = 24216, - [SMALL_STATE(1904)] = 24232, - [SMALL_STATE(1905)] = 24248, - [SMALL_STATE(1906)] = 24264, - [SMALL_STATE(1907)] = 24280, - [SMALL_STATE(1908)] = 24296, - [SMALL_STATE(1909)] = 24312, - [SMALL_STATE(1910)] = 24328, - [SMALL_STATE(1911)] = 24344, - [SMALL_STATE(1912)] = 24360, - [SMALL_STATE(1913)] = 24376, - [SMALL_STATE(1914)] = 24390, - [SMALL_STATE(1915)] = 24406, - [SMALL_STATE(1916)] = 24422, - [SMALL_STATE(1917)] = 24438, - [SMALL_STATE(1918)] = 24454, - [SMALL_STATE(1919)] = 24470, - [SMALL_STATE(1920)] = 24486, - [SMALL_STATE(1921)] = 24502, - [SMALL_STATE(1922)] = 24518, - [SMALL_STATE(1923)] = 24534, - [SMALL_STATE(1924)] = 24544, - [SMALL_STATE(1925)] = 24560, - [SMALL_STATE(1926)] = 24576, - [SMALL_STATE(1927)] = 24590, - [SMALL_STATE(1928)] = 24606, - [SMALL_STATE(1929)] = 24622, - [SMALL_STATE(1930)] = 24638, - [SMALL_STATE(1931)] = 24654, - [SMALL_STATE(1932)] = 24670, - [SMALL_STATE(1933)] = 24686, - [SMALL_STATE(1934)] = 24702, - [SMALL_STATE(1935)] = 24718, - [SMALL_STATE(1936)] = 24732, - [SMALL_STATE(1937)] = 24742, - [SMALL_STATE(1938)] = 24758, - [SMALL_STATE(1939)] = 24774, - [SMALL_STATE(1940)] = 24790, - [SMALL_STATE(1941)] = 24806, - [SMALL_STATE(1942)] = 24822, - [SMALL_STATE(1943)] = 24836, - [SMALL_STATE(1944)] = 24852, - [SMALL_STATE(1945)] = 24868, - [SMALL_STATE(1946)] = 24884, - [SMALL_STATE(1947)] = 24900, - [SMALL_STATE(1948)] = 24916, - [SMALL_STATE(1949)] = 24932, - [SMALL_STATE(1950)] = 24948, - [SMALL_STATE(1951)] = 24964, - [SMALL_STATE(1952)] = 24980, - [SMALL_STATE(1953)] = 24996, - [SMALL_STATE(1954)] = 25012, - [SMALL_STATE(1955)] = 25028, - [SMALL_STATE(1956)] = 25044, - [SMALL_STATE(1957)] = 25060, - [SMALL_STATE(1958)] = 25076, - [SMALL_STATE(1959)] = 25092, - [SMALL_STATE(1960)] = 25108, - [SMALL_STATE(1961)] = 25124, - [SMALL_STATE(1962)] = 25140, - [SMALL_STATE(1963)] = 25156, - [SMALL_STATE(1964)] = 25172, - [SMALL_STATE(1965)] = 25188, - [SMALL_STATE(1966)] = 25204, - [SMALL_STATE(1967)] = 25220, - [SMALL_STATE(1968)] = 25236, - [SMALL_STATE(1969)] = 25252, - [SMALL_STATE(1970)] = 25268, - [SMALL_STATE(1971)] = 25284, - [SMALL_STATE(1972)] = 25300, - [SMALL_STATE(1973)] = 25316, - [SMALL_STATE(1974)] = 25332, - [SMALL_STATE(1975)] = 25348, - [SMALL_STATE(1976)] = 25364, - [SMALL_STATE(1977)] = 25380, - [SMALL_STATE(1978)] = 25396, - [SMALL_STATE(1979)] = 25412, - [SMALL_STATE(1980)] = 25428, - [SMALL_STATE(1981)] = 25444, - [SMALL_STATE(1982)] = 25460, - [SMALL_STATE(1983)] = 25476, - [SMALL_STATE(1984)] = 25492, - [SMALL_STATE(1985)] = 25508, - [SMALL_STATE(1986)] = 25524, - [SMALL_STATE(1987)] = 25540, - [SMALL_STATE(1988)] = 25556, - [SMALL_STATE(1989)] = 25572, - [SMALL_STATE(1990)] = 25588, - [SMALL_STATE(1991)] = 25604, - [SMALL_STATE(1992)] = 25620, - [SMALL_STATE(1993)] = 25634, - [SMALL_STATE(1994)] = 25650, - [SMALL_STATE(1995)] = 25664, - [SMALL_STATE(1996)] = 25680, - [SMALL_STATE(1997)] = 25696, - [SMALL_STATE(1998)] = 25710, - [SMALL_STATE(1999)] = 25726, - [SMALL_STATE(2000)] = 25742, - [SMALL_STATE(2001)] = 25758, - [SMALL_STATE(2002)] = 25774, - [SMALL_STATE(2003)] = 25790, - [SMALL_STATE(2004)] = 25800, - [SMALL_STATE(2005)] = 25814, - [SMALL_STATE(2006)] = 25830, - [SMALL_STATE(2007)] = 25844, - [SMALL_STATE(2008)] = 25860, - [SMALL_STATE(2009)] = 25876, - [SMALL_STATE(2010)] = 25892, - [SMALL_STATE(2011)] = 25908, - [SMALL_STATE(2012)] = 25924, - [SMALL_STATE(2013)] = 25940, - [SMALL_STATE(2014)] = 25956, - [SMALL_STATE(2015)] = 25972, - [SMALL_STATE(2016)] = 25986, - [SMALL_STATE(2017)] = 26002, - [SMALL_STATE(2018)] = 26018, - [SMALL_STATE(2019)] = 26032, - [SMALL_STATE(2020)] = 26046, - [SMALL_STATE(2021)] = 26060, - [SMALL_STATE(2022)] = 26074, - [SMALL_STATE(2023)] = 26090, - [SMALL_STATE(2024)] = 26106, - [SMALL_STATE(2025)] = 26122, - [SMALL_STATE(2026)] = 26138, - [SMALL_STATE(2027)] = 26154, - [SMALL_STATE(2028)] = 26170, - [SMALL_STATE(2029)] = 26186, - [SMALL_STATE(2030)] = 26202, - [SMALL_STATE(2031)] = 26218, - [SMALL_STATE(2032)] = 26234, - [SMALL_STATE(2033)] = 26250, - [SMALL_STATE(2034)] = 26266, - [SMALL_STATE(2035)] = 26282, - [SMALL_STATE(2036)] = 26298, - [SMALL_STATE(2037)] = 26314, - [SMALL_STATE(2038)] = 26330, - [SMALL_STATE(2039)] = 26344, - [SMALL_STATE(2040)] = 26360, - [SMALL_STATE(2041)] = 26376, - [SMALL_STATE(2042)] = 26392, - [SMALL_STATE(2043)] = 26408, - [SMALL_STATE(2044)] = 26424, - [SMALL_STATE(2045)] = 26440, - [SMALL_STATE(2046)] = 26456, - [SMALL_STATE(2047)] = 26472, - [SMALL_STATE(2048)] = 26488, - [SMALL_STATE(2049)] = 26504, - [SMALL_STATE(2050)] = 26520, - [SMALL_STATE(2051)] = 26536, - [SMALL_STATE(2052)] = 26546, - [SMALL_STATE(2053)] = 26562, - [SMALL_STATE(2054)] = 26575, - [SMALL_STATE(2055)] = 26588, - [SMALL_STATE(2056)] = 26601, - [SMALL_STATE(2057)] = 26612, - [SMALL_STATE(2058)] = 26625, - [SMALL_STATE(2059)] = 26634, - [SMALL_STATE(2060)] = 26647, - [SMALL_STATE(2061)] = 26660, - [SMALL_STATE(2062)] = 26673, - [SMALL_STATE(2063)] = 26686, - [SMALL_STATE(2064)] = 26699, - [SMALL_STATE(2065)] = 26708, - [SMALL_STATE(2066)] = 26721, - [SMALL_STATE(2067)] = 26734, - [SMALL_STATE(2068)] = 26743, - [SMALL_STATE(2069)] = 26756, - [SMALL_STATE(2070)] = 26769, - [SMALL_STATE(2071)] = 26782, - [SMALL_STATE(2072)] = 26795, - [SMALL_STATE(2073)] = 26808, - [SMALL_STATE(2074)] = 26821, - [SMALL_STATE(2075)] = 26830, - [SMALL_STATE(2076)] = 26843, - [SMALL_STATE(2077)] = 26856, - [SMALL_STATE(2078)] = 26865, - [SMALL_STATE(2079)] = 26874, - [SMALL_STATE(2080)] = 26887, - [SMALL_STATE(2081)] = 26900, - [SMALL_STATE(2082)] = 26913, - [SMALL_STATE(2083)] = 26926, - [SMALL_STATE(2084)] = 26939, - [SMALL_STATE(2085)] = 26952, - [SMALL_STATE(2086)] = 26965, - [SMALL_STATE(2087)] = 26978, - [SMALL_STATE(2088)] = 26991, - [SMALL_STATE(2089)] = 27004, - [SMALL_STATE(2090)] = 27017, - [SMALL_STATE(2091)] = 27030, - [SMALL_STATE(2092)] = 27043, - [SMALL_STATE(2093)] = 27056, - [SMALL_STATE(2094)] = 27069, - [SMALL_STATE(2095)] = 27082, - [SMALL_STATE(2096)] = 27091, - [SMALL_STATE(2097)] = 27104, - [SMALL_STATE(2098)] = 27113, - [SMALL_STATE(2099)] = 27126, - [SMALL_STATE(2100)] = 27139, - [SMALL_STATE(2101)] = 27152, - [SMALL_STATE(2102)] = 27165, - [SMALL_STATE(2103)] = 27178, - [SMALL_STATE(2104)] = 27191, - [SMALL_STATE(2105)] = 27204, - [SMALL_STATE(2106)] = 27217, - [SMALL_STATE(2107)] = 27230, - [SMALL_STATE(2108)] = 27239, - [SMALL_STATE(2109)] = 27252, - [SMALL_STATE(2110)] = 27265, - [SMALL_STATE(2111)] = 27278, - [SMALL_STATE(2112)] = 27291, - [SMALL_STATE(2113)] = 27304, - [SMALL_STATE(2114)] = 27317, - [SMALL_STATE(2115)] = 27330, - [SMALL_STATE(2116)] = 27343, - [SMALL_STATE(2117)] = 27356, - [SMALL_STATE(2118)] = 27365, - [SMALL_STATE(2119)] = 27378, - [SMALL_STATE(2120)] = 27391, - [SMALL_STATE(2121)] = 27404, - [SMALL_STATE(2122)] = 27417, - [SMALL_STATE(2123)] = 27430, - [SMALL_STATE(2124)] = 27443, - [SMALL_STATE(2125)] = 27456, - [SMALL_STATE(2126)] = 27469, - [SMALL_STATE(2127)] = 27482, - [SMALL_STATE(2128)] = 27495, - [SMALL_STATE(2129)] = 27508, - [SMALL_STATE(2130)] = 27519, - [SMALL_STATE(2131)] = 27532, - [SMALL_STATE(2132)] = 27545, - [SMALL_STATE(2133)] = 27554, - [SMALL_STATE(2134)] = 27567, - [SMALL_STATE(2135)] = 27580, - [SMALL_STATE(2136)] = 27593, - [SMALL_STATE(2137)] = 27606, - [SMALL_STATE(2138)] = 27619, - [SMALL_STATE(2139)] = 27632, - [SMALL_STATE(2140)] = 27641, - [SMALL_STATE(2141)] = 27654, - [SMALL_STATE(2142)] = 27667, - [SMALL_STATE(2143)] = 27676, - [SMALL_STATE(2144)] = 27689, - [SMALL_STATE(2145)] = 27702, - [SMALL_STATE(2146)] = 27715, - [SMALL_STATE(2147)] = 27728, - [SMALL_STATE(2148)] = 27741, - [SMALL_STATE(2149)] = 27754, - [SMALL_STATE(2150)] = 27767, - [SMALL_STATE(2151)] = 27780, - [SMALL_STATE(2152)] = 27793, - [SMALL_STATE(2153)] = 27806, - [SMALL_STATE(2154)] = 27819, - [SMALL_STATE(2155)] = 27832, - [SMALL_STATE(2156)] = 27845, - [SMALL_STATE(2157)] = 27858, - [SMALL_STATE(2158)] = 27871, - [SMALL_STATE(2159)] = 27884, - [SMALL_STATE(2160)] = 27897, - [SMALL_STATE(2161)] = 27910, - [SMALL_STATE(2162)] = 27923, - [SMALL_STATE(2163)] = 27936, - [SMALL_STATE(2164)] = 27949, - [SMALL_STATE(2165)] = 27962, - [SMALL_STATE(2166)] = 27975, - [SMALL_STATE(2167)] = 27988, - [SMALL_STATE(2168)] = 28001, - [SMALL_STATE(2169)] = 28014, - [SMALL_STATE(2170)] = 28027, - [SMALL_STATE(2171)] = 28040, - [SMALL_STATE(2172)] = 28053, - [SMALL_STATE(2173)] = 28066, - [SMALL_STATE(2174)] = 28079, - [SMALL_STATE(2175)] = 28092, - [SMALL_STATE(2176)] = 28105, - [SMALL_STATE(2177)] = 28118, - [SMALL_STATE(2178)] = 28131, - [SMALL_STATE(2179)] = 28144, - [SMALL_STATE(2180)] = 28157, - [SMALL_STATE(2181)] = 28170, - [SMALL_STATE(2182)] = 28183, - [SMALL_STATE(2183)] = 28196, - [SMALL_STATE(2184)] = 28209, - [SMALL_STATE(2185)] = 28222, - [SMALL_STATE(2186)] = 28235, - [SMALL_STATE(2187)] = 28248, - [SMALL_STATE(2188)] = 28261, - [SMALL_STATE(2189)] = 28274, - [SMALL_STATE(2190)] = 28283, - [SMALL_STATE(2191)] = 28296, - [SMALL_STATE(2192)] = 28306, - [SMALL_STATE(2193)] = 28316, - [SMALL_STATE(2194)] = 28326, - [SMALL_STATE(2195)] = 28336, - [SMALL_STATE(2196)] = 28346, - [SMALL_STATE(2197)] = 28356, - [SMALL_STATE(2198)] = 28366, - [SMALL_STATE(2199)] = 28376, - [SMALL_STATE(2200)] = 28386, - [SMALL_STATE(2201)] = 28394, - [SMALL_STATE(2202)] = 28402, - [SMALL_STATE(2203)] = 28410, - [SMALL_STATE(2204)] = 28418, - [SMALL_STATE(2205)] = 28428, - [SMALL_STATE(2206)] = 28438, - [SMALL_STATE(2207)] = 28448, - [SMALL_STATE(2208)] = 28458, - [SMALL_STATE(2209)] = 28468, - [SMALL_STATE(2210)] = 28478, - [SMALL_STATE(2211)] = 28488, - [SMALL_STATE(2212)] = 28498, - [SMALL_STATE(2213)] = 28508, - [SMALL_STATE(2214)] = 28516, - [SMALL_STATE(2215)] = 28526, - [SMALL_STATE(2216)] = 28536, - [SMALL_STATE(2217)] = 28546, - [SMALL_STATE(2218)] = 28556, - [SMALL_STATE(2219)] = 28564, - [SMALL_STATE(2220)] = 28574, - [SMALL_STATE(2221)] = 28584, - [SMALL_STATE(2222)] = 28592, - [SMALL_STATE(2223)] = 28602, - [SMALL_STATE(2224)] = 28610, - [SMALL_STATE(2225)] = 28618, - [SMALL_STATE(2226)] = 28626, - [SMALL_STATE(2227)] = 28636, - [SMALL_STATE(2228)] = 28646, - [SMALL_STATE(2229)] = 28656, - [SMALL_STATE(2230)] = 28666, - [SMALL_STATE(2231)] = 28676, - [SMALL_STATE(2232)] = 28684, - [SMALL_STATE(2233)] = 28694, - [SMALL_STATE(2234)] = 28704, - [SMALL_STATE(2235)] = 28714, - [SMALL_STATE(2236)] = 28724, - [SMALL_STATE(2237)] = 28734, - [SMALL_STATE(2238)] = 28744, - [SMALL_STATE(2239)] = 28754, - [SMALL_STATE(2240)] = 28761, - [SMALL_STATE(2241)] = 28768, - [SMALL_STATE(2242)] = 28775, - [SMALL_STATE(2243)] = 28782, - [SMALL_STATE(2244)] = 28789, - [SMALL_STATE(2245)] = 28796, - [SMALL_STATE(2246)] = 28803, - [SMALL_STATE(2247)] = 28810, - [SMALL_STATE(2248)] = 28817, - [SMALL_STATE(2249)] = 28824, - [SMALL_STATE(2250)] = 28831, - [SMALL_STATE(2251)] = 28838, - [SMALL_STATE(2252)] = 28845, - [SMALL_STATE(2253)] = 28852, - [SMALL_STATE(2254)] = 28859, - [SMALL_STATE(2255)] = 28866, - [SMALL_STATE(2256)] = 28873, - [SMALL_STATE(2257)] = 28880, - [SMALL_STATE(2258)] = 28887, - [SMALL_STATE(2259)] = 28894, - [SMALL_STATE(2260)] = 28901, - [SMALL_STATE(2261)] = 28908, - [SMALL_STATE(2262)] = 28915, - [SMALL_STATE(2263)] = 28922, - [SMALL_STATE(2264)] = 28929, - [SMALL_STATE(2265)] = 28936, - [SMALL_STATE(2266)] = 28943, - [SMALL_STATE(2267)] = 28950, - [SMALL_STATE(2268)] = 28957, - [SMALL_STATE(2269)] = 28964, - [SMALL_STATE(2270)] = 28971, - [SMALL_STATE(2271)] = 28978, - [SMALL_STATE(2272)] = 28985, - [SMALL_STATE(2273)] = 28992, - [SMALL_STATE(2274)] = 28999, - [SMALL_STATE(2275)] = 29006, - [SMALL_STATE(2276)] = 29013, - [SMALL_STATE(2277)] = 29020, - [SMALL_STATE(2278)] = 29027, - [SMALL_STATE(2279)] = 29034, - [SMALL_STATE(2280)] = 29041, - [SMALL_STATE(2281)] = 29048, - [SMALL_STATE(2282)] = 29055, - [SMALL_STATE(2283)] = 29062, - [SMALL_STATE(2284)] = 29069, - [SMALL_STATE(2285)] = 29076, - [SMALL_STATE(2286)] = 29083, - [SMALL_STATE(2287)] = 29090, - [SMALL_STATE(2288)] = 29097, - [SMALL_STATE(2289)] = 29104, - [SMALL_STATE(2290)] = 29111, - [SMALL_STATE(2291)] = 29118, - [SMALL_STATE(2292)] = 29125, - [SMALL_STATE(2293)] = 29132, - [SMALL_STATE(2294)] = 29139, - [SMALL_STATE(2295)] = 29146, - [SMALL_STATE(2296)] = 29153, - [SMALL_STATE(2297)] = 29160, - [SMALL_STATE(2298)] = 29167, - [SMALL_STATE(2299)] = 29174, - [SMALL_STATE(2300)] = 29181, - [SMALL_STATE(2301)] = 29188, - [SMALL_STATE(2302)] = 29195, - [SMALL_STATE(2303)] = 29202, - [SMALL_STATE(2304)] = 29209, - [SMALL_STATE(2305)] = 29216, - [SMALL_STATE(2306)] = 29223, - [SMALL_STATE(2307)] = 29230, - [SMALL_STATE(2308)] = 29237, - [SMALL_STATE(2309)] = 29244, - [SMALL_STATE(2310)] = 29251, - [SMALL_STATE(2311)] = 29258, - [SMALL_STATE(2312)] = 29265, - [SMALL_STATE(2313)] = 29272, - [SMALL_STATE(2314)] = 29279, - [SMALL_STATE(2315)] = 29286, - [SMALL_STATE(2316)] = 29293, - [SMALL_STATE(2317)] = 29300, - [SMALL_STATE(2318)] = 29307, - [SMALL_STATE(2319)] = 29314, - [SMALL_STATE(2320)] = 29321, - [SMALL_STATE(2321)] = 29328, - [SMALL_STATE(2322)] = 29335, - [SMALL_STATE(2323)] = 29342, - [SMALL_STATE(2324)] = 29349, - [SMALL_STATE(2325)] = 29356, - [SMALL_STATE(2326)] = 29363, - [SMALL_STATE(2327)] = 29370, - [SMALL_STATE(2328)] = 29377, - [SMALL_STATE(2329)] = 29384, - [SMALL_STATE(2330)] = 29391, - [SMALL_STATE(2331)] = 29398, - [SMALL_STATE(2332)] = 29405, - [SMALL_STATE(2333)] = 29412, - [SMALL_STATE(2334)] = 29419, - [SMALL_STATE(2335)] = 29426, - [SMALL_STATE(2336)] = 29433, - [SMALL_STATE(2337)] = 29440, - [SMALL_STATE(2338)] = 29447, - [SMALL_STATE(2339)] = 29454, - [SMALL_STATE(2340)] = 29461, - [SMALL_STATE(2341)] = 29468, - [SMALL_STATE(2342)] = 29475, - [SMALL_STATE(2343)] = 29482, - [SMALL_STATE(2344)] = 29489, - [SMALL_STATE(2345)] = 29496, - [SMALL_STATE(2346)] = 29503, - [SMALL_STATE(2347)] = 29510, - [SMALL_STATE(2348)] = 29517, - [SMALL_STATE(2349)] = 29524, - [SMALL_STATE(2350)] = 29531, - [SMALL_STATE(2351)] = 29538, - [SMALL_STATE(2352)] = 29545, - [SMALL_STATE(2353)] = 29552, - [SMALL_STATE(2354)] = 29559, - [SMALL_STATE(2355)] = 29566, - [SMALL_STATE(2356)] = 29573, - [SMALL_STATE(2357)] = 29580, - [SMALL_STATE(2358)] = 29587, - [SMALL_STATE(2359)] = 29594, - [SMALL_STATE(2360)] = 29601, - [SMALL_STATE(2361)] = 29608, - [SMALL_STATE(2362)] = 29615, - [SMALL_STATE(2363)] = 29622, - [SMALL_STATE(2364)] = 29629, - [SMALL_STATE(2365)] = 29636, - [SMALL_STATE(2366)] = 29643, - [SMALL_STATE(2367)] = 29650, - [SMALL_STATE(2368)] = 29657, - [SMALL_STATE(2369)] = 29664, - [SMALL_STATE(2370)] = 29671, - [SMALL_STATE(2371)] = 29678, - [SMALL_STATE(2372)] = 29685, - [SMALL_STATE(2373)] = 29692, - [SMALL_STATE(2374)] = 29699, - [SMALL_STATE(2375)] = 29706, + [SMALL_STATE(1723)] = 0, + [SMALL_STATE(1724)] = 76, + [SMALL_STATE(1725)] = 152, + [SMALL_STATE(1726)] = 226, + [SMALL_STATE(1727)] = 301, + [SMALL_STATE(1728)] = 376, + [SMALL_STATE(1729)] = 451, + [SMALL_STATE(1730)] = 526, + [SMALL_STATE(1731)] = 601, + [SMALL_STATE(1732)] = 676, + [SMALL_STATE(1733)] = 751, + [SMALL_STATE(1734)] = 826, + [SMALL_STATE(1735)] = 901, + [SMALL_STATE(1736)] = 976, + [SMALL_STATE(1737)] = 1051, + [SMALL_STATE(1738)] = 1119, + [SMALL_STATE(1739)] = 1187, + [SMALL_STATE(1740)] = 1255, + [SMALL_STATE(1741)] = 1323, + [SMALL_STATE(1742)] = 1391, + [SMALL_STATE(1743)] = 1459, + [SMALL_STATE(1744)] = 1527, + [SMALL_STATE(1745)] = 1595, + [SMALL_STATE(1746)] = 1668, + [SMALL_STATE(1747)] = 1741, + [SMALL_STATE(1748)] = 1812, + [SMALL_STATE(1749)] = 1885, + [SMALL_STATE(1750)] = 1958, + [SMALL_STATE(1751)] = 2031, + [SMALL_STATE(1752)] = 2102, + [SMALL_STATE(1753)] = 2175, + [SMALL_STATE(1754)] = 2260, + [SMALL_STATE(1755)] = 2326, + [SMALL_STATE(1756)] = 2413, + [SMALL_STATE(1757)] = 2500, + [SMALL_STATE(1758)] = 2587, + [SMALL_STATE(1759)] = 2674, + [SMALL_STATE(1760)] = 2761, + [SMALL_STATE(1761)] = 2848, + [SMALL_STATE(1762)] = 2915, + [SMALL_STATE(1763)] = 3002, + [SMALL_STATE(1764)] = 3065, + [SMALL_STATE(1765)] = 3152, + [SMALL_STATE(1766)] = 3239, + [SMALL_STATE(1767)] = 3301, + [SMALL_STATE(1768)] = 3363, + [SMALL_STATE(1769)] = 3443, + [SMALL_STATE(1770)] = 3523, + [SMALL_STATE(1771)] = 3587, + [SMALL_STATE(1772)] = 3667, + [SMALL_STATE(1773)] = 3747, + [SMALL_STATE(1774)] = 3809, + [SMALL_STATE(1775)] = 3871, + [SMALL_STATE(1776)] = 3951, + [SMALL_STATE(1777)] = 4013, + [SMALL_STATE(1778)] = 4075, + [SMALL_STATE(1779)] = 4155, + [SMALL_STATE(1780)] = 4217, + [SMALL_STATE(1781)] = 4283, + [SMALL_STATE(1782)] = 4363, + [SMALL_STATE(1783)] = 4443, + [SMALL_STATE(1784)] = 4505, + [SMALL_STATE(1785)] = 4585, + [SMALL_STATE(1786)] = 4647, + [SMALL_STATE(1787)] = 4709, + [SMALL_STATE(1788)] = 4771, + [SMALL_STATE(1789)] = 4833, + [SMALL_STATE(1790)] = 4897, + [SMALL_STATE(1791)] = 4977, + [SMALL_STATE(1792)] = 5039, + [SMALL_STATE(1793)] = 5119, + [SMALL_STATE(1794)] = 5181, + [SMALL_STATE(1795)] = 5261, + [SMALL_STATE(1796)] = 5341, + [SMALL_STATE(1797)] = 5421, + [SMALL_STATE(1798)] = 5501, + [SMALL_STATE(1799)] = 5581, + [SMALL_STATE(1800)] = 5661, + [SMALL_STATE(1801)] = 5741, + [SMALL_STATE(1802)] = 5821, + [SMALL_STATE(1803)] = 5883, + [SMALL_STATE(1804)] = 5963, + [SMALL_STATE(1805)] = 6025, + [SMALL_STATE(1806)] = 6087, + [SMALL_STATE(1807)] = 6148, + [SMALL_STATE(1808)] = 6209, + [SMALL_STATE(1809)] = 6270, + [SMALL_STATE(1810)] = 6331, + [SMALL_STATE(1811)] = 6392, + [SMALL_STATE(1812)] = 6453, + [SMALL_STATE(1813)] = 6514, + [SMALL_STATE(1814)] = 6575, + [SMALL_STATE(1815)] = 6636, + [SMALL_STATE(1816)] = 6697, + [SMALL_STATE(1817)] = 6758, + [SMALL_STATE(1818)] = 6819, + [SMALL_STATE(1819)] = 6880, + [SMALL_STATE(1820)] = 6941, + [SMALL_STATE(1821)] = 7002, + [SMALL_STATE(1822)] = 7063, + [SMALL_STATE(1823)] = 7124, + [SMALL_STATE(1824)] = 7185, + [SMALL_STATE(1825)] = 7246, + [SMALL_STATE(1826)] = 7307, + [SMALL_STATE(1827)] = 7368, + [SMALL_STATE(1828)] = 7429, + [SMALL_STATE(1829)] = 7490, + [SMALL_STATE(1830)] = 7551, + [SMALL_STATE(1831)] = 7612, + [SMALL_STATE(1832)] = 7673, + [SMALL_STATE(1833)] = 7734, + [SMALL_STATE(1834)] = 7795, + [SMALL_STATE(1835)] = 7856, + [SMALL_STATE(1836)] = 7917, + [SMALL_STATE(1837)] = 7978, + [SMALL_STATE(1838)] = 8039, + [SMALL_STATE(1839)] = 8100, + [SMALL_STATE(1840)] = 8163, + [SMALL_STATE(1841)] = 8226, + [SMALL_STATE(1842)] = 8287, + [SMALL_STATE(1843)] = 8348, + [SMALL_STATE(1844)] = 8428, + [SMALL_STATE(1845)] = 8505, + [SMALL_STATE(1846)] = 8582, + [SMALL_STATE(1847)] = 8659, + [SMALL_STATE(1848)] = 8736, + [SMALL_STATE(1849)] = 8813, + [SMALL_STATE(1850)] = 8890, + [SMALL_STATE(1851)] = 8967, + [SMALL_STATE(1852)] = 9044, + [SMALL_STATE(1853)] = 9121, + [SMALL_STATE(1854)] = 9198, + [SMALL_STATE(1855)] = 9275, + [SMALL_STATE(1856)] = 9352, + [SMALL_STATE(1857)] = 9429, + [SMALL_STATE(1858)] = 9506, + [SMALL_STATE(1859)] = 9583, + [SMALL_STATE(1860)] = 9660, + [SMALL_STATE(1861)] = 9737, + [SMALL_STATE(1862)] = 9814, + [SMALL_STATE(1863)] = 9891, + [SMALL_STATE(1864)] = 9968, + [SMALL_STATE(1865)] = 10045, + [SMALL_STATE(1866)] = 10122, + [SMALL_STATE(1867)] = 10199, + [SMALL_STATE(1868)] = 10276, + [SMALL_STATE(1869)] = 10353, + [SMALL_STATE(1870)] = 10427, + [SMALL_STATE(1871)] = 10501, + [SMALL_STATE(1872)] = 10575, + [SMALL_STATE(1873)] = 10649, + [SMALL_STATE(1874)] = 10723, + [SMALL_STATE(1875)] = 10797, + [SMALL_STATE(1876)] = 10871, + [SMALL_STATE(1877)] = 10945, + [SMALL_STATE(1878)] = 11019, + [SMALL_STATE(1879)] = 11093, + [SMALL_STATE(1880)] = 11167, + [SMALL_STATE(1881)] = 11241, + [SMALL_STATE(1882)] = 11315, + [SMALL_STATE(1883)] = 11389, + [SMALL_STATE(1884)] = 11463, + [SMALL_STATE(1885)] = 11537, + [SMALL_STATE(1886)] = 11611, + [SMALL_STATE(1887)] = 11685, + [SMALL_STATE(1888)] = 11759, + [SMALL_STATE(1889)] = 11833, + [SMALL_STATE(1890)] = 11907, + [SMALL_STATE(1891)] = 11981, + [SMALL_STATE(1892)] = 12055, + [SMALL_STATE(1893)] = 12129, + [SMALL_STATE(1894)] = 12203, + [SMALL_STATE(1895)] = 12277, + [SMALL_STATE(1896)] = 12351, + [SMALL_STATE(1897)] = 12425, + [SMALL_STATE(1898)] = 12499, + [SMALL_STATE(1899)] = 12573, + [SMALL_STATE(1900)] = 12647, + [SMALL_STATE(1901)] = 12721, + [SMALL_STATE(1902)] = 12795, + [SMALL_STATE(1903)] = 12869, + [SMALL_STATE(1904)] = 12943, + [SMALL_STATE(1905)] = 13017, + [SMALL_STATE(1906)] = 13091, + [SMALL_STATE(1907)] = 13165, + [SMALL_STATE(1908)] = 13239, + [SMALL_STATE(1909)] = 13301, + [SMALL_STATE(1910)] = 13375, + [SMALL_STATE(1911)] = 13449, + [SMALL_STATE(1912)] = 13523, + [SMALL_STATE(1913)] = 13597, + [SMALL_STATE(1914)] = 13671, + [SMALL_STATE(1915)] = 13745, + [SMALL_STATE(1916)] = 13819, + [SMALL_STATE(1917)] = 13893, + [SMALL_STATE(1918)] = 13967, + [SMALL_STATE(1919)] = 14041, + [SMALL_STATE(1920)] = 14115, + [SMALL_STATE(1921)] = 14189, + [SMALL_STATE(1922)] = 14263, + [SMALL_STATE(1923)] = 14337, + [SMALL_STATE(1924)] = 14399, + [SMALL_STATE(1925)] = 14473, + [SMALL_STATE(1926)] = 14547, + [SMALL_STATE(1927)] = 14621, + [SMALL_STATE(1928)] = 14695, + [SMALL_STATE(1929)] = 14769, + [SMALL_STATE(1930)] = 14843, + [SMALL_STATE(1931)] = 14917, + [SMALL_STATE(1932)] = 14991, + [SMALL_STATE(1933)] = 15065, + [SMALL_STATE(1934)] = 15139, + [SMALL_STATE(1935)] = 15213, + [SMALL_STATE(1936)] = 15287, + [SMALL_STATE(1937)] = 15361, + [SMALL_STATE(1938)] = 15435, + [SMALL_STATE(1939)] = 15509, + [SMALL_STATE(1940)] = 15583, + [SMALL_STATE(1941)] = 15657, + [SMALL_STATE(1942)] = 15731, + [SMALL_STATE(1943)] = 15805, + [SMALL_STATE(1944)] = 15879, + [SMALL_STATE(1945)] = 15953, + [SMALL_STATE(1946)] = 16027, + [SMALL_STATE(1947)] = 16101, + [SMALL_STATE(1948)] = 16175, + [SMALL_STATE(1949)] = 16249, + [SMALL_STATE(1950)] = 16323, + [SMALL_STATE(1951)] = 16397, + [SMALL_STATE(1952)] = 16471, + [SMALL_STATE(1953)] = 16545, + [SMALL_STATE(1954)] = 16619, + [SMALL_STATE(1955)] = 16693, + [SMALL_STATE(1956)] = 16767, + [SMALL_STATE(1957)] = 16841, + [SMALL_STATE(1958)] = 16915, + [SMALL_STATE(1959)] = 16989, + [SMALL_STATE(1960)] = 17063, + [SMALL_STATE(1961)] = 17137, + [SMALL_STATE(1962)] = 17211, + [SMALL_STATE(1963)] = 17285, + [SMALL_STATE(1964)] = 17359, + [SMALL_STATE(1965)] = 17433, + [SMALL_STATE(1966)] = 17507, + [SMALL_STATE(1967)] = 17578, + [SMALL_STATE(1968)] = 17649, + [SMALL_STATE(1969)] = 17720, + [SMALL_STATE(1970)] = 17791, + [SMALL_STATE(1971)] = 17862, + [SMALL_STATE(1972)] = 17933, + [SMALL_STATE(1973)] = 18004, + [SMALL_STATE(1974)] = 18075, + [SMALL_STATE(1975)] = 18146, + [SMALL_STATE(1976)] = 18217, + [SMALL_STATE(1977)] = 18288, + [SMALL_STATE(1978)] = 18359, + [SMALL_STATE(1979)] = 18430, + [SMALL_STATE(1980)] = 18501, + [SMALL_STATE(1981)] = 18572, + [SMALL_STATE(1982)] = 18643, + [SMALL_STATE(1983)] = 18714, + [SMALL_STATE(1984)] = 18785, + [SMALL_STATE(1985)] = 18856, + [SMALL_STATE(1986)] = 18927, + [SMALL_STATE(1987)] = 18998, + [SMALL_STATE(1988)] = 19069, + [SMALL_STATE(1989)] = 19140, + [SMALL_STATE(1990)] = 19211, + [SMALL_STATE(1991)] = 19282, + [SMALL_STATE(1992)] = 19353, + [SMALL_STATE(1993)] = 19424, + [SMALL_STATE(1994)] = 19495, + [SMALL_STATE(1995)] = 19566, + [SMALL_STATE(1996)] = 19637, + [SMALL_STATE(1997)] = 19708, + [SMALL_STATE(1998)] = 19779, + [SMALL_STATE(1999)] = 19850, + [SMALL_STATE(2000)] = 19921, + [SMALL_STATE(2001)] = 19992, + [SMALL_STATE(2002)] = 20063, + [SMALL_STATE(2003)] = 20122, + [SMALL_STATE(2004)] = 20193, + [SMALL_STATE(2005)] = 20264, + [SMALL_STATE(2006)] = 20335, + [SMALL_STATE(2007)] = 20406, + [SMALL_STATE(2008)] = 20477, + [SMALL_STATE(2009)] = 20548, + [SMALL_STATE(2010)] = 20619, + [SMALL_STATE(2011)] = 20690, + [SMALL_STATE(2012)] = 20761, + [SMALL_STATE(2013)] = 20832, + [SMALL_STATE(2014)] = 20903, + [SMALL_STATE(2015)] = 20974, + [SMALL_STATE(2016)] = 21045, + [SMALL_STATE(2017)] = 21106, + [SMALL_STATE(2018)] = 21177, + [SMALL_STATE(2019)] = 21248, + [SMALL_STATE(2020)] = 21319, + [SMALL_STATE(2021)] = 21390, + [SMALL_STATE(2022)] = 21461, + [SMALL_STATE(2023)] = 21532, + [SMALL_STATE(2024)] = 21603, + [SMALL_STATE(2025)] = 21674, + [SMALL_STATE(2026)] = 21745, + [SMALL_STATE(2027)] = 21816, + [SMALL_STATE(2028)] = 21887, + [SMALL_STATE(2029)] = 21958, + [SMALL_STATE(2030)] = 22029, + [SMALL_STATE(2031)] = 22100, + [SMALL_STATE(2032)] = 22171, + [SMALL_STATE(2033)] = 22242, + [SMALL_STATE(2034)] = 22313, + [SMALL_STATE(2035)] = 22384, + [SMALL_STATE(2036)] = 22455, + [SMALL_STATE(2037)] = 22526, + [SMALL_STATE(2038)] = 22597, + [SMALL_STATE(2039)] = 22668, + [SMALL_STATE(2040)] = 22739, + [SMALL_STATE(2041)] = 22810, + [SMALL_STATE(2042)] = 22881, + [SMALL_STATE(2043)] = 22952, + [SMALL_STATE(2044)] = 23023, + [SMALL_STATE(2045)] = 23094, + [SMALL_STATE(2046)] = 23165, + [SMALL_STATE(2047)] = 23236, + [SMALL_STATE(2048)] = 23307, + [SMALL_STATE(2049)] = 23378, + [SMALL_STATE(2050)] = 23449, + [SMALL_STATE(2051)] = 23520, + [SMALL_STATE(2052)] = 23591, + [SMALL_STATE(2053)] = 23662, + [SMALL_STATE(2054)] = 23733, + [SMALL_STATE(2055)] = 23804, + [SMALL_STATE(2056)] = 23875, + [SMALL_STATE(2057)] = 23946, + [SMALL_STATE(2058)] = 24017, + [SMALL_STATE(2059)] = 24088, + [SMALL_STATE(2060)] = 24147, + [SMALL_STATE(2061)] = 24218, + [SMALL_STATE(2062)] = 24289, + [SMALL_STATE(2063)] = 24360, + [SMALL_STATE(2064)] = 24431, + [SMALL_STATE(2065)] = 24502, + [SMALL_STATE(2066)] = 24573, + [SMALL_STATE(2067)] = 24644, + [SMALL_STATE(2068)] = 24705, + [SMALL_STATE(2069)] = 24776, + [SMALL_STATE(2070)] = 24847, + [SMALL_STATE(2071)] = 24918, + [SMALL_STATE(2072)] = 24974, + [SMALL_STATE(2073)] = 25038, + [SMALL_STATE(2074)] = 25094, + [SMALL_STATE(2075)] = 25152, + [SMALL_STATE(2076)] = 25212, + [SMALL_STATE(2077)] = 25268, + [SMALL_STATE(2078)] = 25324, + [SMALL_STATE(2079)] = 25380, + [SMALL_STATE(2080)] = 25436, + [SMALL_STATE(2081)] = 25492, + [SMALL_STATE(2082)] = 25548, + [SMALL_STATE(2083)] = 25604, + [SMALL_STATE(2084)] = 25660, + [SMALL_STATE(2085)] = 25716, + [SMALL_STATE(2086)] = 25772, + [SMALL_STATE(2087)] = 25838, + [SMALL_STATE(2088)] = 25896, + [SMALL_STATE(2089)] = 25952, + [SMALL_STATE(2090)] = 26008, + [SMALL_STATE(2091)] = 26064, + [SMALL_STATE(2092)] = 26130, + [SMALL_STATE(2093)] = 26186, + [SMALL_STATE(2094)] = 26242, + [SMALL_STATE(2095)] = 26298, + [SMALL_STATE(2096)] = 26354, + [SMALL_STATE(2097)] = 26410, + [SMALL_STATE(2098)] = 26466, + [SMALL_STATE(2099)] = 26522, + [SMALL_STATE(2100)] = 26578, + [SMALL_STATE(2101)] = 26634, + [SMALL_STATE(2102)] = 26702, + [SMALL_STATE(2103)] = 26758, + [SMALL_STATE(2104)] = 26814, + [SMALL_STATE(2105)] = 26882, + [SMALL_STATE(2106)] = 26938, + [SMALL_STATE(2107)] = 26994, + [SMALL_STATE(2108)] = 27050, + [SMALL_STATE(2109)] = 27106, + [SMALL_STATE(2110)] = 27162, + [SMALL_STATE(2111)] = 27218, + [SMALL_STATE(2112)] = 27284, + [SMALL_STATE(2113)] = 27340, + [SMALL_STATE(2114)] = 27396, + [SMALL_STATE(2115)] = 27452, + [SMALL_STATE(2116)] = 27508, + [SMALL_STATE(2117)] = 27564, + [SMALL_STATE(2118)] = 27632, + [SMALL_STATE(2119)] = 27688, + [SMALL_STATE(2120)] = 27744, + [SMALL_STATE(2121)] = 27800, + [SMALL_STATE(2122)] = 27856, + [SMALL_STATE(2123)] = 27912, + [SMALL_STATE(2124)] = 27968, + [SMALL_STATE(2125)] = 28024, + [SMALL_STATE(2126)] = 28080, + [SMALL_STATE(2127)] = 28136, + [SMALL_STATE(2128)] = 28192, + [SMALL_STATE(2129)] = 28248, + [SMALL_STATE(2130)] = 28304, + [SMALL_STATE(2131)] = 28360, + [SMALL_STATE(2132)] = 28418, + [SMALL_STATE(2133)] = 28484, + [SMALL_STATE(2134)] = 28540, + [SMALL_STATE(2135)] = 28608, + [SMALL_STATE(2136)] = 28664, + [SMALL_STATE(2137)] = 28720, + [SMALL_STATE(2138)] = 28788, + [SMALL_STATE(2139)] = 28843, + [SMALL_STATE(2140)] = 28906, + [SMALL_STATE(2141)] = 28965, + [SMALL_STATE(2142)] = 29020, + [SMALL_STATE(2143)] = 29075, + [SMALL_STATE(2144)] = 29130, + [SMALL_STATE(2145)] = 29185, + [SMALL_STATE(2146)] = 29240, + [SMALL_STATE(2147)] = 29295, + [SMALL_STATE(2148)] = 29350, + [SMALL_STATE(2149)] = 29405, + [SMALL_STATE(2150)] = 29460, + [SMALL_STATE(2151)] = 29515, + [SMALL_STATE(2152)] = 29570, + [SMALL_STATE(2153)] = 29625, + [SMALL_STATE(2154)] = 29680, + [SMALL_STATE(2155)] = 29735, + [SMALL_STATE(2156)] = 29790, + [SMALL_STATE(2157)] = 29845, + [SMALL_STATE(2158)] = 29900, + [SMALL_STATE(2159)] = 29955, + [SMALL_STATE(2160)] = 30010, + [SMALL_STATE(2161)] = 30065, + [SMALL_STATE(2162)] = 30120, + [SMALL_STATE(2163)] = 30175, + [SMALL_STATE(2164)] = 30230, + [SMALL_STATE(2165)] = 30285, + [SMALL_STATE(2166)] = 30340, + [SMALL_STATE(2167)] = 30395, + [SMALL_STATE(2168)] = 30450, + [SMALL_STATE(2169)] = 30505, + [SMALL_STATE(2170)] = 30560, + [SMALL_STATE(2171)] = 30615, + [SMALL_STATE(2172)] = 30670, + [SMALL_STATE(2173)] = 30725, + [SMALL_STATE(2174)] = 30780, + [SMALL_STATE(2175)] = 30835, + [SMALL_STATE(2176)] = 30890, + [SMALL_STATE(2177)] = 30945, + [SMALL_STATE(2178)] = 31000, + [SMALL_STATE(2179)] = 31055, + [SMALL_STATE(2180)] = 31110, + [SMALL_STATE(2181)] = 31165, + [SMALL_STATE(2182)] = 31220, + [SMALL_STATE(2183)] = 31275, + [SMALL_STATE(2184)] = 31330, + [SMALL_STATE(2185)] = 31385, + [SMALL_STATE(2186)] = 31440, + [SMALL_STATE(2187)] = 31495, + [SMALL_STATE(2188)] = 31550, + [SMALL_STATE(2189)] = 31605, + [SMALL_STATE(2190)] = 31660, + [SMALL_STATE(2191)] = 31715, + [SMALL_STATE(2192)] = 31770, + [SMALL_STATE(2193)] = 31825, + [SMALL_STATE(2194)] = 31880, + [SMALL_STATE(2195)] = 31935, + [SMALL_STATE(2196)] = 31990, + [SMALL_STATE(2197)] = 32045, + [SMALL_STATE(2198)] = 32100, + [SMALL_STATE(2199)] = 32155, + [SMALL_STATE(2200)] = 32210, + [SMALL_STATE(2201)] = 32265, + [SMALL_STATE(2202)] = 32320, + [SMALL_STATE(2203)] = 32375, + [SMALL_STATE(2204)] = 32430, + [SMALL_STATE(2205)] = 32485, + [SMALL_STATE(2206)] = 32540, + [SMALL_STATE(2207)] = 32595, + [SMALL_STATE(2208)] = 32650, + [SMALL_STATE(2209)] = 32705, + [SMALL_STATE(2210)] = 32760, + [SMALL_STATE(2211)] = 32815, + [SMALL_STATE(2212)] = 32870, + [SMALL_STATE(2213)] = 32925, + [SMALL_STATE(2214)] = 32980, + [SMALL_STATE(2215)] = 33035, + [SMALL_STATE(2216)] = 33090, + [SMALL_STATE(2217)] = 33145, + [SMALL_STATE(2218)] = 33237, + [SMALL_STATE(2219)] = 33305, + [SMALL_STATE(2220)] = 33371, + [SMALL_STATE(2221)] = 33441, + [SMALL_STATE(2222)] = 33525, + [SMALL_STATE(2223)] = 33605, + [SMALL_STATE(2224)] = 33683, + [SMALL_STATE(2225)] = 33759, + [SMALL_STATE(2226)] = 33831, + [SMALL_STATE(2227)] = 33899, + [SMALL_STATE(2228)] = 33965, + [SMALL_STATE(2229)] = 34035, + [SMALL_STATE(2230)] = 34119, + [SMALL_STATE(2231)] = 34199, + [SMALL_STATE(2232)] = 34277, + [SMALL_STATE(2233)] = 34353, + [SMALL_STATE(2234)] = 34425, + [SMALL_STATE(2235)] = 34516, + [SMALL_STATE(2236)] = 34568, + [SMALL_STATE(2237)] = 34620, + [SMALL_STATE(2238)] = 34672, + [SMALL_STATE(2239)] = 34726, + [SMALL_STATE(2240)] = 34778, + [SMALL_STATE(2241)] = 34845, + [SMALL_STATE(2242)] = 34908, + [SMALL_STATE(2243)] = 34985, + [SMALL_STATE(2244)] = 35066, + [SMALL_STATE(2245)] = 35139, + [SMALL_STATE(2246)] = 35208, + [SMALL_STATE(2247)] = 35273, + [SMALL_STATE(2248)] = 35348, + [SMALL_STATE(2249)] = 35437, + [SMALL_STATE(2250)] = 35488, + [SMALL_STATE(2251)] = 35555, + [SMALL_STATE(2252)] = 35618, + [SMALL_STATE(2253)] = 35699, + [SMALL_STATE(2254)] = 35776, + [SMALL_STATE(2255)] = 35851, + [SMALL_STATE(2256)] = 35924, + [SMALL_STATE(2257)] = 35993, + [SMALL_STATE(2258)] = 36058, + [SMALL_STATE(2259)] = 36122, + [SMALL_STATE(2260)] = 36212, + [SMALL_STATE(2261)] = 36300, + [SMALL_STATE(2262)] = 36386, + [SMALL_STATE(2263)] = 36448, + [SMALL_STATE(2264)] = 36514, + [SMALL_STATE(2265)] = 36594, + [SMALL_STATE(2266)] = 36670, + [SMALL_STATE(2267)] = 36744, + [SMALL_STATE(2268)] = 36816, + [SMALL_STATE(2269)] = 36884, + [SMALL_STATE(2270)] = 36946, + [SMALL_STATE(2271)] = 37012, + [SMALL_STATE(2272)] = 37092, + [SMALL_STATE(2273)] = 37168, + [SMALL_STATE(2274)] = 37242, + [SMALL_STATE(2275)] = 37314, + [SMALL_STATE(2276)] = 37382, + [SMALL_STATE(2277)] = 37446, + [SMALL_STATE(2278)] = 37500, + [SMALL_STATE(2279)] = 37590, + [SMALL_STATE(2280)] = 37639, + [SMALL_STATE(2281)] = 37724, + [SMALL_STATE(2282)] = 37773, + [SMALL_STATE(2283)] = 37822, + [SMALL_STATE(2284)] = 37871, + [SMALL_STATE(2285)] = 37920, + [SMALL_STATE(2286)] = 37969, + [SMALL_STATE(2287)] = 38018, + [SMALL_STATE(2288)] = 38067, + [SMALL_STATE(2289)] = 38116, + [SMALL_STATE(2290)] = 38171, + [SMALL_STATE(2291)] = 38219, + [SMALL_STATE(2292)] = 38275, + [SMALL_STATE(2293)] = 38337, + [SMALL_STATE(2294)] = 38413, + [SMALL_STATE(2295)] = 38485, + [SMALL_STATE(2296)] = 38555, + [SMALL_STATE(2297)] = 38623, + [SMALL_STATE(2298)] = 38687, + [SMALL_STATE(2299)] = 38745, + [SMALL_STATE(2300)] = 38821, + [SMALL_STATE(2301)] = 38893, + [SMALL_STATE(2302)] = 38963, + [SMALL_STATE(2303)] = 39031, + [SMALL_STATE(2304)] = 39093, + [SMALL_STATE(2305)] = 39151, + [SMALL_STATE(2306)] = 39207, + [SMALL_STATE(2307)] = 39271, + [SMALL_STATE(2308)] = 39323, + [SMALL_STATE(2309)] = 39378, + [SMALL_STATE(2310)] = 39433, + [SMALL_STATE(2311)] = 39514, + [SMALL_STATE(2312)] = 39591, + [SMALL_STATE(2313)] = 39652, + [SMALL_STATE(2314)] = 39725, + [SMALL_STATE(2315)] = 39796, + [SMALL_STATE(2316)] = 39865, + [SMALL_STATE(2317)] = 39930, + [SMALL_STATE(2318)] = 39987, + [SMALL_STATE(2319)] = 40064, + [SMALL_STATE(2320)] = 40125, + [SMALL_STATE(2321)] = 40198, + [SMALL_STATE(2322)] = 40269, + [SMALL_STATE(2323)] = 40338, + [SMALL_STATE(2324)] = 40403, + [SMALL_STATE(2325)] = 40460, + [SMALL_STATE(2326)] = 40546, + [SMALL_STATE(2327)] = 40632, + [SMALL_STATE(2328)] = 40718, + [SMALL_STATE(2329)] = 40804, + [SMALL_STATE(2330)] = 40890, + [SMALL_STATE(2331)] = 40976, + [SMALL_STATE(2332)] = 41062, + [SMALL_STATE(2333)] = 41150, + [SMALL_STATE(2334)] = 41236, + [SMALL_STATE(2335)] = 41322, + [SMALL_STATE(2336)] = 41408, + [SMALL_STATE(2337)] = 41494, + [SMALL_STATE(2338)] = 41580, + [SMALL_STATE(2339)] = 41668, + [SMALL_STATE(2340)] = 41754, + [SMALL_STATE(2341)] = 41840, + [SMALL_STATE(2342)] = 41926, + [SMALL_STATE(2343)] = 42012, + [SMALL_STATE(2344)] = 42100, + [SMALL_STATE(2345)] = 42183, + [SMALL_STATE(2346)] = 42266, + [SMALL_STATE(2347)] = 42349, + [SMALL_STATE(2348)] = 42432, + [SMALL_STATE(2349)] = 42515, + [SMALL_STATE(2350)] = 42590, + [SMALL_STATE(2351)] = 42641, + [SMALL_STATE(2352)] = 42686, + [SMALL_STATE(2353)] = 42739, + [SMALL_STATE(2354)] = 42822, + [SMALL_STATE(2355)] = 42905, + [SMALL_STATE(2356)] = 42984, + [SMALL_STATE(2357)] = 43067, + [SMALL_STATE(2358)] = 43112, + [SMALL_STATE(2359)] = 43195, + [SMALL_STATE(2360)] = 43278, + [SMALL_STATE(2361)] = 43323, + [SMALL_STATE(2362)] = 43406, + [SMALL_STATE(2363)] = 43489, + [SMALL_STATE(2364)] = 43542, + [SMALL_STATE(2365)] = 43617, + [SMALL_STATE(2366)] = 43692, + [SMALL_STATE(2367)] = 43763, + [SMALL_STATE(2368)] = 43832, + [SMALL_STATE(2369)] = 43899, + [SMALL_STATE(2370)] = 43962, + [SMALL_STATE(2371)] = 44017, + [SMALL_STATE(2372)] = 44100, + [SMALL_STATE(2373)] = 44179, + [SMALL_STATE(2374)] = 44262, + [SMALL_STATE(2375)] = 44315, + [SMALL_STATE(2376)] = 44374, + [SMALL_STATE(2377)] = 44449, + [SMALL_STATE(2378)] = 44520, + [SMALL_STATE(2379)] = 44589, + [SMALL_STATE(2380)] = 44672, + [SMALL_STATE(2381)] = 44739, + [SMALL_STATE(2382)] = 44802, + [SMALL_STATE(2383)] = 44857, + [SMALL_STATE(2384)] = 44940, + [SMALL_STATE(2385)] = 44985, + [SMALL_STATE(2386)] = 45060, + [SMALL_STATE(2387)] = 45119, + [SMALL_STATE(2388)] = 45199, + [SMALL_STATE(2389)] = 45279, + [SMALL_STATE(2390)] = 45359, + [SMALL_STATE(2391)] = 45439, + [SMALL_STATE(2392)] = 45519, + [SMALL_STATE(2393)] = 45599, + [SMALL_STATE(2394)] = 45679, + [SMALL_STATE(2395)] = 45759, + [SMALL_STATE(2396)] = 45807, + [SMALL_STATE(2397)] = 45887, + [SMALL_STATE(2398)] = 45965, + [SMALL_STATE(2399)] = 46015, + [SMALL_STATE(2400)] = 46063, + [SMALL_STATE(2401)] = 46143, + [SMALL_STATE(2402)] = 46191, + [SMALL_STATE(2403)] = 46239, + [SMALL_STATE(2404)] = 46319, + [SMALL_STATE(2405)] = 46399, + [SMALL_STATE(2406)] = 46447, + [SMALL_STATE(2407)] = 46527, + [SMALL_STATE(2408)] = 46607, + [SMALL_STATE(2409)] = 46655, + [SMALL_STATE(2410)] = 46735, + [SMALL_STATE(2411)] = 46815, + [SMALL_STATE(2412)] = 46895, + [SMALL_STATE(2413)] = 46975, + [SMALL_STATE(2414)] = 47025, + [SMALL_STATE(2415)] = 47105, + [SMALL_STATE(2416)] = 47185, + [SMALL_STATE(2417)] = 47265, + [SMALL_STATE(2418)] = 47345, + [SMALL_STATE(2419)] = 47396, + [SMALL_STATE(2420)] = 47473, + [SMALL_STATE(2421)] = 47550, + [SMALL_STATE(2422)] = 47623, + [SMALL_STATE(2423)] = 47700, + [SMALL_STATE(2424)] = 47777, + [SMALL_STATE(2425)] = 47824, + [SMALL_STATE(2426)] = 47897, + [SMALL_STATE(2427)] = 47974, + [SMALL_STATE(2428)] = 48051, + [SMALL_STATE(2429)] = 48124, + [SMALL_STATE(2430)] = 48201, + [SMALL_STATE(2431)] = 48278, + [SMALL_STATE(2432)] = 48355, + [SMALL_STATE(2433)] = 48432, + [SMALL_STATE(2434)] = 48509, + [SMALL_STATE(2435)] = 48586, + [SMALL_STATE(2436)] = 48659, + [SMALL_STATE(2437)] = 48706, + [SMALL_STATE(2438)] = 48779, + [SMALL_STATE(2439)] = 48856, + [SMALL_STATE(2440)] = 48903, + [SMALL_STATE(2441)] = 48980, + [SMALL_STATE(2442)] = 49057, + [SMALL_STATE(2443)] = 49134, + [SMALL_STATE(2444)] = 49207, + [SMALL_STATE(2445)] = 49284, + [SMALL_STATE(2446)] = 49357, + [SMALL_STATE(2447)] = 49434, + [SMALL_STATE(2448)] = 49507, + [SMALL_STATE(2449)] = 49584, + [SMALL_STATE(2450)] = 49635, + [SMALL_STATE(2451)] = 49712, + [SMALL_STATE(2452)] = 49789, + [SMALL_STATE(2453)] = 49866, + [SMALL_STATE(2454)] = 49943, + [SMALL_STATE(2455)] = 50020, + [SMALL_STATE(2456)] = 50097, + [SMALL_STATE(2457)] = 50174, + [SMALL_STATE(2458)] = 50251, + [SMALL_STATE(2459)] = 50328, + [SMALL_STATE(2460)] = 50405, + [SMALL_STATE(2461)] = 50456, + [SMALL_STATE(2462)] = 50503, + [SMALL_STATE(2463)] = 50580, + [SMALL_STATE(2464)] = 50644, + [SMALL_STATE(2465)] = 50706, + [SMALL_STATE(2466)] = 50746, + [SMALL_STATE(2467)] = 50816, + [SMALL_STATE(2468)] = 50892, + [SMALL_STATE(2469)] = 50958, + [SMALL_STATE(2470)] = 51028, + [SMALL_STATE(2471)] = 51080, + [SMALL_STATE(2472)] = 51146, + [SMALL_STATE(2473)] = 51208, + [SMALL_STATE(2474)] = 51266, + [SMALL_STATE(2475)] = 51316, + [SMALL_STATE(2476)] = 51366, + [SMALL_STATE(2477)] = 51442, + [SMALL_STATE(2478)] = 51518, + [SMALL_STATE(2479)] = 51576, + [SMALL_STATE(2480)] = 51640, + [SMALL_STATE(2481)] = 51682, + [SMALL_STATE(2482)] = 51734, + [SMALL_STATE(2483)] = 51790, + [SMALL_STATE(2484)] = 51846, + [SMALL_STATE(2485)] = 51890, + [SMALL_STATE(2486)] = 51961, + [SMALL_STATE(2487)] = 52032, + [SMALL_STATE(2488)] = 52103, + [SMALL_STATE(2489)] = 52174, + [SMALL_STATE(2490)] = 52245, + [SMALL_STATE(2491)] = 52316, + [SMALL_STATE(2492)] = 52387, + [SMALL_STATE(2493)] = 52457, + [SMALL_STATE(2494)] = 52527, + [SMALL_STATE(2495)] = 52560, + [SMALL_STATE(2496)] = 52593, + [SMALL_STATE(2497)] = 52626, + [SMALL_STATE(2498)] = 52659, + [SMALL_STATE(2499)] = 52692, + [SMALL_STATE(2500)] = 52725, + [SMALL_STATE(2501)] = 52755, + [SMALL_STATE(2502)] = 52785, + [SMALL_STATE(2503)] = 52815, + [SMALL_STATE(2504)] = 52845, + [SMALL_STATE(2505)] = 52865, + [SMALL_STATE(2506)] = 52882, + [SMALL_STATE(2507)] = 52899, + [SMALL_STATE(2508)] = 52918, + [SMALL_STATE(2509)] = 52937, + [SMALL_STATE(2510)] = 52956, + [SMALL_STATE(2511)] = 52982, + [SMALL_STATE(2512)] = 53008, + [SMALL_STATE(2513)] = 53034, + [SMALL_STATE(2514)] = 53060, + [SMALL_STATE(2515)] = 53082, + [SMALL_STATE(2516)] = 53104, + [SMALL_STATE(2517)] = 53130, + [SMALL_STATE(2518)] = 53156, + [SMALL_STATE(2519)] = 53182, + [SMALL_STATE(2520)] = 53204, + [SMALL_STATE(2521)] = 53226, + [SMALL_STATE(2522)] = 53242, + [SMALL_STATE(2523)] = 53264, + [SMALL_STATE(2524)] = 53290, + [SMALL_STATE(2525)] = 53316, + [SMALL_STATE(2526)] = 53338, + [SMALL_STATE(2527)] = 53360, + [SMALL_STATE(2528)] = 53382, + [SMALL_STATE(2529)] = 53404, + [SMALL_STATE(2530)] = 53426, + [SMALL_STATE(2531)] = 53448, + [SMALL_STATE(2532)] = 53470, + [SMALL_STATE(2533)] = 53496, + [SMALL_STATE(2534)] = 53522, + [SMALL_STATE(2535)] = 53548, + [SMALL_STATE(2536)] = 53574, + [SMALL_STATE(2537)] = 53596, + [SMALL_STATE(2538)] = 53622, + [SMALL_STATE(2539)] = 53638, + [SMALL_STATE(2540)] = 53663, + [SMALL_STATE(2541)] = 53686, + [SMALL_STATE(2542)] = 53709, + [SMALL_STATE(2543)] = 53732, + [SMALL_STATE(2544)] = 53755, + [SMALL_STATE(2545)] = 53769, + [SMALL_STATE(2546)] = 53783, + [SMALL_STATE(2547)] = 53797, + [SMALL_STATE(2548)] = 53811, + [SMALL_STATE(2549)] = 53825, + [SMALL_STATE(2550)] = 53839, + [SMALL_STATE(2551)] = 53853, + [SMALL_STATE(2552)] = 53867, + [SMALL_STATE(2553)] = 53881, + [SMALL_STATE(2554)] = 53895, + [SMALL_STATE(2555)] = 53917, + [SMALL_STATE(2556)] = 53931, + [SMALL_STATE(2557)] = 53945, + [SMALL_STATE(2558)] = 53959, + [SMALL_STATE(2559)] = 53973, + [SMALL_STATE(2560)] = 53987, + [SMALL_STATE(2561)] = 54001, + [SMALL_STATE(2562)] = 54015, + [SMALL_STATE(2563)] = 54029, + [SMALL_STATE(2564)] = 54043, + [SMALL_STATE(2565)] = 54057, + [SMALL_STATE(2566)] = 54071, + [SMALL_STATE(2567)] = 54085, + [SMALL_STATE(2568)] = 54105, + [SMALL_STATE(2569)] = 54119, + [SMALL_STATE(2570)] = 54133, + [SMALL_STATE(2571)] = 54147, + [SMALL_STATE(2572)] = 54161, + [SMALL_STATE(2573)] = 54175, + [SMALL_STATE(2574)] = 54189, + [SMALL_STATE(2575)] = 54203, + [SMALL_STATE(2576)] = 54217, + [SMALL_STATE(2577)] = 54231, + [SMALL_STATE(2578)] = 54245, + [SMALL_STATE(2579)] = 54259, + [SMALL_STATE(2580)] = 54273, + [SMALL_STATE(2581)] = 54287, + [SMALL_STATE(2582)] = 54301, + [SMALL_STATE(2583)] = 54315, + [SMALL_STATE(2584)] = 54329, + [SMALL_STATE(2585)] = 54343, + [SMALL_STATE(2586)] = 54357, + [SMALL_STATE(2587)] = 54371, + [SMALL_STATE(2588)] = 54385, + [SMALL_STATE(2589)] = 54399, + [SMALL_STATE(2590)] = 54413, + [SMALL_STATE(2591)] = 54427, + [SMALL_STATE(2592)] = 54441, + [SMALL_STATE(2593)] = 54455, + [SMALL_STATE(2594)] = 54469, + [SMALL_STATE(2595)] = 54483, + [SMALL_STATE(2596)] = 54497, + [SMALL_STATE(2597)] = 54511, + [SMALL_STATE(2598)] = 54530, + [SMALL_STATE(2599)] = 54549, + [SMALL_STATE(2600)] = 54568, + [SMALL_STATE(2601)] = 54587, + [SMALL_STATE(2602)] = 54606, + [SMALL_STATE(2603)] = 54625, + [SMALL_STATE(2604)] = 54644, + [SMALL_STATE(2605)] = 54663, + [SMALL_STATE(2606)] = 54682, + [SMALL_STATE(2607)] = 54701, + [SMALL_STATE(2608)] = 54720, + [SMALL_STATE(2609)] = 54739, + [SMALL_STATE(2610)] = 54758, + [SMALL_STATE(2611)] = 54777, + [SMALL_STATE(2612)] = 54796, + [SMALL_STATE(2613)] = 54815, + [SMALL_STATE(2614)] = 54834, + [SMALL_STATE(2615)] = 54853, + [SMALL_STATE(2616)] = 54872, + [SMALL_STATE(2617)] = 54891, + [SMALL_STATE(2618)] = 54910, + [SMALL_STATE(2619)] = 54929, + [SMALL_STATE(2620)] = 54948, + [SMALL_STATE(2621)] = 54967, + [SMALL_STATE(2622)] = 54986, + [SMALL_STATE(2623)] = 55005, + [SMALL_STATE(2624)] = 55024, + [SMALL_STATE(2625)] = 55043, + [SMALL_STATE(2626)] = 55062, + [SMALL_STATE(2627)] = 55081, + [SMALL_STATE(2628)] = 55100, + [SMALL_STATE(2629)] = 55119, + [SMALL_STATE(2630)] = 55138, + [SMALL_STATE(2631)] = 55157, + [SMALL_STATE(2632)] = 55176, + [SMALL_STATE(2633)] = 55195, + [SMALL_STATE(2634)] = 55214, + [SMALL_STATE(2635)] = 55233, + [SMALL_STATE(2636)] = 55252, + [SMALL_STATE(2637)] = 55271, + [SMALL_STATE(2638)] = 55290, + [SMALL_STATE(2639)] = 55309, + [SMALL_STATE(2640)] = 55328, + [SMALL_STATE(2641)] = 55347, + [SMALL_STATE(2642)] = 55366, + [SMALL_STATE(2643)] = 55385, + [SMALL_STATE(2644)] = 55404, + [SMALL_STATE(2645)] = 55423, + [SMALL_STATE(2646)] = 55442, + [SMALL_STATE(2647)] = 55461, + [SMALL_STATE(2648)] = 55480, + [SMALL_STATE(2649)] = 55499, + [SMALL_STATE(2650)] = 55518, + [SMALL_STATE(2651)] = 55537, + [SMALL_STATE(2652)] = 55556, + [SMALL_STATE(2653)] = 55575, + [SMALL_STATE(2654)] = 55594, + [SMALL_STATE(2655)] = 55613, + [SMALL_STATE(2656)] = 55632, + [SMALL_STATE(2657)] = 55651, + [SMALL_STATE(2658)] = 55670, + [SMALL_STATE(2659)] = 55689, + [SMALL_STATE(2660)] = 55708, + [SMALL_STATE(2661)] = 55727, + [SMALL_STATE(2662)] = 55746, + [SMALL_STATE(2663)] = 55765, + [SMALL_STATE(2664)] = 55784, + [SMALL_STATE(2665)] = 55803, + [SMALL_STATE(2666)] = 55822, + [SMALL_STATE(2667)] = 55841, + [SMALL_STATE(2668)] = 55860, + [SMALL_STATE(2669)] = 55879, + [SMALL_STATE(2670)] = 55898, + [SMALL_STATE(2671)] = 55917, + [SMALL_STATE(2672)] = 55936, + [SMALL_STATE(2673)] = 55955, + [SMALL_STATE(2674)] = 55974, + [SMALL_STATE(2675)] = 55993, + [SMALL_STATE(2676)] = 56012, + [SMALL_STATE(2677)] = 56031, + [SMALL_STATE(2678)] = 56050, + [SMALL_STATE(2679)] = 56069, + [SMALL_STATE(2680)] = 56082, + [SMALL_STATE(2681)] = 56101, + [SMALL_STATE(2682)] = 56120, + [SMALL_STATE(2683)] = 56139, + [SMALL_STATE(2684)] = 56158, + [SMALL_STATE(2685)] = 56177, + [SMALL_STATE(2686)] = 56196, + [SMALL_STATE(2687)] = 56215, + [SMALL_STATE(2688)] = 56234, + [SMALL_STATE(2689)] = 56253, + [SMALL_STATE(2690)] = 56272, + [SMALL_STATE(2691)] = 56291, + [SMALL_STATE(2692)] = 56310, + [SMALL_STATE(2693)] = 56329, + [SMALL_STATE(2694)] = 56348, + [SMALL_STATE(2695)] = 56367, + [SMALL_STATE(2696)] = 56386, + [SMALL_STATE(2697)] = 56405, + [SMALL_STATE(2698)] = 56424, + [SMALL_STATE(2699)] = 56443, + [SMALL_STATE(2700)] = 56462, + [SMALL_STATE(2701)] = 56481, + [SMALL_STATE(2702)] = 56500, + [SMALL_STATE(2703)] = 56519, + [SMALL_STATE(2704)] = 56538, + [SMALL_STATE(2705)] = 56557, + [SMALL_STATE(2706)] = 56576, + [SMALL_STATE(2707)] = 56595, + [SMALL_STATE(2708)] = 56614, + [SMALL_STATE(2709)] = 56633, + [SMALL_STATE(2710)] = 56652, + [SMALL_STATE(2711)] = 56671, + [SMALL_STATE(2712)] = 56690, + [SMALL_STATE(2713)] = 56709, + [SMALL_STATE(2714)] = 56728, + [SMALL_STATE(2715)] = 56747, + [SMALL_STATE(2716)] = 56766, + [SMALL_STATE(2717)] = 56785, + [SMALL_STATE(2718)] = 56804, + [SMALL_STATE(2719)] = 56823, + [SMALL_STATE(2720)] = 56842, + [SMALL_STATE(2721)] = 56861, + [SMALL_STATE(2722)] = 56880, + [SMALL_STATE(2723)] = 56899, + [SMALL_STATE(2724)] = 56918, + [SMALL_STATE(2725)] = 56937, + [SMALL_STATE(2726)] = 56956, + [SMALL_STATE(2727)] = 56975, + [SMALL_STATE(2728)] = 56994, + [SMALL_STATE(2729)] = 57013, + [SMALL_STATE(2730)] = 57032, + [SMALL_STATE(2731)] = 57051, + [SMALL_STATE(2732)] = 57070, + [SMALL_STATE(2733)] = 57089, + [SMALL_STATE(2734)] = 57108, + [SMALL_STATE(2735)] = 57127, + [SMALL_STATE(2736)] = 57146, + [SMALL_STATE(2737)] = 57165, + [SMALL_STATE(2738)] = 57184, + [SMALL_STATE(2739)] = 57203, + [SMALL_STATE(2740)] = 57222, + [SMALL_STATE(2741)] = 57241, + [SMALL_STATE(2742)] = 57260, + [SMALL_STATE(2743)] = 57279, + [SMALL_STATE(2744)] = 57298, + [SMALL_STATE(2745)] = 57317, + [SMALL_STATE(2746)] = 57336, + [SMALL_STATE(2747)] = 57355, + [SMALL_STATE(2748)] = 57374, + [SMALL_STATE(2749)] = 57393, + [SMALL_STATE(2750)] = 57412, + [SMALL_STATE(2751)] = 57431, + [SMALL_STATE(2752)] = 57450, + [SMALL_STATE(2753)] = 57469, + [SMALL_STATE(2754)] = 57488, + [SMALL_STATE(2755)] = 57507, + [SMALL_STATE(2756)] = 57526, + [SMALL_STATE(2757)] = 57545, + [SMALL_STATE(2758)] = 57564, + [SMALL_STATE(2759)] = 57583, + [SMALL_STATE(2760)] = 57602, + [SMALL_STATE(2761)] = 57621, + [SMALL_STATE(2762)] = 57640, + [SMALL_STATE(2763)] = 57659, + [SMALL_STATE(2764)] = 57678, + [SMALL_STATE(2765)] = 57697, + [SMALL_STATE(2766)] = 57716, + [SMALL_STATE(2767)] = 57735, + [SMALL_STATE(2768)] = 57754, + [SMALL_STATE(2769)] = 57773, + [SMALL_STATE(2770)] = 57792, + [SMALL_STATE(2771)] = 57811, + [SMALL_STATE(2772)] = 57830, + [SMALL_STATE(2773)] = 57849, + [SMALL_STATE(2774)] = 57868, + [SMALL_STATE(2775)] = 57887, + [SMALL_STATE(2776)] = 57906, + [SMALL_STATE(2777)] = 57925, + [SMALL_STATE(2778)] = 57944, + [SMALL_STATE(2779)] = 57963, + [SMALL_STATE(2780)] = 57982, + [SMALL_STATE(2781)] = 58001, + [SMALL_STATE(2782)] = 58020, + [SMALL_STATE(2783)] = 58039, + [SMALL_STATE(2784)] = 58058, + [SMALL_STATE(2785)] = 58077, + [SMALL_STATE(2786)] = 58093, + [SMALL_STATE(2787)] = 58109, + [SMALL_STATE(2788)] = 58125, + [SMALL_STATE(2789)] = 58141, + [SMALL_STATE(2790)] = 58155, + [SMALL_STATE(2791)] = 58171, + [SMALL_STATE(2792)] = 58187, + [SMALL_STATE(2793)] = 58203, + [SMALL_STATE(2794)] = 58219, + [SMALL_STATE(2795)] = 58235, + [SMALL_STATE(2796)] = 58251, + [SMALL_STATE(2797)] = 58267, + [SMALL_STATE(2798)] = 58283, + [SMALL_STATE(2799)] = 58299, + [SMALL_STATE(2800)] = 58315, + [SMALL_STATE(2801)] = 58331, + [SMALL_STATE(2802)] = 58347, + [SMALL_STATE(2803)] = 58363, + [SMALL_STATE(2804)] = 58379, + [SMALL_STATE(2805)] = 58395, + [SMALL_STATE(2806)] = 58411, + [SMALL_STATE(2807)] = 58427, + [SMALL_STATE(2808)] = 58443, + [SMALL_STATE(2809)] = 58459, + [SMALL_STATE(2810)] = 58475, + [SMALL_STATE(2811)] = 58491, + [SMALL_STATE(2812)] = 58507, + [SMALL_STATE(2813)] = 58523, + [SMALL_STATE(2814)] = 58539, + [SMALL_STATE(2815)] = 58555, + [SMALL_STATE(2816)] = 58571, + [SMALL_STATE(2817)] = 58587, + [SMALL_STATE(2818)] = 58603, + [SMALL_STATE(2819)] = 58619, + [SMALL_STATE(2820)] = 58635, + [SMALL_STATE(2821)] = 58651, + [SMALL_STATE(2822)] = 58667, + [SMALL_STATE(2823)] = 58683, + [SMALL_STATE(2824)] = 58699, + [SMALL_STATE(2825)] = 58715, + [SMALL_STATE(2826)] = 58731, + [SMALL_STATE(2827)] = 58747, + [SMALL_STATE(2828)] = 58763, + [SMALL_STATE(2829)] = 58779, + [SMALL_STATE(2830)] = 58795, + [SMALL_STATE(2831)] = 58811, + [SMALL_STATE(2832)] = 58827, + [SMALL_STATE(2833)] = 58843, + [SMALL_STATE(2834)] = 58859, + [SMALL_STATE(2835)] = 58875, + [SMALL_STATE(2836)] = 58891, + [SMALL_STATE(2837)] = 58907, + [SMALL_STATE(2838)] = 58923, + [SMALL_STATE(2839)] = 58939, + [SMALL_STATE(2840)] = 58955, + [SMALL_STATE(2841)] = 58971, + [SMALL_STATE(2842)] = 58985, + [SMALL_STATE(2843)] = 59001, + [SMALL_STATE(2844)] = 59017, + [SMALL_STATE(2845)] = 59033, + [SMALL_STATE(2846)] = 59049, + [SMALL_STATE(2847)] = 59065, + [SMALL_STATE(2848)] = 59081, + [SMALL_STATE(2849)] = 59097, + [SMALL_STATE(2850)] = 59113, + [SMALL_STATE(2851)] = 59129, + [SMALL_STATE(2852)] = 59145, + [SMALL_STATE(2853)] = 59161, + [SMALL_STATE(2854)] = 59177, + [SMALL_STATE(2855)] = 59193, + [SMALL_STATE(2856)] = 59207, + [SMALL_STATE(2857)] = 59223, + [SMALL_STATE(2858)] = 59239, + [SMALL_STATE(2859)] = 59253, + [SMALL_STATE(2860)] = 59269, + [SMALL_STATE(2861)] = 59285, + [SMALL_STATE(2862)] = 59301, + [SMALL_STATE(2863)] = 59317, + [SMALL_STATE(2864)] = 59333, + [SMALL_STATE(2865)] = 59349, + [SMALL_STATE(2866)] = 59365, + [SMALL_STATE(2867)] = 59381, + [SMALL_STATE(2868)] = 59397, + [SMALL_STATE(2869)] = 59413, + [SMALL_STATE(2870)] = 59429, + [SMALL_STATE(2871)] = 59445, + [SMALL_STATE(2872)] = 59461, + [SMALL_STATE(2873)] = 59477, + [SMALL_STATE(2874)] = 59493, + [SMALL_STATE(2875)] = 59509, + [SMALL_STATE(2876)] = 59525, + [SMALL_STATE(2877)] = 59541, + [SMALL_STATE(2878)] = 59555, + [SMALL_STATE(2879)] = 59571, + [SMALL_STATE(2880)] = 59585, + [SMALL_STATE(2881)] = 59601, + [SMALL_STATE(2882)] = 59617, + [SMALL_STATE(2883)] = 59633, + [SMALL_STATE(2884)] = 59649, + [SMALL_STATE(2885)] = 59665, + [SMALL_STATE(2886)] = 59681, + [SMALL_STATE(2887)] = 59697, + [SMALL_STATE(2888)] = 59713, + [SMALL_STATE(2889)] = 59729, + [SMALL_STATE(2890)] = 59745, + [SMALL_STATE(2891)] = 59761, + [SMALL_STATE(2892)] = 59777, + [SMALL_STATE(2893)] = 59793, + [SMALL_STATE(2894)] = 59809, + [SMALL_STATE(2895)] = 59825, + [SMALL_STATE(2896)] = 59841, + [SMALL_STATE(2897)] = 59857, + [SMALL_STATE(2898)] = 59873, + [SMALL_STATE(2899)] = 59889, + [SMALL_STATE(2900)] = 59905, + [SMALL_STATE(2901)] = 59921, + [SMALL_STATE(2902)] = 59937, + [SMALL_STATE(2903)] = 59953, + [SMALL_STATE(2904)] = 59969, + [SMALL_STATE(2905)] = 59985, + [SMALL_STATE(2906)] = 60001, + [SMALL_STATE(2907)] = 60017, + [SMALL_STATE(2908)] = 60033, + [SMALL_STATE(2909)] = 60049, + [SMALL_STATE(2910)] = 60065, + [SMALL_STATE(2911)] = 60081, + [SMALL_STATE(2912)] = 60097, + [SMALL_STATE(2913)] = 60113, + [SMALL_STATE(2914)] = 60129, + [SMALL_STATE(2915)] = 60145, + [SMALL_STATE(2916)] = 60161, + [SMALL_STATE(2917)] = 60177, + [SMALL_STATE(2918)] = 60193, + [SMALL_STATE(2919)] = 60209, + [SMALL_STATE(2920)] = 60225, + [SMALL_STATE(2921)] = 60241, + [SMALL_STATE(2922)] = 60257, + [SMALL_STATE(2923)] = 60273, + [SMALL_STATE(2924)] = 60289, + [SMALL_STATE(2925)] = 60305, + [SMALL_STATE(2926)] = 60321, + [SMALL_STATE(2927)] = 60335, + [SMALL_STATE(2928)] = 60349, + [SMALL_STATE(2929)] = 60365, + [SMALL_STATE(2930)] = 60381, + [SMALL_STATE(2931)] = 60397, + [SMALL_STATE(2932)] = 60413, + [SMALL_STATE(2933)] = 60429, + [SMALL_STATE(2934)] = 60445, + [SMALL_STATE(2935)] = 60461, + [SMALL_STATE(2936)] = 60475, + [SMALL_STATE(2937)] = 60489, + [SMALL_STATE(2938)] = 60505, + [SMALL_STATE(2939)] = 60521, + [SMALL_STATE(2940)] = 60535, + [SMALL_STATE(2941)] = 60549, + [SMALL_STATE(2942)] = 60565, + [SMALL_STATE(2943)] = 60581, + [SMALL_STATE(2944)] = 60597, + [SMALL_STATE(2945)] = 60613, + [SMALL_STATE(2946)] = 60629, + [SMALL_STATE(2947)] = 60645, + [SMALL_STATE(2948)] = 60661, + [SMALL_STATE(2949)] = 60677, + [SMALL_STATE(2950)] = 60693, + [SMALL_STATE(2951)] = 60709, + [SMALL_STATE(2952)] = 60719, + [SMALL_STATE(2953)] = 60735, + [SMALL_STATE(2954)] = 60751, + [SMALL_STATE(2955)] = 60767, + [SMALL_STATE(2956)] = 60783, + [SMALL_STATE(2957)] = 60799, + [SMALL_STATE(2958)] = 60815, + [SMALL_STATE(2959)] = 60831, + [SMALL_STATE(2960)] = 60847, + [SMALL_STATE(2961)] = 60863, + [SMALL_STATE(2962)] = 60879, + [SMALL_STATE(2963)] = 60895, + [SMALL_STATE(2964)] = 60911, + [SMALL_STATE(2965)] = 60927, + [SMALL_STATE(2966)] = 60943, + [SMALL_STATE(2967)] = 60959, + [SMALL_STATE(2968)] = 60975, + [SMALL_STATE(2969)] = 60991, + [SMALL_STATE(2970)] = 61007, + [SMALL_STATE(2971)] = 61023, + [SMALL_STATE(2972)] = 61039, + [SMALL_STATE(2973)] = 61049, + [SMALL_STATE(2974)] = 61065, + [SMALL_STATE(2975)] = 61081, + [SMALL_STATE(2976)] = 61097, + [SMALL_STATE(2977)] = 61113, + [SMALL_STATE(2978)] = 61129, + [SMALL_STATE(2979)] = 61145, + [SMALL_STATE(2980)] = 61155, + [SMALL_STATE(2981)] = 61171, + [SMALL_STATE(2982)] = 61187, + [SMALL_STATE(2983)] = 61203, + [SMALL_STATE(2984)] = 61219, + [SMALL_STATE(2985)] = 61235, + [SMALL_STATE(2986)] = 61251, + [SMALL_STATE(2987)] = 61267, + [SMALL_STATE(2988)] = 61283, + [SMALL_STATE(2989)] = 61299, + [SMALL_STATE(2990)] = 61315, + [SMALL_STATE(2991)] = 61331, + [SMALL_STATE(2992)] = 61347, + [SMALL_STATE(2993)] = 61361, + [SMALL_STATE(2994)] = 61373, + [SMALL_STATE(2995)] = 61389, + [SMALL_STATE(2996)] = 61405, + [SMALL_STATE(2997)] = 61421, + [SMALL_STATE(2998)] = 61435, + [SMALL_STATE(2999)] = 61451, + [SMALL_STATE(3000)] = 61467, + [SMALL_STATE(3001)] = 61477, + [SMALL_STATE(3002)] = 61491, + [SMALL_STATE(3003)] = 61507, + [SMALL_STATE(3004)] = 61523, + [SMALL_STATE(3005)] = 61537, + [SMALL_STATE(3006)] = 61553, + [SMALL_STATE(3007)] = 61569, + [SMALL_STATE(3008)] = 61585, + [SMALL_STATE(3009)] = 61601, + [SMALL_STATE(3010)] = 61617, + [SMALL_STATE(3011)] = 61633, + [SMALL_STATE(3012)] = 61649, + [SMALL_STATE(3013)] = 61665, + [SMALL_STATE(3014)] = 61681, + [SMALL_STATE(3015)] = 61697, + [SMALL_STATE(3016)] = 61713, + [SMALL_STATE(3017)] = 61729, + [SMALL_STATE(3018)] = 61745, + [SMALL_STATE(3019)] = 61761, + [SMALL_STATE(3020)] = 61777, + [SMALL_STATE(3021)] = 61793, + [SMALL_STATE(3022)] = 61809, + [SMALL_STATE(3023)] = 61825, + [SMALL_STATE(3024)] = 61841, + [SMALL_STATE(3025)] = 61857, + [SMALL_STATE(3026)] = 61873, + [SMALL_STATE(3027)] = 61889, + [SMALL_STATE(3028)] = 61905, + [SMALL_STATE(3029)] = 61921, + [SMALL_STATE(3030)] = 61937, + [SMALL_STATE(3031)] = 61953, + [SMALL_STATE(3032)] = 61969, + [SMALL_STATE(3033)] = 61985, + [SMALL_STATE(3034)] = 62001, + [SMALL_STATE(3035)] = 62017, + [SMALL_STATE(3036)] = 62033, + [SMALL_STATE(3037)] = 62049, + [SMALL_STATE(3038)] = 62065, + [SMALL_STATE(3039)] = 62081, + [SMALL_STATE(3040)] = 62097, + [SMALL_STATE(3041)] = 62113, + [SMALL_STATE(3042)] = 62129, + [SMALL_STATE(3043)] = 62145, + [SMALL_STATE(3044)] = 62161, + [SMALL_STATE(3045)] = 62177, + [SMALL_STATE(3046)] = 62193, + [SMALL_STATE(3047)] = 62209, + [SMALL_STATE(3048)] = 62225, + [SMALL_STATE(3049)] = 62241, + [SMALL_STATE(3050)] = 62257, + [SMALL_STATE(3051)] = 62273, + [SMALL_STATE(3052)] = 62289, + [SMALL_STATE(3053)] = 62305, + [SMALL_STATE(3054)] = 62321, + [SMALL_STATE(3055)] = 62337, + [SMALL_STATE(3056)] = 62351, + [SMALL_STATE(3057)] = 62367, + [SMALL_STATE(3058)] = 62383, + [SMALL_STATE(3059)] = 62397, + [SMALL_STATE(3060)] = 62411, + [SMALL_STATE(3061)] = 62427, + [SMALL_STATE(3062)] = 62443, + [SMALL_STATE(3063)] = 62457, + [SMALL_STATE(3064)] = 62471, + [SMALL_STATE(3065)] = 62485, + [SMALL_STATE(3066)] = 62499, + [SMALL_STATE(3067)] = 62515, + [SMALL_STATE(3068)] = 62531, + [SMALL_STATE(3069)] = 62545, + [SMALL_STATE(3070)] = 62559, + [SMALL_STATE(3071)] = 62573, + [SMALL_STATE(3072)] = 62589, + [SMALL_STATE(3073)] = 62603, + [SMALL_STATE(3074)] = 62619, + [SMALL_STATE(3075)] = 62633, + [SMALL_STATE(3076)] = 62649, + [SMALL_STATE(3077)] = 62663, + [SMALL_STATE(3078)] = 62679, + [SMALL_STATE(3079)] = 62695, + [SMALL_STATE(3080)] = 62711, + [SMALL_STATE(3081)] = 62727, + [SMALL_STATE(3082)] = 62743, + [SMALL_STATE(3083)] = 62759, + [SMALL_STATE(3084)] = 62773, + [SMALL_STATE(3085)] = 62789, + [SMALL_STATE(3086)] = 62805, + [SMALL_STATE(3087)] = 62821, + [SMALL_STATE(3088)] = 62837, + [SMALL_STATE(3089)] = 62853, + [SMALL_STATE(3090)] = 62869, + [SMALL_STATE(3091)] = 62885, + [SMALL_STATE(3092)] = 62901, + [SMALL_STATE(3093)] = 62917, + [SMALL_STATE(3094)] = 62933, + [SMALL_STATE(3095)] = 62949, + [SMALL_STATE(3096)] = 62963, + [SMALL_STATE(3097)] = 62979, + [SMALL_STATE(3098)] = 62993, + [SMALL_STATE(3099)] = 63007, + [SMALL_STATE(3100)] = 63021, + [SMALL_STATE(3101)] = 63035, + [SMALL_STATE(3102)] = 63049, + [SMALL_STATE(3103)] = 63063, + [SMALL_STATE(3104)] = 63077, + [SMALL_STATE(3105)] = 63091, + [SMALL_STATE(3106)] = 63105, + [SMALL_STATE(3107)] = 63121, + [SMALL_STATE(3108)] = 63137, + [SMALL_STATE(3109)] = 63153, + [SMALL_STATE(3110)] = 63169, + [SMALL_STATE(3111)] = 63185, + [SMALL_STATE(3112)] = 63201, + [SMALL_STATE(3113)] = 63217, + [SMALL_STATE(3114)] = 63233, + [SMALL_STATE(3115)] = 63249, + [SMALL_STATE(3116)] = 63265, + [SMALL_STATE(3117)] = 63281, + [SMALL_STATE(3118)] = 63297, + [SMALL_STATE(3119)] = 63313, + [SMALL_STATE(3120)] = 63329, + [SMALL_STATE(3121)] = 63345, + [SMALL_STATE(3122)] = 63361, + [SMALL_STATE(3123)] = 63371, + [SMALL_STATE(3124)] = 63387, + [SMALL_STATE(3125)] = 63403, + [SMALL_STATE(3126)] = 63419, + [SMALL_STATE(3127)] = 63435, + [SMALL_STATE(3128)] = 63451, + [SMALL_STATE(3129)] = 63467, + [SMALL_STATE(3130)] = 63483, + [SMALL_STATE(3131)] = 63499, + [SMALL_STATE(3132)] = 63515, + [SMALL_STATE(3133)] = 63528, + [SMALL_STATE(3134)] = 63541, + [SMALL_STATE(3135)] = 63554, + [SMALL_STATE(3136)] = 63567, + [SMALL_STATE(3137)] = 63580, + [SMALL_STATE(3138)] = 63593, + [SMALL_STATE(3139)] = 63606, + [SMALL_STATE(3140)] = 63619, + [SMALL_STATE(3141)] = 63628, + [SMALL_STATE(3142)] = 63641, + [SMALL_STATE(3143)] = 63650, + [SMALL_STATE(3144)] = 63663, + [SMALL_STATE(3145)] = 63676, + [SMALL_STATE(3146)] = 63689, + [SMALL_STATE(3147)] = 63702, + [SMALL_STATE(3148)] = 63715, + [SMALL_STATE(3149)] = 63724, + [SMALL_STATE(3150)] = 63737, + [SMALL_STATE(3151)] = 63750, + [SMALL_STATE(3152)] = 63763, + [SMALL_STATE(3153)] = 63776, + [SMALL_STATE(3154)] = 63789, + [SMALL_STATE(3155)] = 63802, + [SMALL_STATE(3156)] = 63815, + [SMALL_STATE(3157)] = 63828, + [SMALL_STATE(3158)] = 63841, + [SMALL_STATE(3159)] = 63854, + [SMALL_STATE(3160)] = 63863, + [SMALL_STATE(3161)] = 63876, + [SMALL_STATE(3162)] = 63889, + [SMALL_STATE(3163)] = 63902, + [SMALL_STATE(3164)] = 63915, + [SMALL_STATE(3165)] = 63928, + [SMALL_STATE(3166)] = 63941, + [SMALL_STATE(3167)] = 63954, + [SMALL_STATE(3168)] = 63967, + [SMALL_STATE(3169)] = 63980, + [SMALL_STATE(3170)] = 63993, + [SMALL_STATE(3171)] = 64006, + [SMALL_STATE(3172)] = 64019, + [SMALL_STATE(3173)] = 64032, + [SMALL_STATE(3174)] = 64045, + [SMALL_STATE(3175)] = 64058, + [SMALL_STATE(3176)] = 64071, + [SMALL_STATE(3177)] = 64084, + [SMALL_STATE(3178)] = 64097, + [SMALL_STATE(3179)] = 64110, + [SMALL_STATE(3180)] = 64123, + [SMALL_STATE(3181)] = 64136, + [SMALL_STATE(3182)] = 64149, + [SMALL_STATE(3183)] = 64162, + [SMALL_STATE(3184)] = 64175, + [SMALL_STATE(3185)] = 64184, + [SMALL_STATE(3186)] = 64197, + [SMALL_STATE(3187)] = 64206, + [SMALL_STATE(3188)] = 64219, + [SMALL_STATE(3189)] = 64232, + [SMALL_STATE(3190)] = 64245, + [SMALL_STATE(3191)] = 64258, + [SMALL_STATE(3192)] = 64271, + [SMALL_STATE(3193)] = 64284, + [SMALL_STATE(3194)] = 64297, + [SMALL_STATE(3195)] = 64310, + [SMALL_STATE(3196)] = 64323, + [SMALL_STATE(3197)] = 64336, + [SMALL_STATE(3198)] = 64349, + [SMALL_STATE(3199)] = 64362, + [SMALL_STATE(3200)] = 64371, + [SMALL_STATE(3201)] = 64384, + [SMALL_STATE(3202)] = 64397, + [SMALL_STATE(3203)] = 64410, + [SMALL_STATE(3204)] = 64423, + [SMALL_STATE(3205)] = 64436, + [SMALL_STATE(3206)] = 64449, + [SMALL_STATE(3207)] = 64462, + [SMALL_STATE(3208)] = 64475, + [SMALL_STATE(3209)] = 64488, + [SMALL_STATE(3210)] = 64501, + [SMALL_STATE(3211)] = 64514, + [SMALL_STATE(3212)] = 64527, + [SMALL_STATE(3213)] = 64540, + [SMALL_STATE(3214)] = 64553, + [SMALL_STATE(3215)] = 64566, + [SMALL_STATE(3216)] = 64579, + [SMALL_STATE(3217)] = 64592, + [SMALL_STATE(3218)] = 64605, + [SMALL_STATE(3219)] = 64618, + [SMALL_STATE(3220)] = 64631, + [SMALL_STATE(3221)] = 64644, + [SMALL_STATE(3222)] = 64657, + [SMALL_STATE(3223)] = 64670, + [SMALL_STATE(3224)] = 64683, + [SMALL_STATE(3225)] = 64696, + [SMALL_STATE(3226)] = 64709, + [SMALL_STATE(3227)] = 64722, + [SMALL_STATE(3228)] = 64735, + [SMALL_STATE(3229)] = 64746, + [SMALL_STATE(3230)] = 64759, + [SMALL_STATE(3231)] = 64772, + [SMALL_STATE(3232)] = 64785, + [SMALL_STATE(3233)] = 64798, + [SMALL_STATE(3234)] = 64807, + [SMALL_STATE(3235)] = 64820, + [SMALL_STATE(3236)] = 64833, + [SMALL_STATE(3237)] = 64846, + [SMALL_STATE(3238)] = 64859, + [SMALL_STATE(3239)] = 64872, + [SMALL_STATE(3240)] = 64885, + [SMALL_STATE(3241)] = 64898, + [SMALL_STATE(3242)] = 64911, + [SMALL_STATE(3243)] = 64924, + [SMALL_STATE(3244)] = 64937, + [SMALL_STATE(3245)] = 64950, + [SMALL_STATE(3246)] = 64963, + [SMALL_STATE(3247)] = 64976, + [SMALL_STATE(3248)] = 64989, + [SMALL_STATE(3249)] = 65002, + [SMALL_STATE(3250)] = 65015, + [SMALL_STATE(3251)] = 65028, + [SMALL_STATE(3252)] = 65041, + [SMALL_STATE(3253)] = 65054, + [SMALL_STATE(3254)] = 65067, + [SMALL_STATE(3255)] = 65080, + [SMALL_STATE(3256)] = 65093, + [SMALL_STATE(3257)] = 65106, + [SMALL_STATE(3258)] = 65119, + [SMALL_STATE(3259)] = 65132, + [SMALL_STATE(3260)] = 65145, + [SMALL_STATE(3261)] = 65158, + [SMALL_STATE(3262)] = 65171, + [SMALL_STATE(3263)] = 65184, + [SMALL_STATE(3264)] = 65197, + [SMALL_STATE(3265)] = 65206, + [SMALL_STATE(3266)] = 65219, + [SMALL_STATE(3267)] = 65232, + [SMALL_STATE(3268)] = 65245, + [SMALL_STATE(3269)] = 65254, + [SMALL_STATE(3270)] = 65267, + [SMALL_STATE(3271)] = 65280, + [SMALL_STATE(3272)] = 65293, + [SMALL_STATE(3273)] = 65306, + [SMALL_STATE(3274)] = 65319, + [SMALL_STATE(3275)] = 65332, + [SMALL_STATE(3276)] = 65345, + [SMALL_STATE(3277)] = 65358, + [SMALL_STATE(3278)] = 65371, + [SMALL_STATE(3279)] = 65384, + [SMALL_STATE(3280)] = 65393, + [SMALL_STATE(3281)] = 65406, + [SMALL_STATE(3282)] = 65419, + [SMALL_STATE(3283)] = 65432, + [SMALL_STATE(3284)] = 65445, + [SMALL_STATE(3285)] = 65458, + [SMALL_STATE(3286)] = 65471, + [SMALL_STATE(3287)] = 65484, + [SMALL_STATE(3288)] = 65497, + [SMALL_STATE(3289)] = 65510, + [SMALL_STATE(3290)] = 65523, + [SMALL_STATE(3291)] = 65532, + [SMALL_STATE(3292)] = 65543, + [SMALL_STATE(3293)] = 65556, + [SMALL_STATE(3294)] = 65569, + [SMALL_STATE(3295)] = 65582, + [SMALL_STATE(3296)] = 65595, + [SMALL_STATE(3297)] = 65608, + [SMALL_STATE(3298)] = 65621, + [SMALL_STATE(3299)] = 65634, + [SMALL_STATE(3300)] = 65643, + [SMALL_STATE(3301)] = 65656, + [SMALL_STATE(3302)] = 65669, + [SMALL_STATE(3303)] = 65682, + [SMALL_STATE(3304)] = 65695, + [SMALL_STATE(3305)] = 65708, + [SMALL_STATE(3306)] = 65721, + [SMALL_STATE(3307)] = 65734, + [SMALL_STATE(3308)] = 65747, + [SMALL_STATE(3309)] = 65760, + [SMALL_STATE(3310)] = 65773, + [SMALL_STATE(3311)] = 65786, + [SMALL_STATE(3312)] = 65799, + [SMALL_STATE(3313)] = 65812, + [SMALL_STATE(3314)] = 65825, + [SMALL_STATE(3315)] = 65838, + [SMALL_STATE(3316)] = 65851, + [SMALL_STATE(3317)] = 65864, + [SMALL_STATE(3318)] = 65877, + [SMALL_STATE(3319)] = 65890, + [SMALL_STATE(3320)] = 65903, + [SMALL_STATE(3321)] = 65912, + [SMALL_STATE(3322)] = 65925, + [SMALL_STATE(3323)] = 65938, + [SMALL_STATE(3324)] = 65951, + [SMALL_STATE(3325)] = 65964, + [SMALL_STATE(3326)] = 65977, + [SMALL_STATE(3327)] = 65990, + [SMALL_STATE(3328)] = 66003, + [SMALL_STATE(3329)] = 66016, + [SMALL_STATE(3330)] = 66029, + [SMALL_STATE(3331)] = 66042, + [SMALL_STATE(3332)] = 66055, + [SMALL_STATE(3333)] = 66068, + [SMALL_STATE(3334)] = 66081, + [SMALL_STATE(3335)] = 66094, + [SMALL_STATE(3336)] = 66107, + [SMALL_STATE(3337)] = 66120, + [SMALL_STATE(3338)] = 66130, + [SMALL_STATE(3339)] = 66140, + [SMALL_STATE(3340)] = 66150, + [SMALL_STATE(3341)] = 66158, + [SMALL_STATE(3342)] = 66168, + [SMALL_STATE(3343)] = 66178, + [SMALL_STATE(3344)] = 66188, + [SMALL_STATE(3345)] = 66198, + [SMALL_STATE(3346)] = 66206, + [SMALL_STATE(3347)] = 66216, + [SMALL_STATE(3348)] = 66226, + [SMALL_STATE(3349)] = 66236, + [SMALL_STATE(3350)] = 66246, + [SMALL_STATE(3351)] = 66256, + [SMALL_STATE(3352)] = 66266, + [SMALL_STATE(3353)] = 66276, + [SMALL_STATE(3354)] = 66284, + [SMALL_STATE(3355)] = 66294, + [SMALL_STATE(3356)] = 66304, + [SMALL_STATE(3357)] = 66314, + [SMALL_STATE(3358)] = 66322, + [SMALL_STATE(3359)] = 66332, + [SMALL_STATE(3360)] = 66340, + [SMALL_STATE(3361)] = 66350, + [SMALL_STATE(3362)] = 66360, + [SMALL_STATE(3363)] = 66370, + [SMALL_STATE(3364)] = 66380, + [SMALL_STATE(3365)] = 66388, + [SMALL_STATE(3366)] = 66398, + [SMALL_STATE(3367)] = 66408, + [SMALL_STATE(3368)] = 66418, + [SMALL_STATE(3369)] = 66428, + [SMALL_STATE(3370)] = 66438, + [SMALL_STATE(3371)] = 66448, + [SMALL_STATE(3372)] = 66456, + [SMALL_STATE(3373)] = 66466, + [SMALL_STATE(3374)] = 66476, + [SMALL_STATE(3375)] = 66484, + [SMALL_STATE(3376)] = 66494, + [SMALL_STATE(3377)] = 66504, + [SMALL_STATE(3378)] = 66514, + [SMALL_STATE(3379)] = 66522, + [SMALL_STATE(3380)] = 66532, + [SMALL_STATE(3381)] = 66540, + [SMALL_STATE(3382)] = 66550, + [SMALL_STATE(3383)] = 66560, + [SMALL_STATE(3384)] = 66570, + [SMALL_STATE(3385)] = 66578, + [SMALL_STATE(3386)] = 66588, + [SMALL_STATE(3387)] = 66598, + [SMALL_STATE(3388)] = 66606, + [SMALL_STATE(3389)] = 66616, + [SMALL_STATE(3390)] = 66624, + [SMALL_STATE(3391)] = 66634, + [SMALL_STATE(3392)] = 66642, + [SMALL_STATE(3393)] = 66652, + [SMALL_STATE(3394)] = 66659, + [SMALL_STATE(3395)] = 66666, + [SMALL_STATE(3396)] = 66673, + [SMALL_STATE(3397)] = 66680, + [SMALL_STATE(3398)] = 66687, + [SMALL_STATE(3399)] = 66694, + [SMALL_STATE(3400)] = 66701, + [SMALL_STATE(3401)] = 66708, + [SMALL_STATE(3402)] = 66715, + [SMALL_STATE(3403)] = 66722, + [SMALL_STATE(3404)] = 66729, + [SMALL_STATE(3405)] = 66736, + [SMALL_STATE(3406)] = 66743, + [SMALL_STATE(3407)] = 66750, + [SMALL_STATE(3408)] = 66757, + [SMALL_STATE(3409)] = 66764, + [SMALL_STATE(3410)] = 66771, + [SMALL_STATE(3411)] = 66778, + [SMALL_STATE(3412)] = 66785, + [SMALL_STATE(3413)] = 66792, + [SMALL_STATE(3414)] = 66799, + [SMALL_STATE(3415)] = 66806, + [SMALL_STATE(3416)] = 66813, + [SMALL_STATE(3417)] = 66820, + [SMALL_STATE(3418)] = 66827, + [SMALL_STATE(3419)] = 66834, + [SMALL_STATE(3420)] = 66841, + [SMALL_STATE(3421)] = 66848, + [SMALL_STATE(3422)] = 66855, + [SMALL_STATE(3423)] = 66862, + [SMALL_STATE(3424)] = 66869, + [SMALL_STATE(3425)] = 66876, + [SMALL_STATE(3426)] = 66883, + [SMALL_STATE(3427)] = 66890, + [SMALL_STATE(3428)] = 66897, + [SMALL_STATE(3429)] = 66904, + [SMALL_STATE(3430)] = 66911, + [SMALL_STATE(3431)] = 66918, + [SMALL_STATE(3432)] = 66925, + [SMALL_STATE(3433)] = 66932, + [SMALL_STATE(3434)] = 66939, + [SMALL_STATE(3435)] = 66946, + [SMALL_STATE(3436)] = 66953, + [SMALL_STATE(3437)] = 66960, + [SMALL_STATE(3438)] = 66967, + [SMALL_STATE(3439)] = 66974, + [SMALL_STATE(3440)] = 66981, + [SMALL_STATE(3441)] = 66988, + [SMALL_STATE(3442)] = 66995, + [SMALL_STATE(3443)] = 67002, + [SMALL_STATE(3444)] = 67009, + [SMALL_STATE(3445)] = 67016, + [SMALL_STATE(3446)] = 67023, + [SMALL_STATE(3447)] = 67030, + [SMALL_STATE(3448)] = 67037, + [SMALL_STATE(3449)] = 67044, + [SMALL_STATE(3450)] = 67051, + [SMALL_STATE(3451)] = 67058, + [SMALL_STATE(3452)] = 67065, + [SMALL_STATE(3453)] = 67072, + [SMALL_STATE(3454)] = 67079, + [SMALL_STATE(3455)] = 67086, + [SMALL_STATE(3456)] = 67093, + [SMALL_STATE(3457)] = 67100, + [SMALL_STATE(3458)] = 67107, + [SMALL_STATE(3459)] = 67114, + [SMALL_STATE(3460)] = 67121, + [SMALL_STATE(3461)] = 67128, + [SMALL_STATE(3462)] = 67135, + [SMALL_STATE(3463)] = 67142, + [SMALL_STATE(3464)] = 67149, + [SMALL_STATE(3465)] = 67156, + [SMALL_STATE(3466)] = 67163, + [SMALL_STATE(3467)] = 67170, + [SMALL_STATE(3468)] = 67177, + [SMALL_STATE(3469)] = 67184, + [SMALL_STATE(3470)] = 67191, + [SMALL_STATE(3471)] = 67198, + [SMALL_STATE(3472)] = 67205, + [SMALL_STATE(3473)] = 67212, + [SMALL_STATE(3474)] = 67219, + [SMALL_STATE(3475)] = 67226, + [SMALL_STATE(3476)] = 67233, + [SMALL_STATE(3477)] = 67240, + [SMALL_STATE(3478)] = 67247, + [SMALL_STATE(3479)] = 67254, + [SMALL_STATE(3480)] = 67261, + [SMALL_STATE(3481)] = 67268, + [SMALL_STATE(3482)] = 67275, + [SMALL_STATE(3483)] = 67282, + [SMALL_STATE(3484)] = 67289, + [SMALL_STATE(3485)] = 67296, + [SMALL_STATE(3486)] = 67303, + [SMALL_STATE(3487)] = 67310, + [SMALL_STATE(3488)] = 67317, + [SMALL_STATE(3489)] = 67324, + [SMALL_STATE(3490)] = 67331, + [SMALL_STATE(3491)] = 67338, + [SMALL_STATE(3492)] = 67345, + [SMALL_STATE(3493)] = 67352, + [SMALL_STATE(3494)] = 67359, + [SMALL_STATE(3495)] = 67366, + [SMALL_STATE(3496)] = 67373, + [SMALL_STATE(3497)] = 67380, + [SMALL_STATE(3498)] = 67387, + [SMALL_STATE(3499)] = 67394, + [SMALL_STATE(3500)] = 67401, + [SMALL_STATE(3501)] = 67408, + [SMALL_STATE(3502)] = 67415, + [SMALL_STATE(3503)] = 67422, + [SMALL_STATE(3504)] = 67429, + [SMALL_STATE(3505)] = 67436, + [SMALL_STATE(3506)] = 67443, + [SMALL_STATE(3507)] = 67450, + [SMALL_STATE(3508)] = 67457, + [SMALL_STATE(3509)] = 67464, + [SMALL_STATE(3510)] = 67471, + [SMALL_STATE(3511)] = 67478, + [SMALL_STATE(3512)] = 67485, + [SMALL_STATE(3513)] = 67492, + [SMALL_STATE(3514)] = 67499, + [SMALL_STATE(3515)] = 67506, + [SMALL_STATE(3516)] = 67513, + [SMALL_STATE(3517)] = 67520, + [SMALL_STATE(3518)] = 67527, + [SMALL_STATE(3519)] = 67534, + [SMALL_STATE(3520)] = 67541, + [SMALL_STATE(3521)] = 67548, + [SMALL_STATE(3522)] = 67555, + [SMALL_STATE(3523)] = 67562, + [SMALL_STATE(3524)] = 67569, + [SMALL_STATE(3525)] = 67576, + [SMALL_STATE(3526)] = 67583, + [SMALL_STATE(3527)] = 67590, + [SMALL_STATE(3528)] = 67597, + [SMALL_STATE(3529)] = 67604, + [SMALL_STATE(3530)] = 67611, + [SMALL_STATE(3531)] = 67618, + [SMALL_STATE(3532)] = 67625, + [SMALL_STATE(3533)] = 67632, + [SMALL_STATE(3534)] = 67639, + [SMALL_STATE(3535)] = 67646, + [SMALL_STATE(3536)] = 67653, + [SMALL_STATE(3537)] = 67660, + [SMALL_STATE(3538)] = 67667, + [SMALL_STATE(3539)] = 67674, + [SMALL_STATE(3540)] = 67681, + [SMALL_STATE(3541)] = 67688, + [SMALL_STATE(3542)] = 67695, + [SMALL_STATE(3543)] = 67702, + [SMALL_STATE(3544)] = 67709, + [SMALL_STATE(3545)] = 67716, + [SMALL_STATE(3546)] = 67723, + [SMALL_STATE(3547)] = 67730, + [SMALL_STATE(3548)] = 67737, + [SMALL_STATE(3549)] = 67744, + [SMALL_STATE(3550)] = 67751, + [SMALL_STATE(3551)] = 67758, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -157138,2865 +234331,3738 @@ 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(1339), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), - [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 92), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 92), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), - [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 92), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), - [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 92), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(448), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2208), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1404), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1374), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(728), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(434), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(448), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2208), - [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1404), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1374), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(728), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(434), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(448), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2208), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1404), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1374), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(728), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(434), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(448), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2208), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1404), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1374), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(728), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(434), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 60), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 60), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 60), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 60), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(549), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(679), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1017), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(31), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(889), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(865), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(887), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(459), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(50), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 71), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 71), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 79), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 79), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 41), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 41), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 19), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 19), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 20), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 20), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 70), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 70), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 195), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 195), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 66), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 66), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 99), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 99), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 101), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 101), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 163), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 163), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 196), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 196), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 134), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 134), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 102), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 102), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 103), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 103), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 129), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 129), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 162), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 162), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 130), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 130), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 164), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 164), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 131), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 131), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(448), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2208), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1404), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1374), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(728), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(434), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2326), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 165), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 165), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 79), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 79), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 17), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 17), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 43), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 43), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 44), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 44), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 132), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 132), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 72), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 72), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 133), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 133), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 73), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 73), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 96), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 96), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 58), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 58), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 26), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 26), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 159), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 159), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 11), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 11), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 138), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 138), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 90), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 90), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 59), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 59), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 91), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 91), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 123), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 123), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 124), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 124), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 159), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 159), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 125), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 125), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 160), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 160), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 9, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 9, 0, 0), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 126), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 126), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 12), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 12), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 14), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 14), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 108), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 108), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 109), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 109), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 167), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 167), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 38), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 38), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 49), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 49), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 59), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 59), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 90), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 90), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 123), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 123), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 91), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 91), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 124), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 124), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 59), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 59), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 137), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 137), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 125), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 125), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 77), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 77), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 78), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 78), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 11), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(764), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 61), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 61), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(701), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(983), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(708), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(958), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(958), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(516), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 52), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 52), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), - [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), - [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 88), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 88), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 299), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 299), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 300), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 300), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 32), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 32), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 301), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 301), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 89), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 89), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 302), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 302), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 303), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 303), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 34), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 34), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 304), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 304), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 314), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 314), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 315), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 315), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 316), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 316), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 317), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 317), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 318), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 318), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 110), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 110), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 319), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 319), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 45), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 45), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 45), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 45), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 333), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 333), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 334), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 334), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 142), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 142), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 335), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 335), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 143), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 143), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 144), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 144), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 336), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 336), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 145), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 145), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 146), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 146), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 337), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 337), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 338), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 338), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 147), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 147), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 148), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 148), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 149), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 149), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 344), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 344), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 345), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 345), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 346), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 346), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 347), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 347), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 348), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 348), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 349), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 349), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 150), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 150), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 151), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 151), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 153), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 153), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 50), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 50), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 50), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 50), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 51), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 51), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 86), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 86), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 89), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 89), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 359), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 359), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 87), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 87), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 360), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 360), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 361), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 361), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 362), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 362), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 363), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 363), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 364), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 364), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 35), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 35), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 365), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 365), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 366), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 366), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 367), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 367), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 368), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 368), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 369), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 369), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 373), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 373), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 374), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 374), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 375), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 375), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 376), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 376), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 377), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 377), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 378), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 378), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 169), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 169), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 170), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 170), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 265), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 265), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 264), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 264), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 266), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 266), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 171), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 171), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 267), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 267), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 172), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 172), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 115), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 115), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 173), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 173), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 174), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 174), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 175), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 175), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 176), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 176), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 268), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 268), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 177), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 177), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 179), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 179), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 185), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 185), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 186), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 186), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 187), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 187), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 188), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 188), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 189), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 189), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 57), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 57), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 118), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 118), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 119), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 119), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 111), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 111), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 197), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 197), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 198), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 198), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 34), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 34), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 199), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 199), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 200), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 200), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 201), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 201), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 202), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 202), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 203), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 203), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 214), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 214), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 215), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 215), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), - [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 218), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 218), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 219), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 219), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 279), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 279), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 228), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 228), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 229), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 229), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 230), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 230), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 231), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 231), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 232), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 232), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 280), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 280), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 281), - [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 281), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 120), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 120), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 282), - [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 282), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 234), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 234), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 121), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 121), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 283), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 283), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 284), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 284), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 57), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 57), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 89), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 89), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 80), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 80), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 81), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 81), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 82), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 82), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 15), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 15), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 21), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 21), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 21), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 21), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 58), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 58), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 29), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 29), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 29), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 29), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 30), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 30), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 245), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 245), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 246), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 246), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 247), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 247), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 248), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 248), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 249), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 249), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 250), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 250), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 263), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 263), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 112), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 112), - [3301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1374), - [3304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1374), - [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1374), - [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1374), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(230), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2101), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(231), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2102), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2131), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), - [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(247), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2106), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(234), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2103), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2054), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2172), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(237), - [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2104), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2124), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(239), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2105), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2098), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [3400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2083), - [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 168), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 6, 0, 168), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 139), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 139), - [3431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1364), - [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(293), - [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2150), - [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(284), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2146), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(285), - [3452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2147), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(288), - [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2148), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(291), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2149), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1379), - [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(301), - [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2151), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 157), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 157), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 158), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 158), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 122), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 122), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 191), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 191), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 194), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 194), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 193), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 193), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 227), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 227), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 156), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 156), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), - [3512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), SHIFT(701), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1323), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [3552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [3555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 27), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 27), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 39), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 39), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), SHIFT_REPEAT(1997), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(506), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2068), - [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(524), - [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2138), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 22), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 22), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_field_initializer, 1, 0, 28), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 15), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 15), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 7), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 7), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1857), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1376), - [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2072), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2019), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1375), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2127), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2021), - [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1362), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2137), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2006), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1353), - [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2130), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 15), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 15), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [4115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), - [4118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), - [4121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), SHIFT(1969), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 23), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), SHIFT(1822), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), SHIFT(1940), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 18), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), SHIFT(1937), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 74), - [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), SHIFT(1886), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 67), - [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), SHIFT(1983), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 97), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), SHIFT(1847), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 106), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), SHIFT(1900), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(213), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2159), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2176), - [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(210), - [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2158), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2186), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2171), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(206), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2155), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(207), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2157), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2057), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2062), - [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(215), - [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2160), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(223), - [4291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2161), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [4300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2099), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 46), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 46), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 62), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 62), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), - [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1002), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 166), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 166), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), - [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 68), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 6), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 6), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 16), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 16), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 25), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 25), - [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 10), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 10), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2174), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 95), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 105), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 105), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 161), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 161), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 107), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 135), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 135), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 8), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 8), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 136), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 136), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 40), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 40), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 127), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 127), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 10), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 10), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 128), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 128), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 28), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), - [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), - [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2071), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [4694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2076), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2080), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2081), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2082), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2084), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(254), - [4854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2108), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(255), - [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2109), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(258), - [4872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2110), - [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(261), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2111), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(263), - [4884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2112), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(271), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2113), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2144), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2162), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2165), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2173), - [5037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(308), - [5040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(2180), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2177), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2190), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(309), - [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(2181), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(312), - [5136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(2182), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 15), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(315), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(2183), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(317), - [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(2184), - [5184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(325), - [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(2185), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 93), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 39), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 226), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5852] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 262), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 94), - [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 11), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 29), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 192), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(224), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3337), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2015), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1924), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(928), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(223), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(224), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3337), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2015), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1924), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(928), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(223), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(224), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3337), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2015), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1924), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(928), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(223), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(224), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3337), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2015), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1924), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(928), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(223), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 92), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 92), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 60), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 60), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 92), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 92), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 60), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 60), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1754), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3379), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2013), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1922), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(930), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(620), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3448), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 58), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 58), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 61), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 61), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), + [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 11), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(969), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 26), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 26), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2104), + [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 35), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 35), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 36), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 36), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 164), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 164), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 12), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 12), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 14), + [639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 14), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 2, 0, 0), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 3, 0, 0), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3383), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3078), + [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(929), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3413), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 11), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 11), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 33), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 38), + [783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 38), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 49), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 49), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 0), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 4, 0, 0), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), + [807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 59), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 59), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 77), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 77), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 78), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 78), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 5, 0, 0), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 90), + [851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 90), + [853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 59), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 59), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 91), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 91), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 108), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 108), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 109), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 109), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 6, 0, 0), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 90), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 90), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 123), + [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 123), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 91), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 91), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 124), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 124), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 59), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 59), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 125), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 125), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 126), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 126), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 137), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 137), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 138), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 138), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 7, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 123), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 123), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 124), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 124), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 159), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 159), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 125), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 125), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 160), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 160), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 167), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 167), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 8, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 159), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 159), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 7, 0, 0), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 7, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_literal, 9, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_literal, 9, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 19), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 19), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 20), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 20), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 17), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 17), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 43), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 43), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 44), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 44), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 41), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 41), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 70), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 70), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 71), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 71), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 72), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 72), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 73), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 73), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 79), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 79), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 66), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 66), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 99), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 99), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 101), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 101), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 102), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 102), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 103), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 103), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 104), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 104), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 79), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 79), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 96), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 96), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 129), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 129), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 130), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 130), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 131), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 131), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 132), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 132), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 133), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 133), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 134), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 134), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 162), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 162), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 163), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 163), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 165), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 165), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 195), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 195), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 196), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 196), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(690), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(3358), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2006), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1919), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(927), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(620), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(690), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(3358), + [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2006), + [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1919), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(927), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(620), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(690), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(3358), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2006), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1919), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(927), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(620), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(690), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(3358), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2006), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1919), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(927), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(620), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [1742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1720), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3280), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(977), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 139), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 168), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2011), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1965), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(941), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2011), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1965), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(941), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2011), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1965), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(941), + [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(2011), + [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1965), + [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(941), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [1999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1965), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1965), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1965), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1965), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), + [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 260), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 260), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 280), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 280), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 237), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 237), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 281), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 281), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 308), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 308), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 274), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 274), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 275), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 275), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 295), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 295), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 282), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 282), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 238), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 238), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 283), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 283), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 57), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 57), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 89), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 89), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 276), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 276), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 277), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 277), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 272), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 272), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 309), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 309), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 212), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 212), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 84), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 84), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 112), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 112), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 254), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 254), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 213), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 213), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 255), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 255), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 256), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 256), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 257), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 257), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 114), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 114), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 310), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 310), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 278), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 278), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 311), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 311), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 32), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 32), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 284), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 284), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 239), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 239), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 240), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 240), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 285), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 285), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 286), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 286), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 231), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 231), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 241), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 241), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 222), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 222), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 242), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 242), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 312), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 312), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 232), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 232), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 313), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 313), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 314), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 314), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 315), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 315), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 316), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 316), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 317), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 317), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 318), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 318), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 243), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 243), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 115), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 115), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 319), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 319), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 320), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 320), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 321), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 321), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 322), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 322), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 323), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 323), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 258), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 258), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 324), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 324), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 34), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 34), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 244), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 244), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 325), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 325), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 86), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 86), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 259), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 259), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 287), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 287), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 288), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 288), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 289), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 289), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 21), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 21), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 326), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 326), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 327), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 327), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 328), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 328), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 329), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 329), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 330), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 330), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 331), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 331), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 228), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 228), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 290), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 290), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 87), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 87), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 332), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 332), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 333), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 333), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 334), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 334), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 335), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 335), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 234), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 234), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 336), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 336), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 245), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 245), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 29), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 29), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 246), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 246), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 88), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 88), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 296), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 296), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 291), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 291), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 117), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 117), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 118), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 118), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 29), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 29), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 337), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 337), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 229), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 229), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 338), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 338), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 110), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 110), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 247), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 247), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 45), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 45), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 45), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 45), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 292), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 292), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 293), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 293), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 339), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 339), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 340), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 340), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 341), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 341), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 50), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 50), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 50), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 50), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 51), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 51), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 52), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 52), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 342), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 342), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 141), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 141), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 30), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 30), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 142), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 142), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 143), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 143), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 343), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 343), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 344), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 344), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 144), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 144), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 145), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 145), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 146), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 146), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 147), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 147), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 148), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 148), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 149), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 149), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 345), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 345), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 150), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 150), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 151), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 151), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 152), + [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 152), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 153), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 153), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 297), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 297), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 298), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 298), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 299), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 299), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 300), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 300), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 294), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 294), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 301), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 301), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 119), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 119), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 302), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 302), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 223), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 223), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 346), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 346), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 35), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 35), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 154), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 154), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 279), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 279), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 303), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 303), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 273), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 273), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 304), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 304), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 347), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 347), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 348), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 348), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 155), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 155), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 349), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 349), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 57), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 57), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 350), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 350), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 89), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 89), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 351), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 351), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 352), + [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 352), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 235), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 235), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 261), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 261), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 58), + [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 58), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 214), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 214), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 263), + [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 263), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 120), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 120), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 264), + [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 264), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 353), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 353), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 354), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 354), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 355), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 355), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 356), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 356), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 357), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 357), + [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 271), + [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 271), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 358), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 358), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 306), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 306), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 359), + [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 359), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 360), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 360), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 361), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 361), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 56), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 56), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 57), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 57), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 265), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 265), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 362), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 362), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 363), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 363), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 364), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 364), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 365), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 365), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 224), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 224), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 366), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 366), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 34), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 34), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 367), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 367), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 169), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 169), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 368), + [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 368), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 369), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 369), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 266), + [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 266), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 170), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 170), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 267), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 267), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 268), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 268), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 370), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 370), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 371), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 371), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 372), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 372), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 373), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 373), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 374), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 374), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 375), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 375), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 376), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 376), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 269), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 269), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 248), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 248), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 171), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 171), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 172), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 172), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 249), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 249), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 173), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 173), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 174), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 174), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 175), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 175), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 176), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 176), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 177), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 177), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 179), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 179), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 180), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 180), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 181), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 181), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 182), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 182), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 183), + [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 183), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 185), + [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 185), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 186), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 186), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 187), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 187), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 188), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 188), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 189), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 189), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 190), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 190), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 250), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 250), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 307), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 307), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 270), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 270), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 251), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 251), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 377), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 377), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, 0, 378), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, 0, 378), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 215), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 215), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 216), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 216), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 217), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 217), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 89), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 89), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 252), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 252), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 225), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 225), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 253), + [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 253), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 236), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 236), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 211), + [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 211), + [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 111), + [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 111), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 230), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 230), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 121), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 121), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 80), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 80), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 81), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 81), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 82), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 82), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 218), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 218), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 15), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 15), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 197), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 197), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 198), + [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 198), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 199), + [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 199), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 21), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 21), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 200), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 200), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 201), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 201), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 202), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 202), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 203), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 203), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 206), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 206), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 207), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 207), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 208), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 208), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 209), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 209), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 210), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 210), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 219), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 219), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 220), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 220), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 221), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 221), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 305), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 305), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(401), + [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3242), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(409), + [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3245), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [4111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3183), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3202), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(417), + [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3246), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3149), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(404), + [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3243), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3239), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [4159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3181), + [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(400), + [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3241), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3155), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(407), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3244), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 1, 0, 0), REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1895), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1936), + [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1942), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(459), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3293), + [4217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(465), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3295), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(467), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3296), + [4229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1876), + [4232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(458), + [4235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3292), + [4238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(475), + [4241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3297), + [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(462), + [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3294), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1959), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 194), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 194), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 157), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 157), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 156), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 156), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 193), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 193), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 227), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 227), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 191), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 191), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 158), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 158), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 122), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 122), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), + [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_literal_repeat1, 3, 0, 0), SHIFT(897), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3350), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1907), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 1, 0, 27), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 1, 0, 27), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_field, 2, 0, 39), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 39), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [4703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(104), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3319), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), SHIFT_REPEAT(2992), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 65), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(128), + [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3171), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 94), + [4764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), + [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 11), + [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 7), + [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 7), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_field_initializer, 1, 0, 28), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), + [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 22), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 22), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 15), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 15), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2936), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1933), + [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3201), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3428), + [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3064), + [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1872), + [5125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3315), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3103), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1889), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3250), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3070), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1935), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3267), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2940), + [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1941), + [5164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3161), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3105), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1894), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3265), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2742), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3059), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1954), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3282), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3100), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1875), + [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3195), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 3, 0, 4), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2879), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1906), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3220), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 15), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 15), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2753), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2630), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3098), + [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1963), + [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(3175), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 11), SHIFT(1029), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), + [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), + [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), + [5461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), + [5467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 47), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 47), SHIFT(2933), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 23), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), SHIFT(2906), + [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), + [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 42), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 42), SHIFT(3129), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 18), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 18), SHIFT(3014), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), + [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 74), + [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), SHIFT(2964), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 106), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 106), SHIFT(2990), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), + [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 97), + [5519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 97), SHIFT(2971), + [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 67), + [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 67), SHIFT(2932), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3207), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3215), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(373), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3304), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3240), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(374), + [5588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3305), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3326), + [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(377), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3306), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3234), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3325), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(380), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3307), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(382), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3308), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(390), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3309), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3310), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 45), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 166), + [5666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 166), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 7), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 3, 0, 5), + [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 3, 0, 5), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 68), + [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 68), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), + [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), + [5700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 22), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 105), + [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 105), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 21), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 8), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 8), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 4, 0, 6), + [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 4, 0, 6), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 46), + [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 46), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 48), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 69), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 69), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 48), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 161), + [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 161), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [5742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3062), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), + [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 45), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 24), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 21), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 24), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_import_declaration, 3, 0, 3), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 128), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 128), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 7), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 95), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 95), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 25), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 25), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 10), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 10), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 10), + [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 10), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 62), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 62), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 98), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 98), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 15), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 40), + [5820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 40), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 107), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 107), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 135), + [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 135), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 136), + [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 136), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 15), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_declaration, 4, 0, 16), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_declaration, 4, 0, 16), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 22), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 127), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 127), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(425), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3251), + [5904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(426), + [5907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3252), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(429), + [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3253), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2679), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [5927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3247), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3257), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3312), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3165), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 28), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(432), + [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3254), + [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(434), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3255), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(3334), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1163), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3185), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(442), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3256), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [6344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3172), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [6355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3178), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2927), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3134), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3139), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3141), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3145), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3147), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3151), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [6699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 15), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(486), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 31), SHIFT(3329), + [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(487), + [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 53), SHIFT(3330), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(490), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), SHIFT(3331), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(493), + [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 83), SHIFT(3332), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(495), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 85), SHIFT(3333), + [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(503), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 113), SHIFT(3132), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 39), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 63), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 93), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 5, 0, 226), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 11), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 94), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 6, 0, 262), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [7651] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 3, 0, 29), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expand_match_capture, 4, 0, 192), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), }; #ifdef __cplusplus diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index 9e08044..3f96797 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -364,7 +364,7 @@ main func() void { (expression (sink)) (expression - (identifier)))))))))) + (identifier)))))))))) ================== Native tests @@ -509,3 +509,137 @@ value uint :: 255 (builtin_type)) (expression (integer)))) + +================== +Bitwise operations +================== + +ops func(value u8, count u8) u8 { + value &= ~u8(1) + value |= 2 + value xor= 3 + value <<= count + value >>= count + value <<|= count + if (value | 1) |captured| { return captured } + return (value & 15) xor (value << 1) | (value >> 1) | (value <<| 8) +} + +--- + +(source_file + (function_declaration + (identifier) + (parameter_list + (parameter + (identifier) + (type + (builtin_type))) + (parameter + (identifier) + (type + (builtin_type)))) + (type + (builtin_type)) + (block + (statement + (assignment_statement + (expression + (identifier)) + (expression + (unary_expression + (expression + (call_expression + (expression + (builtin_type)) + (argument_list + (expression + (integer))))))))) + (statement + (assignment_statement + (expression + (identifier)) + (expression + (integer)))) + (statement + (assignment_statement + (expression + (identifier)) + (expression + (integer)))) + (statement + (assignment_statement + (expression + (identifier)) + (expression + (identifier)))) + (statement + (assignment_statement + (expression + (identifier)) + (expression + (identifier)))) + (statement + (assignment_statement + (expression + (identifier)) + (expression + (identifier)))) + (statement + (if_statement + (expression + (parenthesized_expression + (expression + (binary_expression + (expression + (identifier)) + (expression + (integer)))))) + (capture_list + (identifier)) + (statement + (block + (statement + (return_statement + (expression + (identifier)))))))) + (statement + (return_statement + (expression + (binary_expression + (expression + (binary_expression + (expression + (binary_expression + (expression + (parenthesized_expression + (expression + (binary_expression + (expression + (identifier)) + (expression + (integer)))))) + (expression + (parenthesized_expression + (expression + (binary_expression + (expression + (identifier)) + (expression + (integer)))))))) + (expression + (parenthesized_expression + (expression + (binary_expression + (expression + (identifier)) + (expression + (integer)))))))) + (expression + (parenthesized_expression + (expression + (binary_expression + (expression + (identifier)) + (expression + (integer))))))))))))) diff --git a/tree-sitter-brolang/test/highlight/bitwise.bro b/tree-sitter-brolang/test/highlight/bitwise.bro new file mode 100644 index 0000000..a4606ed --- /dev/null +++ b/tree-sitter-brolang/test/highlight/bitwise.bro @@ -0,0 +1,14 @@ +value u8 = 1 + +value xor= 2 +# ^^^^ operator + +value <<|= 3 +# ^^^^ operator + +masked :: ~value & 15 +# ^ operator +# ^ operator + +shifted :: value <<| 8 +# ^^^ operator